From 9a33a3412fbe9e71f88758b7aaad98830d5783bb Mon Sep 17 00:00:00 2001 From: Stephan Seitz Date: Sun, 28 Nov 2021 13:03:47 +0100 Subject: [PATCH] Fix with_clause --- grammar.js | 8 +- src/grammar.json | 95 +- src/node-types.json | 92 +- src/parser.c | 165512 +++++++++++++++++++++------------------ test/corpus/basic.txt | 30 + 5 files changed, 89555 insertions(+), 76182 deletions(-) diff --git a/grammar.js b/grammar.js index 76ceb003b..b352afe22 100644 --- a/grammar.js +++ b/grammar.js @@ -114,12 +114,16 @@ function clSymbol(symbol) { return seq(optional(seq('cl', ':')), symbol) } +function optSeq(...args) { + return optional(seq(...args)) +} + module.exports = grammar(clojure, { name: 'commonlisp', extras: ($, original) => [...original, $.block_comment], - conflicts: ($, original) => [...original, [$.with_clause], [$.for_clause], [$.accumulation_clause], [$.loop_macro, $.defun_keyword, $.package_lit]], + conflicts: ($, original) => [...original, [$.with_clause, $.package_lit], [$.with_clause], [$.for_clause], [$.accumulation_clause], [$.loop_macro, $.defun_keyword, $.package_lit]], rules: { block_comment: _ => token(seq('#|', repeat(choice(/[^|]/, /\|[^#]/)), '|#')), @@ -226,7 +230,7 @@ module.exports = grammar(clojure, { for_clause: $ => choice(seq(choice(clSymbol('for'), clSymbol('and'), clSymbol('as')), repeat($._gap), field('variable', $._form), optional(field('type', seq(repeat($._gap), $._form))), repeat1($._for_part)), clSymbol('and')), - with_clause: $ => seq(clSymbol('with'), repeat($._gap), $._form, optional(field('type', repeat($._gap), $._form)), repeat($._gap), optional(clSymbol("=")), repeat($._gap), optional($._form)), + with_clause: $ => seq(clSymbol('with'), repeat($._gap), choice($._form, seq($._form, repeat($._gap), field('type', $._form))), repeat($._gap), optSeq(clSymbol("="), repeat($._gap)), optSeq($._form, repeat($._gap))), do_clause: $ => prec.left(seq(clSymbol('do'), repeat1(prec.left(seq(repeat($._gap), $._form, repeat($._gap)))))), while_clause: $ => prec.left(seq(choice(clSymbol('while'), clSymbol('until')), repeat($._gap), $._form)), repeat_clause: $ => prec.left(seq(clSymbol('repeat'), repeat($._gap), $._form)), diff --git a/src/grammar.json b/src/grammar.json index fffe035b0..cedce8b02 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2759,26 +2759,36 @@ "name": "_gap" } }, - { - "type": "SYMBOL", - "name": "_form" - }, { "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "type", - "content": { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_gap" - } - } + "type": "SYMBOL", + "name": "_form" }, { - "type": "BLANK" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_form" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_gap" + } + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_form" + } + } + ] } ] }, @@ -2796,29 +2806,41 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "cl" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "STRING", + "value": ":" + } + ] }, { - "type": "STRING", - "value": ":" + "type": "BLANK" } ] }, { - "type": "BLANK" + "type": "STRING", + "value": "=" } ] }, { - "type": "STRING", - "value": "=" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_gap" + } } ] }, @@ -2827,19 +2849,24 @@ } ] }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_gap" - } - }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_form" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_form" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_gap" + } + } + ] }, { "type": "BLANK" @@ -4193,6 +4220,10 @@ } ], "conflicts": [ + [ + "with_clause", + "package_lit" + ], [ "with_clause" ], diff --git a/src/node-types.json b/src/node-types.json index b2c5f901e..5b1afbe71 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -4299,11 +4299,99 @@ "required": false, "types": [ { - "type": "comment", + "type": "#", + "named": false + }, + { + "type": ".", + "named": false + }, + { + "type": "char_lit", "named": true }, { - "type": "dis_expr", + "type": "complex_num_lit", + "named": true + }, + { + "type": "fancy_literal", + "named": true + }, + { + "type": "include_reader_macro", + "named": true + }, + { + "type": "kwd_lit", + "named": true + }, + { + "type": "list_lit", + "named": true + }, + { + "type": "nil_lit", + "named": true + }, + { + "type": "num_lit", + "named": true + }, + { + "type": "package_lit", + "named": true + }, + { + "type": "path_lit", + "named": true + }, + { + "type": "quoting_lit", + "named": true + }, + { + "type": "read_cond_lit", + "named": true + }, + { + "type": "self_referential_reader_macro", + "named": true + }, + { + "type": "set_lit", + "named": true + }, + { + "type": "splicing_read_cond_lit", + "named": true + }, + { + "type": "str_lit", + "named": true + }, + { + "type": "sym_lit", + "named": true + }, + { + "type": "syn_quoting_lit", + "named": true + }, + { + "type": "unquote_splicing_lit", + "named": true + }, + { + "type": "unquoting_lit", + "named": true + }, + { + "type": "var_quoting_lit", + "named": true + }, + { + "type": "vec_lit", "named": true } ] diff --git a/src/parser.c b/src/parser.c index b44ba3383..2d6fa8cd4 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 3397 -#define LARGE_STATE_COUNT 208 +#define STATE_COUNT 3638 +#define LARGE_STATE_COUNT 264 #define SYMBOL_COUNT 183 #define ALIAS_COUNT 0 #define TOKEN_COUNT 117 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 20 -#define MAX_ALIAS_SEQUENCE_LENGTH 12 -#define PRODUCTION_ID_COUNT 149 +#define MAX_ALIAS_SEQUENCE_LENGTH 14 +#define PRODUCTION_ID_COUNT 177 enum { sym__ws = 1, @@ -1414,102 +1414,130 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [50] = {.index = 136, .length = 2}, [51] = {.index = 138, .length = 3}, [52] = {.index = 141, .length = 2}, - [53] = {.index = 143, .length = 2}, - [54] = {.index = 145, .length = 1}, - [55] = {.index = 146, .length = 4}, - [56] = {.index = 150, .length = 5}, - [57] = {.index = 155, .length = 4}, - [58] = {.index = 159, .length = 4}, - [59] = {.index = 163, .length = 5}, - [60] = {.index = 168, .length = 3}, - [61] = {.index = 171, .length = 7}, - [62] = {.index = 178, .length = 7}, - [63] = {.index = 185, .length = 2}, - [64] = {.index = 187, .length = 1}, - [65] = {.index = 188, .length = 5}, - [66] = {.index = 193, .length = 3}, - [67] = {.index = 196, .length = 2}, - [68] = {.index = 198, .length = 3}, - [69] = {.index = 201, .length = 2}, - [70] = {.index = 203, .length = 2}, - [71] = {.index = 205, .length = 4}, - [72] = {.index = 209, .length = 5}, - [73] = {.index = 214, .length = 6}, - [74] = {.index = 220, .length = 5}, - [75] = {.index = 225, .length = 4}, - [76] = {.index = 229, .length = 3}, - [77] = {.index = 232, .length = 3}, - [78] = {.index = 235, .length = 7}, - [79] = {.index = 242, .length = 5}, - [80] = {.index = 247, .length = 3}, - [81] = {.index = 250, .length = 2}, - [82] = {.index = 252, .length = 2}, - [83] = {.index = 254, .length = 1}, - [84] = {.index = 255, .length = 6}, - [85] = {.index = 261, .length = 5}, - [86] = {.index = 266, .length = 2}, - [87] = {.index = 268, .length = 3}, - [88] = {.index = 271, .length = 2}, - [89] = {.index = 273, .length = 3}, - [90] = {.index = 276, .length = 2}, - [91] = {.index = 278, .length = 6}, - [92] = {.index = 284, .length = 5}, - [93] = {.index = 289, .length = 6}, - [94] = {.index = 295, .length = 3}, - [95] = {.index = 298, .length = 3}, - [96] = {.index = 301, .length = 5}, - [97] = {.index = 306, .length = 5}, - [98] = {.index = 311, .length = 5}, - [99] = {.index = 316, .length = 3}, - [100] = {.index = 319, .length = 2}, - [101] = {.index = 321, .length = 3}, - [102] = {.index = 324, .length = 2}, - [103] = {.index = 326, .length = 2}, - [104] = {.index = 328, .length = 6}, - [105] = {.index = 334, .length = 2}, - [106] = {.index = 336, .length = 3}, - [107] = {.index = 339, .length = 2}, - [108] = {.index = 341, .length = 3}, - [109] = {.index = 344, .length = 6}, - [110] = {.index = 350, .length = 3}, - [111] = {.index = 353, .length = 5}, - [112] = {.index = 358, .length = 5}, - [113] = {.index = 363, .length = 6}, - [114] = {.index = 369, .length = 5}, - [115] = {.index = 374, .length = 2}, - [116] = {.index = 376, .length = 3}, - [117] = {.index = 379, .length = 2}, - [118] = {.index = 381, .length = 3}, - [119] = {.index = 384, .length = 2}, - [120] = {.index = 386, .length = 3}, - [121] = {.index = 389, .length = 2}, - [122] = {.index = 391, .length = 3}, - [123] = {.index = 394, .length = 5}, - [124] = {.index = 399, .length = 6}, - [125] = {.index = 405, .length = 2}, - [126] = {.index = 407, .length = 3}, - [127] = {.index = 410, .length = 2}, - [128] = {.index = 412, .length = 3}, - [129] = {.index = 415, .length = 2}, - [130] = {.index = 417, .length = 3}, - [131] = {.index = 420, .length = 2}, - [132] = {.index = 422, .length = 3}, - [133] = {.index = 425, .length = 2}, - [134] = {.index = 427, .length = 3}, - [135] = {.index = 430, .length = 2}, - [136] = {.index = 432, .length = 3}, - [137] = {.index = 435, .length = 3}, - [138] = {.index = 438, .length = 2}, - [139] = {.index = 440, .length = 3}, - [140] = {.index = 443, .length = 2}, - [141] = {.index = 445, .length = 3}, - [142] = {.index = 448, .length = 2}, - [143] = {.index = 450, .length = 3}, - [144] = {.index = 453, .length = 3}, - [145] = {.index = 456, .length = 3}, - [146] = {.index = 459, .length = 2}, - [147] = {.index = 461, .length = 3}, - [148] = {.index = 464, .length = 3}, + [53] = {.index = 143, .length = 3}, + [54] = {.index = 146, .length = 1}, + [55] = {.index = 147, .length = 4}, + [56] = {.index = 151, .length = 5}, + [57] = {.index = 156, .length = 4}, + [58] = {.index = 160, .length = 4}, + [59] = {.index = 164, .length = 5}, + [60] = {.index = 169, .length = 3}, + [61] = {.index = 172, .length = 7}, + [62] = {.index = 179, .length = 7}, + [63] = {.index = 186, .length = 2}, + [64] = {.index = 188, .length = 1}, + [65] = {.index = 189, .length = 5}, + [66] = {.index = 194, .length = 3}, + [67] = {.index = 197, .length = 2}, + [68] = {.index = 199, .length = 4}, + [69] = {.index = 203, .length = 3}, + [70] = {.index = 206, .length = 2}, + [71] = {.index = 208, .length = 3}, + [72] = {.index = 211, .length = 4}, + [73] = {.index = 215, .length = 5}, + [74] = {.index = 220, .length = 6}, + [75] = {.index = 226, .length = 5}, + [76] = {.index = 231, .length = 4}, + [77] = {.index = 235, .length = 3}, + [78] = {.index = 238, .length = 3}, + [79] = {.index = 241, .length = 7}, + [80] = {.index = 248, .length = 5}, + [81] = {.index = 253, .length = 3}, + [82] = {.index = 256, .length = 2}, + [83] = {.index = 258, .length = 3}, + [84] = {.index = 261, .length = 1}, + [85] = {.index = 262, .length = 6}, + [86] = {.index = 268, .length = 5}, + [87] = {.index = 273, .length = 2}, + [88] = {.index = 275, .length = 4}, + [89] = {.index = 279, .length = 4}, + [90] = {.index = 283, .length = 2}, + [91] = {.index = 285, .length = 4}, + [92] = {.index = 289, .length = 3}, + [93] = {.index = 292, .length = 2}, + [94] = {.index = 294, .length = 6}, + [95] = {.index = 300, .length = 5}, + [96] = {.index = 305, .length = 6}, + [97] = {.index = 311, .length = 3}, + [98] = {.index = 314, .length = 3}, + [99] = {.index = 317, .length = 5}, + [100] = {.index = 322, .length = 5}, + [101] = {.index = 327, .length = 5}, + [102] = {.index = 332, .length = 3}, + [103] = {.index = 335, .length = 2}, + [104] = {.index = 337, .length = 4}, + [105] = {.index = 341, .length = 3}, + [106] = {.index = 344, .length = 2}, + [107] = {.index = 346, .length = 3}, + [108] = {.index = 349, .length = 6}, + [109] = {.index = 355, .length = 2}, + [110] = {.index = 357, .length = 4}, + [111] = {.index = 361, .length = 4}, + [112] = {.index = 365, .length = 2}, + [113] = {.index = 367, .length = 4}, + [114] = {.index = 371, .length = 4}, + [115] = {.index = 375, .length = 6}, + [116] = {.index = 381, .length = 3}, + [117] = {.index = 384, .length = 5}, + [118] = {.index = 389, .length = 5}, + [119] = {.index = 394, .length = 6}, + [120] = {.index = 400, .length = 5}, + [121] = {.index = 405, .length = 2}, + [122] = {.index = 407, .length = 4}, + [123] = {.index = 411, .length = 4}, + [124] = {.index = 415, .length = 2}, + [125] = {.index = 417, .length = 4}, + [126] = {.index = 421, .length = 3}, + [127] = {.index = 424, .length = 2}, + [128] = {.index = 426, .length = 4}, + [129] = {.index = 430, .length = 4}, + [130] = {.index = 434, .length = 2}, + [131] = {.index = 436, .length = 4}, + [132] = {.index = 440, .length = 4}, + [133] = {.index = 444, .length = 5}, + [134] = {.index = 449, .length = 6}, + [135] = {.index = 455, .length = 2}, + [136] = {.index = 457, .length = 4}, + [137] = {.index = 461, .length = 4}, + [138] = {.index = 465, .length = 2}, + [139] = {.index = 467, .length = 4}, + [140] = {.index = 471, .length = 4}, + [141] = {.index = 475, .length = 4}, + [142] = {.index = 479, .length = 2}, + [143] = {.index = 481, .length = 4}, + [144] = {.index = 485, .length = 2}, + [145] = {.index = 487, .length = 4}, + [146] = {.index = 491, .length = 4}, + [147] = {.index = 495, .length = 2}, + [148] = {.index = 497, .length = 4}, + [149] = {.index = 501, .length = 4}, + [150] = {.index = 505, .length = 2}, + [151] = {.index = 507, .length = 4}, + [152] = {.index = 511, .length = 4}, + [153] = {.index = 515, .length = 4}, + [154] = {.index = 519, .length = 4}, + [155] = {.index = 523, .length = 4}, + [156] = {.index = 527, .length = 2}, + [157] = {.index = 529, .length = 4}, + [158] = {.index = 533, .length = 4}, + [159] = {.index = 537, .length = 2}, + [160] = {.index = 539, .length = 4}, + [161] = {.index = 543, .length = 2}, + [162] = {.index = 545, .length = 4}, + [163] = {.index = 549, .length = 4}, + [164] = {.index = 553, .length = 4}, + [165] = {.index = 557, .length = 4}, + [166] = {.index = 561, .length = 4}, + [167] = {.index = 565, .length = 4}, + [168] = {.index = 569, .length = 4}, + [169] = {.index = 573, .length = 4}, + [170] = {.index = 577, .length = 2}, + [171] = {.index = 579, .length = 4}, + [172] = {.index = 583, .length = 4}, + [173] = {.index = 587, .length = 4}, + [174] = {.index = 591, .length = 4}, + [175] = {.index = 595, .length = 4}, + [176] = {.index = 599, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1704,41 +1732,42 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_open, 2, .inherited = true}, [143] = {field_open, 1, .inherited = true}, - {field_type, 2}, - [145] = {field_open, 2, .inherited = true}, + {field_type, 2}, [146] = + {field_open, 2, .inherited = true}, + [147] = {field_close, 4}, {field_open, 0}, {field_open, 3, .inherited = true}, {field_value, 3, .inherited = true}, - [150] = + [151] = {field_function_name, 1}, {field_keyword, 0}, {field_lambda_list, 3}, {field_open, 1, .inherited = true}, {field_specifier, 2}, - [155] = + [156] = {field_function_name, 1}, {field_keyword, 0}, {field_lambda_list, 3}, {field_open, 1, .inherited = true}, - [159] = + [160] = {field_function_name, 2}, {field_keyword, 0}, {field_lambda_list, 3}, {field_open, 2, .inherited = true}, - [163] = + [164] = {field_condition, 2}, {field_marker, 0}, {field_open, 2, .inherited = true}, {field_open, 4, .inherited = true}, {field_target, 4}, - [168] = + [169] = {field_imaginary, 3}, {field_marker, 0}, {field_real, 2}, - [171] = + [172] = {field_condition, 2}, {field_marker, 1}, {field_meta, 0, .inherited = true}, @@ -1746,7 +1775,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_open, 2, .inherited = true}, {field_open, 4, .inherited = true}, {field_target, 4}, - [178] = + [179] = {field_condition, 3}, {field_marker, 1}, {field_meta, 0, .inherited = true}, @@ -1754,72 +1783,78 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, {field_target, 4}, - [185] = + [186] = {field_close, 5}, {field_open, 0}, - [187] = - {field_open, 3, .inherited = true}, [188] = + {field_open, 3, .inherited = true}, + [189] = {field_open, 1, .inherited = true}, {field_open, 2, .inherited = true}, {field_open, 3, .inherited = true}, {field_type, 2}, {field_variable, 1}, - [193] = + [194] = {field_open, 2, .inherited = true}, {field_open, 3, .inherited = true}, {field_variable, 2}, - [196] = + [197] = {field_open, 1, .inherited = true}, {field_open, 3, .inherited = true}, - [198] = + [199] = {field_open, 1, .inherited = true}, + {field_open, 2, .inherited = true}, {field_open, 3, .inherited = true}, {field_type, 2}, - [201] = + [203] = + {field_open, 1, .inherited = true}, + {field_open, 3, .inherited = true}, + {field_type, 3}, + [206] = {field_open, 2, .inherited = true}, {field_open, 3, .inherited = true}, - [203] = + [208] = {field_open, 2, .inherited = true}, + {field_open, 3, .inherited = true}, {field_type, 3}, - [205] = + [211] = {field_close, 5}, {field_open, 0}, {field_open, 4, .inherited = true}, {field_value, 4, .inherited = true}, - [209] = + [215] = {field_function_name, 1}, {field_keyword, 0}, {field_lambda_list, 4}, {field_open, 1, .inherited = true}, {field_specifier, 2}, - [214] = + [220] = {field_function_name, 1}, {field_keyword, 0}, {field_lambda_list, 4}, {field_open, 1, .inherited = true}, {field_specifier, 2}, {field_specifier, 3}, - [220] = + [226] = {field_function_name, 2}, {field_keyword, 0}, {field_lambda_list, 4}, {field_open, 2, .inherited = true}, {field_specifier, 3}, - [225] = + [231] = {field_function_name, 2}, {field_keyword, 0}, {field_lambda_list, 4}, {field_open, 2, .inherited = true}, - [229] = + [235] = {field_imaginary, 4}, {field_marker, 0}, {field_real, 2}, - [232] = + [238] = {field_imaginary, 4}, {field_marker, 0}, {field_real, 3}, - [235] = + [241] = {field_condition, 3}, {field_marker, 1}, {field_meta, 0, .inherited = true}, @@ -1827,301 +1862,458 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_open, 3, .inherited = true}, {field_open, 5, .inherited = true}, {field_target, 5}, - [242] = + [248] = {field_imaginary, 4}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_real, 3}, - [247] = + [253] = {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, {field_variable, 3}, - [250] = + [256] = {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, - [252] = + [258] = {field_open, 3, .inherited = true}, + {field_open, 4, .inherited = true}, {field_type, 4}, - [254] = + [261] = {field_open, 4, .inherited = true}, - [255] = + [262] = {field_open, 1, .inherited = true}, {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, {field_type, 2}, {field_type, 3}, {field_variable, 1}, - [261] = + [268] = {field_open, 2, .inherited = true}, {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, {field_type, 3}, {field_variable, 2}, - [266] = + [273] = {field_open, 1, .inherited = true}, {field_open, 4, .inherited = true}, - [268] = + [275] = {field_open, 1, .inherited = true}, + {field_open, 2, .inherited = true}, {field_open, 4, .inherited = true}, {field_type, 2}, - [271] = + [279] = + {field_open, 1, .inherited = true}, + {field_open, 3, .inherited = true}, + {field_open, 4, .inherited = true}, + {field_type, 3}, + [283] = {field_open, 2, .inherited = true}, {field_open, 4, .inherited = true}, - [273] = + [285] = {field_open, 2, .inherited = true}, + {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, {field_type, 3}, - [276] = + [289] = + {field_open, 2, .inherited = true}, + {field_open, 4, .inherited = true}, + {field_type, 4}, + [292] = {field_close, 6}, {field_open, 0}, - [278] = + [294] = {field_function_name, 1}, {field_keyword, 0}, {field_lambda_list, 5}, {field_open, 1, .inherited = true}, {field_specifier, 2}, {field_specifier, 3}, - [284] = + [300] = {field_function_name, 2}, {field_keyword, 0}, {field_lambda_list, 5}, {field_open, 2, .inherited = true}, {field_specifier, 3}, - [289] = + [305] = {field_function_name, 2}, {field_keyword, 0}, {field_lambda_list, 5}, {field_open, 2, .inherited = true}, {field_specifier, 3}, {field_specifier, 4}, - [295] = + [311] = {field_imaginary, 5}, {field_marker, 0}, {field_real, 3}, - [298] = + [314] = {field_imaginary, 5}, {field_marker, 0}, {field_real, 4}, - [301] = + [317] = {field_imaginary, 5}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_real, 3}, - [306] = + [322] = {field_imaginary, 5}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_real, 4}, - [311] = + [327] = {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, {field_open, 5, .inherited = true}, {field_type, 4}, {field_variable, 3}, - [316] = + [332] = {field_open, 4, .inherited = true}, {field_open, 5, .inherited = true}, {field_variable, 4}, - [319] = + [335] = {field_open, 3, .inherited = true}, {field_open, 5, .inherited = true}, - [321] = + [337] = {field_open, 3, .inherited = true}, + {field_open, 4, .inherited = true}, {field_open, 5, .inherited = true}, {field_type, 4}, - [324] = + [341] = + {field_open, 3, .inherited = true}, + {field_open, 5, .inherited = true}, + {field_type, 5}, + [344] = {field_open, 4, .inherited = true}, {field_open, 5, .inherited = true}, - [326] = + [346] = {field_open, 4, .inherited = true}, + {field_open, 5, .inherited = true}, {field_type, 5}, - [328] = + [349] = {field_open, 2, .inherited = true}, {field_open, 4, .inherited = true}, {field_open, 5, .inherited = true}, {field_type, 3}, {field_type, 4}, {field_variable, 2}, - [334] = + [355] = {field_open, 1, .inherited = true}, {field_open, 5, .inherited = true}, - [336] = + [357] = {field_open, 1, .inherited = true}, + {field_open, 2, .inherited = true}, {field_open, 5, .inherited = true}, {field_type, 2}, - [339] = + [361] = + {field_open, 1, .inherited = true}, + {field_open, 3, .inherited = true}, + {field_open, 5, .inherited = true}, + {field_type, 3}, + [365] = {field_open, 2, .inherited = true}, {field_open, 5, .inherited = true}, - [341] = + [367] = {field_open, 2, .inherited = true}, + {field_open, 3, .inherited = true}, {field_open, 5, .inherited = true}, {field_type, 3}, - [344] = + [371] = + {field_open, 2, .inherited = true}, + {field_open, 4, .inherited = true}, + {field_open, 5, .inherited = true}, + {field_type, 4}, + [375] = {field_function_name, 2}, {field_keyword, 0}, {field_lambda_list, 6}, {field_open, 2, .inherited = true}, {field_specifier, 3}, {field_specifier, 4}, - [350] = + [381] = {field_imaginary, 6}, {field_marker, 0}, {field_real, 4}, - [353] = + [384] = {field_imaginary, 6}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_real, 4}, - [358] = + [389] = {field_imaginary, 6}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_real, 5}, - [363] = + [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}, - [369] = + [400] = {field_open, 4, .inherited = true}, {field_open, 5, .inherited = true}, {field_open, 6, .inherited = true}, {field_type, 5}, {field_variable, 4}, - [374] = + [405] = {field_open, 3, .inherited = true}, {field_open, 6, .inherited = true}, - [376] = + [407] = {field_open, 3, .inherited = true}, + {field_open, 4, .inherited = true}, {field_open, 6, .inherited = true}, {field_type, 4}, - [379] = + [411] = + {field_open, 3, .inherited = true}, + {field_open, 5, .inherited = true}, + {field_open, 6, .inherited = true}, + {field_type, 5}, + [415] = {field_open, 4, .inherited = true}, {field_open, 6, .inherited = true}, - [381] = + [417] = {field_open, 4, .inherited = true}, + {field_open, 5, .inherited = true}, {field_open, 6, .inherited = true}, {field_type, 5}, - [384] = + [421] = + {field_open, 4, .inherited = true}, + {field_open, 6, .inherited = true}, + {field_type, 6}, + [424] = {field_open, 1, .inherited = true}, {field_open, 6, .inherited = true}, - [386] = + [426] = {field_open, 1, .inherited = true}, + {field_open, 2, .inherited = true}, {field_open, 6, .inherited = true}, {field_type, 2}, - [389] = + [430] = + {field_open, 1, .inherited = true}, + {field_open, 3, .inherited = true}, + {field_open, 6, .inherited = true}, + {field_type, 3}, + [434] = {field_open, 2, .inherited = true}, {field_open, 6, .inherited = true}, - [391] = + [436] = {field_open, 2, .inherited = true}, + {field_open, 3, .inherited = true}, {field_open, 6, .inherited = true}, {field_type, 3}, - [394] = + [440] = + {field_open, 2, .inherited = true}, + {field_open, 4, .inherited = true}, + {field_open, 6, .inherited = true}, + {field_type, 4}, + [444] = {field_imaginary, 7}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_real, 5}, - [399] = + [449] = {field_open, 4, .inherited = true}, {field_open, 6, .inherited = true}, {field_open, 7, .inherited = true}, {field_type, 5}, {field_type, 6}, {field_variable, 4}, - [405] = + [455] = {field_open, 3, .inherited = true}, {field_open, 7, .inherited = true}, - [407] = + [457] = {field_open, 3, .inherited = true}, + {field_open, 4, .inherited = true}, {field_open, 7, .inherited = true}, {field_type, 4}, - [410] = + [461] = + {field_open, 3, .inherited = true}, + {field_open, 5, .inherited = true}, + {field_open, 7, .inherited = true}, + {field_type, 5}, + [465] = {field_open, 4, .inherited = true}, {field_open, 7, .inherited = true}, - [412] = + [467] = {field_open, 4, .inherited = true}, + {field_open, 5, .inherited = true}, {field_open, 7, .inherited = true}, {field_type, 5}, - [415] = - {field_open, 1, .inherited = true}, + [471] = + {field_open, 4, .inherited = true}, + {field_open, 6, .inherited = true}, {field_open, 7, .inherited = true}, - [417] = + {field_type, 6}, + [475] = {field_open, 1, .inherited = true}, + {field_open, 2, .inherited = true}, {field_open, 7, .inherited = true}, {field_type, 2}, - [420] = + [479] = + {field_open, 1, .inherited = true}, + {field_open, 7, .inherited = true}, + [481] = + {field_open, 1, .inherited = true}, + {field_open, 3, .inherited = true}, + {field_open, 7, .inherited = true}, + {field_type, 3}, + [485] = {field_open, 2, .inherited = true}, {field_open, 7, .inherited = true}, - [422] = + [487] = {field_open, 2, .inherited = true}, + {field_open, 3, .inherited = true}, {field_open, 7, .inherited = true}, {field_type, 3}, - [425] = + [491] = + {field_open, 2, .inherited = true}, + {field_open, 4, .inherited = true}, + {field_open, 7, .inherited = true}, + {field_type, 4}, + [495] = {field_open, 3, .inherited = true}, {field_open, 8, .inherited = true}, - [427] = + [497] = {field_open, 3, .inherited = true}, + {field_open, 4, .inherited = true}, {field_open, 8, .inherited = true}, {field_type, 4}, - [430] = + [501] = + {field_open, 3, .inherited = true}, + {field_open, 5, .inherited = true}, + {field_open, 8, .inherited = true}, + {field_type, 5}, + [505] = {field_open, 4, .inherited = true}, {field_open, 8, .inherited = true}, - [432] = + [507] = {field_open, 4, .inherited = true}, + {field_open, 5, .inherited = true}, {field_open, 8, .inherited = true}, {field_type, 5}, - [435] = + [511] = + {field_open, 4, .inherited = true}, + {field_open, 6, .inherited = true}, + {field_open, 8, .inherited = true}, + {field_type, 6}, + [515] = {field_open, 1, .inherited = true}, + {field_open, 2, .inherited = true}, {field_open, 8, .inherited = true}, {field_type, 2}, - [438] = - {field_open, 2, .inherited = true}, + [519] = + {field_open, 1, .inherited = true}, + {field_open, 3, .inherited = true}, {field_open, 8, .inherited = true}, - [440] = + {field_type, 3}, + [523] = {field_open, 2, .inherited = true}, + {field_open, 3, .inherited = true}, {field_open, 8, .inherited = true}, {field_type, 3}, - [443] = + [527] = + {field_open, 2, .inherited = true}, + {field_open, 8, .inherited = true}, + [529] = + {field_open, 2, .inherited = true}, + {field_open, 4, .inherited = true}, + {field_open, 8, .inherited = true}, + {field_type, 4}, + [533] = {field_open, 3, .inherited = true}, + {field_open, 4, .inherited = true}, {field_open, 9, .inherited = true}, - [445] = + {field_type, 4}, + [537] = {field_open, 3, .inherited = true}, {field_open, 9, .inherited = true}, - {field_type, 4}, - [448] = + [539] = + {field_open, 3, .inherited = true}, + {field_open, 5, .inherited = true}, + {field_open, 9, .inherited = true}, + {field_type, 5}, + [543] = {field_open, 4, .inherited = true}, {field_open, 9, .inherited = true}, - [450] = + [545] = {field_open, 4, .inherited = true}, + {field_open, 5, .inherited = true}, {field_open, 9, .inherited = true}, {field_type, 5}, - [453] = + [549] = + {field_open, 4, .inherited = true}, + {field_open, 6, .inherited = true}, + {field_open, 9, .inherited = true}, + {field_type, 6}, + [553] = + {field_open, 1, .inherited = true}, + {field_open, 3, .inherited = true}, + {field_open, 9, .inherited = true}, + {field_type, 3}, + [557] = {field_open, 2, .inherited = true}, + {field_open, 3, .inherited = true}, {field_open, 9, .inherited = true}, {field_type, 3}, - [456] = + [561] = + {field_open, 2, .inherited = true}, + {field_open, 4, .inherited = true}, + {field_open, 9, .inherited = true}, + {field_type, 4}, + [565] = {field_open, 3, .inherited = true}, + {field_open, 4, .inherited = true}, {field_open, 10, .inherited = true}, {field_type, 4}, - [459] = + [569] = + {field_open, 3, .inherited = true}, + {field_open, 5, .inherited = true}, + {field_open, 10, .inherited = true}, + {field_type, 5}, + [573] = {field_open, 4, .inherited = true}, + {field_open, 5, .inherited = true}, {field_open, 10, .inherited = true}, - [461] = + {field_type, 5}, + [577] = + {field_open, 4, .inherited = true}, + {field_open, 10, .inherited = true}, + [579] = {field_open, 4, .inherited = true}, + {field_open, 6, .inherited = true}, {field_open, 10, .inherited = true}, + {field_type, 6}, + [583] = + {field_open, 2, .inherited = true}, + {field_open, 4, .inherited = true}, + {field_open, 10, .inherited = true}, + {field_type, 4}, + [587] = + {field_open, 3, .inherited = true}, + {field_open, 5, .inherited = true}, + {field_open, 11, .inherited = true}, {field_type, 5}, - [464] = + [591] = {field_open, 4, .inherited = true}, + {field_open, 5, .inherited = true}, {field_open, 11, .inherited = true}, {field_type, 5}, + [595] = + {field_open, 4, .inherited = true}, + {field_open, 6, .inherited = true}, + {field_open, 11, .inherited = true}, + {field_type, 6}, + [599] = + {field_open, 4, .inherited = true}, + {field_open, 6, .inherited = true}, + {field_open, 12, .inherited = true}, + {field_type, 6}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -6086,28 +6278,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3] = {.lex_state = 9}, [4] = {.lex_state = 9}, [5] = {.lex_state = 9}, - [6] = {.lex_state = 11}, + [6] = {.lex_state = 9}, [7] = {.lex_state = 9}, [8] = {.lex_state = 9}, [9] = {.lex_state = 9}, - [10] = {.lex_state = 11}, + [10] = {.lex_state = 9}, [11] = {.lex_state = 9}, [12] = {.lex_state = 9}, [13] = {.lex_state = 9}, [14] = {.lex_state = 9}, - [15] = {.lex_state = 11}, + [15] = {.lex_state = 9}, [16] = {.lex_state = 9}, [17] = {.lex_state = 9}, [18] = {.lex_state = 9}, [19] = {.lex_state = 9}, [20] = {.lex_state = 9}, [21] = {.lex_state = 11}, - [22] = {.lex_state = 11}, - [23] = {.lex_state = 11}, - [24] = {.lex_state = 11}, + [22] = {.lex_state = 9}, + [23] = {.lex_state = 9}, + [24] = {.lex_state = 9}, [25] = {.lex_state = 11}, - [26] = {.lex_state = 11}, - [27] = {.lex_state = 11}, + [26] = {.lex_state = 9}, + [27] = {.lex_state = 9}, [28] = {.lex_state = 11}, [29] = {.lex_state = 11}, [30] = {.lex_state = 11}, @@ -6151,84 +6343,84 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [68] = {.lex_state = 11}, [69] = {.lex_state = 11}, [70] = {.lex_state = 11}, - [71] = {.lex_state = 16}, - [72] = {.lex_state = 16}, - [73] = {.lex_state = 16}, - [74] = {.lex_state = 16}, - [75] = {.lex_state = 16}, - [76] = {.lex_state = 16}, - [77] = {.lex_state = 16}, - [78] = {.lex_state = 16}, - [79] = {.lex_state = 16}, - [80] = {.lex_state = 16}, - [81] = {.lex_state = 16}, - [82] = {.lex_state = 16}, - [83] = {.lex_state = 14}, - [84] = {.lex_state = 14}, - [85] = {.lex_state = 14}, - [86] = {.lex_state = 14}, - [87] = {.lex_state = 14}, - [88] = {.lex_state = 14}, - [89] = {.lex_state = 14}, - [90] = {.lex_state = 14}, - [91] = {.lex_state = 14}, - [92] = {.lex_state = 14}, - [93] = {.lex_state = 244}, - [94] = {.lex_state = 244}, - [95] = {.lex_state = 244}, - [96] = {.lex_state = 244}, - [97] = {.lex_state = 244}, - [98] = {.lex_state = 244}, - [99] = {.lex_state = 244}, - [100] = {.lex_state = 244}, - [101] = {.lex_state = 244}, - [102] = {.lex_state = 244}, - [103] = {.lex_state = 244}, - [104] = {.lex_state = 244}, - [105] = {.lex_state = 244}, - [106] = {.lex_state = 244}, - [107] = {.lex_state = 244}, - [108] = {.lex_state = 244}, - [109] = {.lex_state = 244}, - [110] = {.lex_state = 244}, - [111] = {.lex_state = 244}, - [112] = {.lex_state = 244}, - [113] = {.lex_state = 244}, - [114] = {.lex_state = 244}, - [115] = {.lex_state = 244}, - [116] = {.lex_state = 244}, - [117] = {.lex_state = 244}, - [118] = {.lex_state = 244}, - [119] = {.lex_state = 244}, - [120] = {.lex_state = 244}, - [121] = {.lex_state = 244}, - [122] = {.lex_state = 244}, - [123] = {.lex_state = 244}, - [124] = {.lex_state = 244}, - [125] = {.lex_state = 244}, - [126] = {.lex_state = 244}, - [127] = {.lex_state = 244}, - [128] = {.lex_state = 244}, - [129] = {.lex_state = 244}, - [130] = {.lex_state = 244}, - [131] = {.lex_state = 244}, - [132] = {.lex_state = 244}, - [133] = {.lex_state = 244}, - [134] = {.lex_state = 244}, - [135] = {.lex_state = 244}, - [136] = {.lex_state = 244}, - [137] = {.lex_state = 244}, - [138] = {.lex_state = 244}, - [139] = {.lex_state = 244}, - [140] = {.lex_state = 244}, - [141] = {.lex_state = 244}, - [142] = {.lex_state = 244}, - [143] = {.lex_state = 244}, - [144] = {.lex_state = 244}, - [145] = {.lex_state = 244}, - [146] = {.lex_state = 244}, - [147] = {.lex_state = 244}, - [148] = {.lex_state = 244}, + [71] = {.lex_state = 11}, + [72] = {.lex_state = 11}, + [73] = {.lex_state = 11}, + [74] = {.lex_state = 11}, + [75] = {.lex_state = 11}, + [76] = {.lex_state = 11}, + [77] = {.lex_state = 11}, + [78] = {.lex_state = 11}, + [79] = {.lex_state = 11}, + [80] = {.lex_state = 11}, + [81] = {.lex_state = 11}, + [82] = {.lex_state = 11}, + [83] = {.lex_state = 11}, + [84] = {.lex_state = 11}, + [85] = {.lex_state = 11}, + [86] = {.lex_state = 11}, + [87] = {.lex_state = 11}, + [88] = {.lex_state = 11}, + [89] = {.lex_state = 11}, + [90] = {.lex_state = 11}, + [91] = {.lex_state = 11}, + [92] = {.lex_state = 11}, + [93] = {.lex_state = 11}, + [94] = {.lex_state = 11}, + [95] = {.lex_state = 11}, + [96] = {.lex_state = 11}, + [97] = {.lex_state = 11}, + [98] = {.lex_state = 11}, + [99] = {.lex_state = 11}, + [100] = {.lex_state = 11}, + [101] = {.lex_state = 11}, + [102] = {.lex_state = 11}, + [103] = {.lex_state = 11}, + [104] = {.lex_state = 11}, + [105] = {.lex_state = 11}, + [106] = {.lex_state = 11}, + [107] = {.lex_state = 11}, + [108] = {.lex_state = 11}, + [109] = {.lex_state = 11}, + [110] = {.lex_state = 11}, + [111] = {.lex_state = 11}, + [112] = {.lex_state = 11}, + [113] = {.lex_state = 11}, + [114] = {.lex_state = 11}, + [115] = {.lex_state = 11}, + [116] = {.lex_state = 11}, + [117] = {.lex_state = 11}, + [118] = {.lex_state = 11}, + [119] = {.lex_state = 11}, + [120] = {.lex_state = 11}, + [121] = {.lex_state = 11}, + [122] = {.lex_state = 11}, + [123] = {.lex_state = 11}, + [124] = {.lex_state = 11}, + [125] = {.lex_state = 11}, + [126] = {.lex_state = 11}, + [127] = {.lex_state = 16}, + [128] = {.lex_state = 16}, + [129] = {.lex_state = 16}, + [130] = {.lex_state = 16}, + [131] = {.lex_state = 16}, + [132] = {.lex_state = 16}, + [133] = {.lex_state = 16}, + [134] = {.lex_state = 16}, + [135] = {.lex_state = 16}, + [136] = {.lex_state = 16}, + [137] = {.lex_state = 16}, + [138] = {.lex_state = 16}, + [139] = {.lex_state = 14}, + [140] = {.lex_state = 14}, + [141] = {.lex_state = 14}, + [142] = {.lex_state = 14}, + [143] = {.lex_state = 14}, + [144] = {.lex_state = 14}, + [145] = {.lex_state = 14}, + [146] = {.lex_state = 14}, + [147] = {.lex_state = 14}, + [148] = {.lex_state = 14}, [149] = {.lex_state = 244}, [150] = {.lex_state = 244}, [151] = {.lex_state = 244}, @@ -6839,83 +7031,83 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [756] = {.lex_state = 244}, [757] = {.lex_state = 244}, [758] = {.lex_state = 244}, - [759] = {.lex_state = 17}, - [760] = {.lex_state = 17}, - [761] = {.lex_state = 17}, - [762] = {.lex_state = 17}, - [763] = {.lex_state = 17}, - [764] = {.lex_state = 17}, - [765] = {.lex_state = 17}, - [766] = {.lex_state = 17}, - [767] = {.lex_state = 17}, - [768] = {.lex_state = 17}, - [769] = {.lex_state = 17}, - [770] = {.lex_state = 17}, - [771] = {.lex_state = 17}, - [772] = {.lex_state = 17}, - [773] = {.lex_state = 9}, - [774] = {.lex_state = 11}, - [775] = {.lex_state = 11}, - [776] = {.lex_state = 11}, - [777] = {.lex_state = 11}, - [778] = {.lex_state = 11}, - [779] = {.lex_state = 10}, - [780] = {.lex_state = 9}, - [781] = {.lex_state = 9}, - [782] = {.lex_state = 9}, - [783] = {.lex_state = 9}, - [784] = {.lex_state = 9}, - [785] = {.lex_state = 9}, - [786] = {.lex_state = 9}, - [787] = {.lex_state = 9}, - [788] = {.lex_state = 9}, - [789] = {.lex_state = 12}, - [790] = {.lex_state = 9}, - [791] = {.lex_state = 9}, - [792] = {.lex_state = 9}, - [793] = {.lex_state = 9}, - [794] = {.lex_state = 9}, - [795] = {.lex_state = 9}, - [796] = {.lex_state = 9}, - [797] = {.lex_state = 9}, - [798] = {.lex_state = 9}, - [799] = {.lex_state = 9}, - [800] = {.lex_state = 9}, - [801] = {.lex_state = 9}, - [802] = {.lex_state = 9}, - [803] = {.lex_state = 9}, - [804] = {.lex_state = 9}, - [805] = {.lex_state = 9}, - [806] = {.lex_state = 9}, - [807] = {.lex_state = 9}, - [808] = {.lex_state = 9}, - [809] = {.lex_state = 9}, - [810] = {.lex_state = 9}, - [811] = {.lex_state = 9}, - [812] = {.lex_state = 9}, - [813] = {.lex_state = 9}, - [814] = {.lex_state = 9}, - [815] = {.lex_state = 9}, - [816] = {.lex_state = 9}, - [817] = {.lex_state = 9}, - [818] = {.lex_state = 9}, - [819] = {.lex_state = 9}, - [820] = {.lex_state = 9}, - [821] = {.lex_state = 9}, - [822] = {.lex_state = 9}, - [823] = {.lex_state = 9}, - [824] = {.lex_state = 9}, - [825] = {.lex_state = 9}, - [826] = {.lex_state = 9}, - [827] = {.lex_state = 9}, - [828] = {.lex_state = 9}, + [759] = {.lex_state = 244}, + [760] = {.lex_state = 244}, + [761] = {.lex_state = 244}, + [762] = {.lex_state = 244}, + [763] = {.lex_state = 244}, + [764] = {.lex_state = 244}, + [765] = {.lex_state = 244}, + [766] = {.lex_state = 244}, + [767] = {.lex_state = 244}, + [768] = {.lex_state = 244}, + [769] = {.lex_state = 244}, + [770] = {.lex_state = 244}, + [771] = {.lex_state = 244}, + [772] = {.lex_state = 244}, + [773] = {.lex_state = 244}, + [774] = {.lex_state = 244}, + [775] = {.lex_state = 244}, + [776] = {.lex_state = 244}, + [777] = {.lex_state = 244}, + [778] = {.lex_state = 244}, + [779] = {.lex_state = 244}, + [780] = {.lex_state = 244}, + [781] = {.lex_state = 244}, + [782] = {.lex_state = 244}, + [783] = {.lex_state = 244}, + [784] = {.lex_state = 244}, + [785] = {.lex_state = 244}, + [786] = {.lex_state = 244}, + [787] = {.lex_state = 244}, + [788] = {.lex_state = 244}, + [789] = {.lex_state = 244}, + [790] = {.lex_state = 244}, + [791] = {.lex_state = 244}, + [792] = {.lex_state = 244}, + [793] = {.lex_state = 244}, + [794] = {.lex_state = 244}, + [795] = {.lex_state = 244}, + [796] = {.lex_state = 244}, + [797] = {.lex_state = 244}, + [798] = {.lex_state = 244}, + [799] = {.lex_state = 244}, + [800] = {.lex_state = 244}, + [801] = {.lex_state = 244}, + [802] = {.lex_state = 244}, + [803] = {.lex_state = 244}, + [804] = {.lex_state = 244}, + [805] = {.lex_state = 244}, + [806] = {.lex_state = 244}, + [807] = {.lex_state = 244}, + [808] = {.lex_state = 244}, + [809] = {.lex_state = 244}, + [810] = {.lex_state = 244}, + [811] = {.lex_state = 244}, + [812] = {.lex_state = 244}, + [813] = {.lex_state = 244}, + [814] = {.lex_state = 244}, + [815] = {.lex_state = 17}, + [816] = {.lex_state = 17}, + [817] = {.lex_state = 17}, + [818] = {.lex_state = 17}, + [819] = {.lex_state = 17}, + [820] = {.lex_state = 17}, + [821] = {.lex_state = 17}, + [822] = {.lex_state = 17}, + [823] = {.lex_state = 17}, + [824] = {.lex_state = 17}, + [825] = {.lex_state = 17}, + [826] = {.lex_state = 17}, + [827] = {.lex_state = 17}, + [828] = {.lex_state = 17}, [829] = {.lex_state = 9}, - [830] = {.lex_state = 9}, - [831] = {.lex_state = 9}, - [832] = {.lex_state = 9}, - [833] = {.lex_state = 9}, - [834] = {.lex_state = 9}, - [835] = {.lex_state = 9}, + [830] = {.lex_state = 11}, + [831] = {.lex_state = 11}, + [832] = {.lex_state = 11}, + [833] = {.lex_state = 11}, + [834] = {.lex_state = 11}, + [835] = {.lex_state = 10}, [836] = {.lex_state = 9}, [837] = {.lex_state = 9}, [838] = {.lex_state = 9}, @@ -6983,70 +7175,70 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [900] = {.lex_state = 9}, [901] = {.lex_state = 9}, [902] = {.lex_state = 9}, - [903] = {.lex_state = 11}, - [904] = {.lex_state = 11}, - [905] = {.lex_state = 11}, - [906] = {.lex_state = 11}, - [907] = {.lex_state = 11}, - [908] = {.lex_state = 11}, - [909] = {.lex_state = 11}, - [910] = {.lex_state = 11}, - [911] = {.lex_state = 11}, - [912] = {.lex_state = 11}, - [913] = {.lex_state = 11}, - [914] = {.lex_state = 11}, - [915] = {.lex_state = 11}, - [916] = {.lex_state = 11}, - [917] = {.lex_state = 11}, - [918] = {.lex_state = 11}, - [919] = {.lex_state = 11}, - [920] = {.lex_state = 11}, - [921] = {.lex_state = 11}, - [922] = {.lex_state = 11}, - [923] = {.lex_state = 11}, - [924] = {.lex_state = 11}, - [925] = {.lex_state = 11}, - [926] = {.lex_state = 11}, - [927] = {.lex_state = 11}, - [928] = {.lex_state = 11}, - [929] = {.lex_state = 11}, - [930] = {.lex_state = 11}, - [931] = {.lex_state = 11}, - [932] = {.lex_state = 11}, - [933] = {.lex_state = 11}, - [934] = {.lex_state = 11}, - [935] = {.lex_state = 11}, - [936] = {.lex_state = 11}, - [937] = {.lex_state = 11}, - [938] = {.lex_state = 11}, - [939] = {.lex_state = 11}, - [940] = {.lex_state = 11}, - [941] = {.lex_state = 11}, - [942] = {.lex_state = 11}, - [943] = {.lex_state = 11}, - [944] = {.lex_state = 11}, - [945] = {.lex_state = 11}, - [946] = {.lex_state = 11}, - [947] = {.lex_state = 11}, - [948] = {.lex_state = 11}, - [949] = {.lex_state = 11}, - [950] = {.lex_state = 11}, - [951] = {.lex_state = 11}, - [952] = {.lex_state = 11}, - [953] = {.lex_state = 11}, - [954] = {.lex_state = 11}, - [955] = {.lex_state = 11}, - [956] = {.lex_state = 11}, - [957] = {.lex_state = 11}, - [958] = {.lex_state = 11}, - [959] = {.lex_state = 11}, - [960] = {.lex_state = 11}, - [961] = {.lex_state = 11}, - [962] = {.lex_state = 11}, - [963] = {.lex_state = 11}, - [964] = {.lex_state = 11}, - [965] = {.lex_state = 11}, - [966] = {.lex_state = 11}, + [903] = {.lex_state = 9}, + [904] = {.lex_state = 9}, + [905] = {.lex_state = 9}, + [906] = {.lex_state = 9}, + [907] = {.lex_state = 9}, + [908] = {.lex_state = 9}, + [909] = {.lex_state = 9}, + [910] = {.lex_state = 9}, + [911] = {.lex_state = 9}, + [912] = {.lex_state = 9}, + [913] = {.lex_state = 9}, + [914] = {.lex_state = 9}, + [915] = {.lex_state = 9}, + [916] = {.lex_state = 9}, + [917] = {.lex_state = 9}, + [918] = {.lex_state = 9}, + [919] = {.lex_state = 9}, + [920] = {.lex_state = 9}, + [921] = {.lex_state = 9}, + [922] = {.lex_state = 9}, + [923] = {.lex_state = 9}, + [924] = {.lex_state = 9}, + [925] = {.lex_state = 9}, + [926] = {.lex_state = 9}, + [927] = {.lex_state = 9}, + [928] = {.lex_state = 9}, + [929] = {.lex_state = 9}, + [930] = {.lex_state = 9}, + [931] = {.lex_state = 9}, + [932] = {.lex_state = 9}, + [933] = {.lex_state = 9}, + [934] = {.lex_state = 9}, + [935] = {.lex_state = 9}, + [936] = {.lex_state = 9}, + [937] = {.lex_state = 9}, + [938] = {.lex_state = 9}, + [939] = {.lex_state = 9}, + [940] = {.lex_state = 9}, + [941] = {.lex_state = 9}, + [942] = {.lex_state = 9}, + [943] = {.lex_state = 9}, + [944] = {.lex_state = 9}, + [945] = {.lex_state = 9}, + [946] = {.lex_state = 9}, + [947] = {.lex_state = 9}, + [948] = {.lex_state = 9}, + [949] = {.lex_state = 9}, + [950] = {.lex_state = 9}, + [951] = {.lex_state = 9}, + [952] = {.lex_state = 9}, + [953] = {.lex_state = 9}, + [954] = {.lex_state = 9}, + [955] = {.lex_state = 9}, + [956] = {.lex_state = 9}, + [957] = {.lex_state = 9}, + [958] = {.lex_state = 9}, + [959] = {.lex_state = 9}, + [960] = {.lex_state = 9}, + [961] = {.lex_state = 9}, + [962] = {.lex_state = 9}, + [963] = {.lex_state = 12}, + [964] = {.lex_state = 9}, + [965] = {.lex_state = 9}, + [966] = {.lex_state = 9}, [967] = {.lex_state = 11}, [968] = {.lex_state = 11}, [969] = {.lex_state = 11}, @@ -7105,153 +7297,153 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1022] = {.lex_state = 11}, [1023] = {.lex_state = 11}, [1024] = {.lex_state = 11}, - [1025] = {.lex_state = 16}, - [1026] = {.lex_state = 23}, - [1027] = {.lex_state = 23}, - [1028] = {.lex_state = 23}, - [1029] = {.lex_state = 23}, - [1030] = {.lex_state = 23}, - [1031] = {.lex_state = 23}, - [1032] = {.lex_state = 23}, - [1033] = {.lex_state = 23}, - [1034] = {.lex_state = 23}, - [1035] = {.lex_state = 23}, - [1036] = {.lex_state = 23}, - [1037] = {.lex_state = 23}, - [1038] = {.lex_state = 23}, - [1039] = {.lex_state = 23}, - [1040] = {.lex_state = 23}, - [1041] = {.lex_state = 23}, - [1042] = {.lex_state = 23}, - [1043] = {.lex_state = 23}, - [1044] = {.lex_state = 23}, - [1045] = {.lex_state = 15}, - [1046] = {.lex_state = 26}, - [1047] = {.lex_state = 26}, - [1048] = {.lex_state = 26}, - [1049] = {.lex_state = 26}, - [1050] = {.lex_state = 26}, - [1051] = {.lex_state = 26}, - [1052] = {.lex_state = 16}, - [1053] = {.lex_state = 26}, - [1054] = {.lex_state = 26}, - [1055] = {.lex_state = 26}, - [1056] = {.lex_state = 26}, - [1057] = {.lex_state = 26}, - [1058] = {.lex_state = 26}, - [1059] = {.lex_state = 16}, - [1060] = {.lex_state = 16}, - [1061] = {.lex_state = 16}, - [1062] = {.lex_state = 16}, - [1063] = {.lex_state = 16}, - [1064] = {.lex_state = 16}, - [1065] = {.lex_state = 16}, - [1066] = {.lex_state = 16}, - [1067] = {.lex_state = 16}, - [1068] = {.lex_state = 16}, - [1069] = {.lex_state = 16}, - [1070] = {.lex_state = 16}, - [1071] = {.lex_state = 26}, - [1072] = {.lex_state = 26}, - [1073] = {.lex_state = 26}, - [1074] = {.lex_state = 26}, - [1075] = {.lex_state = 26}, - [1076] = {.lex_state = 16}, - [1077] = {.lex_state = 26}, - [1078] = {.lex_state = 26}, - [1079] = {.lex_state = 26}, - [1080] = {.lex_state = 26}, - [1081] = {.lex_state = 26}, - [1082] = {.lex_state = 26}, - [1083] = {.lex_state = 26}, - [1084] = {.lex_state = 26}, - [1085] = {.lex_state = 16}, - [1086] = {.lex_state = 16}, - [1087] = {.lex_state = 16}, - [1088] = {.lex_state = 16}, - [1089] = {.lex_state = 26}, - [1090] = {.lex_state = 16}, - [1091] = {.lex_state = 26}, - [1092] = {.lex_state = 26}, - [1093] = {.lex_state = 26}, - [1094] = {.lex_state = 16}, - [1095] = {.lex_state = 16}, - [1096] = {.lex_state = 16}, - [1097] = {.lex_state = 16}, - [1098] = {.lex_state = 26}, - [1099] = {.lex_state = 16}, - [1100] = {.lex_state = 16}, - [1101] = {.lex_state = 16}, - [1102] = {.lex_state = 16}, - [1103] = {.lex_state = 26}, - [1104] = {.lex_state = 16}, - [1105] = {.lex_state = 16}, - [1106] = {.lex_state = 16}, - [1107] = {.lex_state = 16}, - [1108] = {.lex_state = 26}, - [1109] = {.lex_state = 16}, - [1110] = {.lex_state = 16}, - [1111] = {.lex_state = 26}, + [1025] = {.lex_state = 11}, + [1026] = {.lex_state = 11}, + [1027] = {.lex_state = 11}, + [1028] = {.lex_state = 11}, + [1029] = {.lex_state = 11}, + [1030] = {.lex_state = 11}, + [1031] = {.lex_state = 11}, + [1032] = {.lex_state = 11}, + [1033] = {.lex_state = 11}, + [1034] = {.lex_state = 11}, + [1035] = {.lex_state = 11}, + [1036] = {.lex_state = 11}, + [1037] = {.lex_state = 11}, + [1038] = {.lex_state = 11}, + [1039] = {.lex_state = 11}, + [1040] = {.lex_state = 11}, + [1041] = {.lex_state = 11}, + [1042] = {.lex_state = 11}, + [1043] = {.lex_state = 11}, + [1044] = {.lex_state = 11}, + [1045] = {.lex_state = 11}, + [1046] = {.lex_state = 11}, + [1047] = {.lex_state = 11}, + [1048] = {.lex_state = 11}, + [1049] = {.lex_state = 11}, + [1050] = {.lex_state = 11}, + [1051] = {.lex_state = 11}, + [1052] = {.lex_state = 11}, + [1053] = {.lex_state = 11}, + [1054] = {.lex_state = 11}, + [1055] = {.lex_state = 11}, + [1056] = {.lex_state = 11}, + [1057] = {.lex_state = 11}, + [1058] = {.lex_state = 11}, + [1059] = {.lex_state = 11}, + [1060] = {.lex_state = 11}, + [1061] = {.lex_state = 11}, + [1062] = {.lex_state = 11}, + [1063] = {.lex_state = 11}, + [1064] = {.lex_state = 11}, + [1065] = {.lex_state = 11}, + [1066] = {.lex_state = 11}, + [1067] = {.lex_state = 11}, + [1068] = {.lex_state = 11}, + [1069] = {.lex_state = 11}, + [1070] = {.lex_state = 11}, + [1071] = {.lex_state = 11}, + [1072] = {.lex_state = 11}, + [1073] = {.lex_state = 11}, + [1074] = {.lex_state = 11}, + [1075] = {.lex_state = 11}, + [1076] = {.lex_state = 11}, + [1077] = {.lex_state = 11}, + [1078] = {.lex_state = 11}, + [1079] = {.lex_state = 11}, + [1080] = {.lex_state = 11}, + [1081] = {.lex_state = 11}, + [1082] = {.lex_state = 11}, + [1083] = {.lex_state = 11}, + [1084] = {.lex_state = 11}, + [1085] = {.lex_state = 11}, + [1086] = {.lex_state = 11}, + [1087] = {.lex_state = 11}, + [1088] = {.lex_state = 11}, + [1089] = {.lex_state = 16}, + [1090] = {.lex_state = 23}, + [1091] = {.lex_state = 23}, + [1092] = {.lex_state = 23}, + [1093] = {.lex_state = 23}, + [1094] = {.lex_state = 23}, + [1095] = {.lex_state = 23}, + [1096] = {.lex_state = 23}, + [1097] = {.lex_state = 23}, + [1098] = {.lex_state = 23}, + [1099] = {.lex_state = 23}, + [1100] = {.lex_state = 23}, + [1101] = {.lex_state = 23}, + [1102] = {.lex_state = 23}, + [1103] = {.lex_state = 23}, + [1104] = {.lex_state = 23}, + [1105] = {.lex_state = 23}, + [1106] = {.lex_state = 15}, + [1107] = {.lex_state = 23}, + [1108] = {.lex_state = 23}, + [1109] = {.lex_state = 23}, + [1110] = {.lex_state = 26}, + [1111] = {.lex_state = 16}, [1112] = {.lex_state = 16}, [1113] = {.lex_state = 16}, [1114] = {.lex_state = 26}, [1115] = {.lex_state = 16}, [1116] = {.lex_state = 26}, - [1117] = {.lex_state = 16}, - [1118] = {.lex_state = 26}, - [1119] = {.lex_state = 26}, - [1120] = {.lex_state = 16}, - [1121] = {.lex_state = 16}, + [1117] = {.lex_state = 26}, + [1118] = {.lex_state = 16}, + [1119] = {.lex_state = 16}, + [1120] = {.lex_state = 26}, + [1121] = {.lex_state = 26}, [1122] = {.lex_state = 16}, [1123] = {.lex_state = 16}, [1124] = {.lex_state = 16}, [1125] = {.lex_state = 16}, - [1126] = {.lex_state = 26}, - [1127] = {.lex_state = 16}, - [1128] = {.lex_state = 16}, + [1126] = {.lex_state = 16}, + [1127] = {.lex_state = 26}, + [1128] = {.lex_state = 26}, [1129] = {.lex_state = 16}, [1130] = {.lex_state = 16}, [1131] = {.lex_state = 26}, [1132] = {.lex_state = 16}, [1133] = {.lex_state = 16}, - [1134] = {.lex_state = 16}, - [1135] = {.lex_state = 26}, - [1136] = {.lex_state = 16}, - [1137] = {.lex_state = 16}, + [1134] = {.lex_state = 26}, + [1135] = {.lex_state = 16}, + [1136] = {.lex_state = 26}, + [1137] = {.lex_state = 26}, [1138] = {.lex_state = 16}, [1139] = {.lex_state = 16}, - [1140] = {.lex_state = 16}, - [1141] = {.lex_state = 16}, - [1142] = {.lex_state = 26}, + [1140] = {.lex_state = 26}, + [1141] = {.lex_state = 26}, + [1142] = {.lex_state = 16}, [1143] = {.lex_state = 16}, - [1144] = {.lex_state = 16}, - [1145] = {.lex_state = 16}, - [1146] = {.lex_state = 26}, + [1144] = {.lex_state = 26}, + [1145] = {.lex_state = 26}, + [1146] = {.lex_state = 16}, [1147] = {.lex_state = 16}, [1148] = {.lex_state = 16}, - [1149] = {.lex_state = 26}, - [1150] = {.lex_state = 26}, + [1149] = {.lex_state = 16}, + [1150] = {.lex_state = 16}, [1151] = {.lex_state = 26}, [1152] = {.lex_state = 16}, [1153] = {.lex_state = 16}, - [1154] = {.lex_state = 16}, - [1155] = {.lex_state = 26}, + [1154] = {.lex_state = 26}, + [1155] = {.lex_state = 16}, [1156] = {.lex_state = 16}, - [1157] = {.lex_state = 26}, - [1158] = {.lex_state = 26}, + [1157] = {.lex_state = 16}, + [1158] = {.lex_state = 16}, [1159] = {.lex_state = 16}, - [1160] = {.lex_state = 26}, + [1160] = {.lex_state = 16}, [1161] = {.lex_state = 16}, - [1162] = {.lex_state = 26}, - [1163] = {.lex_state = 26}, - [1164] = {.lex_state = 26}, - [1165] = {.lex_state = 26}, - [1166] = {.lex_state = 26}, - [1167] = {.lex_state = 26}, - [1168] = {.lex_state = 26}, - [1169] = {.lex_state = 26}, - [1170] = {.lex_state = 26}, - [1171] = {.lex_state = 26}, + [1162] = {.lex_state = 16}, + [1163] = {.lex_state = 16}, + [1164] = {.lex_state = 16}, + [1165] = {.lex_state = 16}, + [1166] = {.lex_state = 16}, + [1167] = {.lex_state = 16}, + [1168] = {.lex_state = 16}, + [1169] = {.lex_state = 16}, + [1170] = {.lex_state = 16}, + [1171] = {.lex_state = 16}, [1172] = {.lex_state = 16}, [1173] = {.lex_state = 16}, [1174] = {.lex_state = 16}, @@ -7259,140 +7451,140 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1176] = {.lex_state = 16}, [1177] = {.lex_state = 16}, [1178] = {.lex_state = 16}, - [1179] = {.lex_state = 26}, - [1180] = {.lex_state = 26}, + [1179] = {.lex_state = 16}, + [1180] = {.lex_state = 16}, [1181] = {.lex_state = 16}, - [1182] = {.lex_state = 16}, - [1183] = {.lex_state = 26}, - [1184] = {.lex_state = 26}, - [1185] = {.lex_state = 26}, + [1182] = {.lex_state = 26}, + [1183] = {.lex_state = 16}, + [1184] = {.lex_state = 16}, + [1185] = {.lex_state = 16}, [1186] = {.lex_state = 16}, - [1187] = {.lex_state = 26}, + [1187] = {.lex_state = 16}, [1188] = {.lex_state = 16}, [1189] = {.lex_state = 16}, [1190] = {.lex_state = 16}, - [1191] = {.lex_state = 16}, - [1192] = {.lex_state = 26}, - [1193] = {.lex_state = 26}, - [1194] = {.lex_state = 26}, + [1191] = {.lex_state = 26}, + [1192] = {.lex_state = 16}, + [1193] = {.lex_state = 16}, + [1194] = {.lex_state = 16}, [1195] = {.lex_state = 16}, [1196] = {.lex_state = 16}, - [1197] = {.lex_state = 26}, - [1198] = {.lex_state = 26}, + [1197] = {.lex_state = 16}, + [1198] = {.lex_state = 16}, [1199] = {.lex_state = 16}, [1200] = {.lex_state = 16}, - [1201] = {.lex_state = 16}, + [1201] = {.lex_state = 26}, [1202] = {.lex_state = 16}, [1203] = {.lex_state = 16}, [1204] = {.lex_state = 16}, [1205] = {.lex_state = 16}, [1206] = {.lex_state = 16}, - [1207] = {.lex_state = 26}, + [1207] = {.lex_state = 16}, [1208] = {.lex_state = 26}, [1209] = {.lex_state = 16}, [1210] = {.lex_state = 26}, - [1211] = {.lex_state = 16}, - [1212] = {.lex_state = 26}, - [1213] = {.lex_state = 26}, + [1211] = {.lex_state = 26}, + [1212] = {.lex_state = 16}, + [1213] = {.lex_state = 16}, [1214] = {.lex_state = 16}, - [1215] = {.lex_state = 26}, + [1215] = {.lex_state = 16}, [1216] = {.lex_state = 16}, [1217] = {.lex_state = 16}, [1218] = {.lex_state = 16}, [1219] = {.lex_state = 16}, [1220] = {.lex_state = 16}, - [1221] = {.lex_state = 26}, + [1221] = {.lex_state = 16}, [1222] = {.lex_state = 16}, - [1223] = {.lex_state = 26}, + [1223] = {.lex_state = 16}, [1224] = {.lex_state = 16}, [1225] = {.lex_state = 16}, [1226] = {.lex_state = 16}, [1227] = {.lex_state = 16}, [1228] = {.lex_state = 16}, - [1229] = {.lex_state = 26}, + [1229] = {.lex_state = 16}, [1230] = {.lex_state = 16}, [1231] = {.lex_state = 16}, [1232] = {.lex_state = 16}, - [1233] = {.lex_state = 16}, + [1233] = {.lex_state = 26}, [1234] = {.lex_state = 16}, [1235] = {.lex_state = 16}, [1236] = {.lex_state = 16}, [1237] = {.lex_state = 16}, [1238] = {.lex_state = 16}, [1239] = {.lex_state = 16}, - [1240] = {.lex_state = 16}, - [1241] = {.lex_state = 16}, + [1240] = {.lex_state = 26}, + [1241] = {.lex_state = 26}, [1242] = {.lex_state = 16}, [1243] = {.lex_state = 16}, [1244] = {.lex_state = 16}, - [1245] = {.lex_state = 26}, + [1245] = {.lex_state = 16}, [1246] = {.lex_state = 16}, - [1247] = {.lex_state = 26}, + [1247] = {.lex_state = 16}, [1248] = {.lex_state = 16}, - [1249] = {.lex_state = 23}, - [1250] = {.lex_state = 23}, - [1251] = {.lex_state = 23}, - [1252] = {.lex_state = 23}, - [1253] = {.lex_state = 23}, - [1254] = {.lex_state = 23}, - [1255] = {.lex_state = 23}, - [1256] = {.lex_state = 23}, - [1257] = {.lex_state = 23}, - [1258] = {.lex_state = 23}, - [1259] = {.lex_state = 23}, - [1260] = {.lex_state = 23}, - [1261] = {.lex_state = 23}, - [1262] = {.lex_state = 23}, - [1263] = {.lex_state = 23}, - [1264] = {.lex_state = 23}, - [1265] = {.lex_state = 23}, - [1266] = {.lex_state = 23}, - [1267] = {.lex_state = 23}, - [1268] = {.lex_state = 23}, - [1269] = {.lex_state = 23}, - [1270] = {.lex_state = 23}, - [1271] = {.lex_state = 23}, - [1272] = {.lex_state = 23}, - [1273] = {.lex_state = 23}, - [1274] = {.lex_state = 23}, - [1275] = {.lex_state = 23}, - [1276] = {.lex_state = 23}, - [1277] = {.lex_state = 23}, - [1278] = {.lex_state = 23}, - [1279] = {.lex_state = 23}, - [1280] = {.lex_state = 23}, - [1281] = {.lex_state = 23}, - [1282] = {.lex_state = 23}, - [1283] = {.lex_state = 23}, - [1284] = {.lex_state = 23}, - [1285] = {.lex_state = 23}, - [1286] = {.lex_state = 23}, - [1287] = {.lex_state = 23}, - [1288] = {.lex_state = 23}, - [1289] = {.lex_state = 23}, - [1290] = {.lex_state = 23}, - [1291] = {.lex_state = 23}, - [1292] = {.lex_state = 23}, - [1293] = {.lex_state = 23}, - [1294] = {.lex_state = 23}, - [1295] = {.lex_state = 23}, - [1296] = {.lex_state = 23}, - [1297] = {.lex_state = 23}, - [1298] = {.lex_state = 23}, - [1299] = {.lex_state = 23}, - [1300] = {.lex_state = 23}, - [1301] = {.lex_state = 23}, - [1302] = {.lex_state = 23}, - [1303] = {.lex_state = 23}, - [1304] = {.lex_state = 23}, - [1305] = {.lex_state = 23}, - [1306] = {.lex_state = 23}, - [1307] = {.lex_state = 23}, - [1308] = {.lex_state = 23}, - [1309] = {.lex_state = 23}, - [1310] = {.lex_state = 23}, - [1311] = {.lex_state = 23}, - [1312] = {.lex_state = 23}, + [1249] = {.lex_state = 26}, + [1250] = {.lex_state = 16}, + [1251] = {.lex_state = 26}, + [1252] = {.lex_state = 16}, + [1253] = {.lex_state = 16}, + [1254] = {.lex_state = 26}, + [1255] = {.lex_state = 26}, + [1256] = {.lex_state = 16}, + [1257] = {.lex_state = 16}, + [1258] = {.lex_state = 16}, + [1259] = {.lex_state = 26}, + [1260] = {.lex_state = 26}, + [1261] = {.lex_state = 16}, + [1262] = {.lex_state = 26}, + [1263] = {.lex_state = 16}, + [1264] = {.lex_state = 16}, + [1265] = {.lex_state = 16}, + [1266] = {.lex_state = 26}, + [1267] = {.lex_state = 26}, + [1268] = {.lex_state = 26}, + [1269] = {.lex_state = 26}, + [1270] = {.lex_state = 26}, + [1271] = {.lex_state = 26}, + [1272] = {.lex_state = 26}, + [1273] = {.lex_state = 26}, + [1274] = {.lex_state = 26}, + [1275] = {.lex_state = 26}, + [1276] = {.lex_state = 26}, + [1277] = {.lex_state = 26}, + [1278] = {.lex_state = 26}, + [1279] = {.lex_state = 26}, + [1280] = {.lex_state = 26}, + [1281] = {.lex_state = 26}, + [1282] = {.lex_state = 26}, + [1283] = {.lex_state = 26}, + [1284] = {.lex_state = 26}, + [1285] = {.lex_state = 26}, + [1286] = {.lex_state = 26}, + [1287] = {.lex_state = 26}, + [1288] = {.lex_state = 26}, + [1289] = {.lex_state = 26}, + [1290] = {.lex_state = 26}, + [1291] = {.lex_state = 26}, + [1292] = {.lex_state = 26}, + [1293] = {.lex_state = 26}, + [1294] = {.lex_state = 26}, + [1295] = {.lex_state = 26}, + [1296] = {.lex_state = 26}, + [1297] = {.lex_state = 26}, + [1298] = {.lex_state = 26}, + [1299] = {.lex_state = 26}, + [1300] = {.lex_state = 26}, + [1301] = {.lex_state = 26}, + [1302] = {.lex_state = 26}, + [1303] = {.lex_state = 26}, + [1304] = {.lex_state = 26}, + [1305] = {.lex_state = 26}, + [1306] = {.lex_state = 26}, + [1307] = {.lex_state = 26}, + [1308] = {.lex_state = 26}, + [1309] = {.lex_state = 26}, + [1310] = {.lex_state = 26}, + [1311] = {.lex_state = 26}, + [1312] = {.lex_state = 26}, [1313] = {.lex_state = 23}, [1314] = {.lex_state = 23}, [1315] = {.lex_state = 23}, @@ -7455,70 +7647,70 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1372] = {.lex_state = 23}, [1373] = {.lex_state = 23}, [1374] = {.lex_state = 23}, - [1375] = {.lex_state = 14}, - [1376] = {.lex_state = 14}, - [1377] = {.lex_state = 14}, - [1378] = {.lex_state = 14}, - [1379] = {.lex_state = 14}, - [1380] = {.lex_state = 14}, - [1381] = {.lex_state = 14}, - [1382] = {.lex_state = 14}, - [1383] = {.lex_state = 14}, - [1384] = {.lex_state = 14}, - [1385] = {.lex_state = 13}, - [1386] = {.lex_state = 14}, - [1387] = {.lex_state = 14}, - [1388] = {.lex_state = 14}, - [1389] = {.lex_state = 14}, - [1390] = {.lex_state = 14}, - [1391] = {.lex_state = 14}, - [1392] = {.lex_state = 14}, - [1393] = {.lex_state = 14}, - [1394] = {.lex_state = 14}, - [1395] = {.lex_state = 14}, - [1396] = {.lex_state = 14}, - [1397] = {.lex_state = 14}, - [1398] = {.lex_state = 14}, - [1399] = {.lex_state = 14}, - [1400] = {.lex_state = 14}, - [1401] = {.lex_state = 14}, - [1402] = {.lex_state = 14}, - [1403] = {.lex_state = 14}, - [1404] = {.lex_state = 14}, - [1405] = {.lex_state = 14}, - [1406] = {.lex_state = 14}, - [1407] = {.lex_state = 14}, - [1408] = {.lex_state = 14}, - [1409] = {.lex_state = 14}, - [1410] = {.lex_state = 14}, - [1411] = {.lex_state = 14}, - [1412] = {.lex_state = 14}, - [1413] = {.lex_state = 14}, - [1414] = {.lex_state = 14}, - [1415] = {.lex_state = 14}, - [1416] = {.lex_state = 14}, - [1417] = {.lex_state = 14}, - [1418] = {.lex_state = 14}, - [1419] = {.lex_state = 14}, - [1420] = {.lex_state = 14}, - [1421] = {.lex_state = 14}, - [1422] = {.lex_state = 14}, - [1423] = {.lex_state = 14}, - [1424] = {.lex_state = 14}, - [1425] = {.lex_state = 14}, - [1426] = {.lex_state = 14}, - [1427] = {.lex_state = 14}, - [1428] = {.lex_state = 14}, - [1429] = {.lex_state = 14}, - [1430] = {.lex_state = 14}, - [1431] = {.lex_state = 14}, - [1432] = {.lex_state = 14}, - [1433] = {.lex_state = 14}, - [1434] = {.lex_state = 14}, - [1435] = {.lex_state = 14}, - [1436] = {.lex_state = 14}, - [1437] = {.lex_state = 14}, - [1438] = {.lex_state = 14}, + [1375] = {.lex_state = 23}, + [1376] = {.lex_state = 23}, + [1377] = {.lex_state = 23}, + [1378] = {.lex_state = 23}, + [1379] = {.lex_state = 23}, + [1380] = {.lex_state = 23}, + [1381] = {.lex_state = 23}, + [1382] = {.lex_state = 23}, + [1383] = {.lex_state = 23}, + [1384] = {.lex_state = 23}, + [1385] = {.lex_state = 23}, + [1386] = {.lex_state = 23}, + [1387] = {.lex_state = 23}, + [1388] = {.lex_state = 23}, + [1389] = {.lex_state = 23}, + [1390] = {.lex_state = 23}, + [1391] = {.lex_state = 23}, + [1392] = {.lex_state = 23}, + [1393] = {.lex_state = 23}, + [1394] = {.lex_state = 23}, + [1395] = {.lex_state = 23}, + [1396] = {.lex_state = 23}, + [1397] = {.lex_state = 23}, + [1398] = {.lex_state = 23}, + [1399] = {.lex_state = 23}, + [1400] = {.lex_state = 23}, + [1401] = {.lex_state = 23}, + [1402] = {.lex_state = 23}, + [1403] = {.lex_state = 23}, + [1404] = {.lex_state = 23}, + [1405] = {.lex_state = 23}, + [1406] = {.lex_state = 23}, + [1407] = {.lex_state = 23}, + [1408] = {.lex_state = 23}, + [1409] = {.lex_state = 23}, + [1410] = {.lex_state = 23}, + [1411] = {.lex_state = 23}, + [1412] = {.lex_state = 23}, + [1413] = {.lex_state = 23}, + [1414] = {.lex_state = 23}, + [1415] = {.lex_state = 23}, + [1416] = {.lex_state = 23}, + [1417] = {.lex_state = 23}, + [1418] = {.lex_state = 23}, + [1419] = {.lex_state = 23}, + [1420] = {.lex_state = 23}, + [1421] = {.lex_state = 23}, + [1422] = {.lex_state = 23}, + [1423] = {.lex_state = 23}, + [1424] = {.lex_state = 23}, + [1425] = {.lex_state = 23}, + [1426] = {.lex_state = 23}, + [1427] = {.lex_state = 23}, + [1428] = {.lex_state = 23}, + [1429] = {.lex_state = 23}, + [1430] = {.lex_state = 23}, + [1431] = {.lex_state = 23}, + [1432] = {.lex_state = 23}, + [1433] = {.lex_state = 23}, + [1434] = {.lex_state = 23}, + [1435] = {.lex_state = 23}, + [1436] = {.lex_state = 23}, + [1437] = {.lex_state = 23}, + [1438] = {.lex_state = 23}, [1439] = {.lex_state = 14}, [1440] = {.lex_state = 14}, [1441] = {.lex_state = 14}, @@ -7529,7 +7721,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1446] = {.lex_state = 14}, [1447] = {.lex_state = 14}, [1448] = {.lex_state = 14}, - [1449] = {.lex_state = 14}, + [1449] = {.lex_state = 13}, [1450] = {.lex_state = 14}, [1451] = {.lex_state = 14}, [1452] = {.lex_state = 14}, @@ -7588,94 +7780,94 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1505] = {.lex_state = 14}, [1506] = {.lex_state = 14}, [1507] = {.lex_state = 14}, - [1508] = {.lex_state = 1}, - [1509] = {.lex_state = 1}, - [1510] = {.lex_state = 1}, - [1511] = {.lex_state = 1}, - [1512] = {.lex_state = 1}, - [1513] = {.lex_state = 1}, - [1514] = {.lex_state = 1}, - [1515] = {.lex_state = 1}, - [1516] = {.lex_state = 1}, - [1517] = {.lex_state = 1}, - [1518] = {.lex_state = 1}, - [1519] = {.lex_state = 1}, - [1520] = {.lex_state = 1}, - [1521] = {.lex_state = 1}, - [1522] = {.lex_state = 1}, - [1523] = {.lex_state = 1}, - [1524] = {.lex_state = 1}, - [1525] = {.lex_state = 1}, - [1526] = {.lex_state = 1}, - [1527] = {.lex_state = 1}, - [1528] = {.lex_state = 1}, - [1529] = {.lex_state = 244}, - [1530] = {.lex_state = 244}, - [1531] = {.lex_state = 244}, - [1532] = {.lex_state = 244}, - [1533] = {.lex_state = 244}, - [1534] = {.lex_state = 244}, - [1535] = {.lex_state = 244}, - [1536] = {.lex_state = 244}, - [1537] = {.lex_state = 244}, - [1538] = {.lex_state = 244}, - [1539] = {.lex_state = 244}, - [1540] = {.lex_state = 244}, - [1541] = {.lex_state = 244}, - [1542] = {.lex_state = 244}, - [1543] = {.lex_state = 244}, - [1544] = {.lex_state = 244}, - [1545] = {.lex_state = 244}, - [1546] = {.lex_state = 244}, - [1547] = {.lex_state = 244}, - [1548] = {.lex_state = 244}, - [1549] = {.lex_state = 244}, - [1550] = {.lex_state = 244}, - [1551] = {.lex_state = 244}, - [1552] = {.lex_state = 244}, - [1553] = {.lex_state = 244}, - [1554] = {.lex_state = 244}, - [1555] = {.lex_state = 244}, - [1556] = {.lex_state = 244}, - [1557] = {.lex_state = 244}, - [1558] = {.lex_state = 244}, - [1559] = {.lex_state = 244}, - [1560] = {.lex_state = 244}, - [1561] = {.lex_state = 244}, - [1562] = {.lex_state = 244}, - [1563] = {.lex_state = 244}, - [1564] = {.lex_state = 244}, - [1565] = {.lex_state = 244}, - [1566] = {.lex_state = 244}, - [1567] = {.lex_state = 244}, - [1568] = {.lex_state = 244}, - [1569] = {.lex_state = 244}, - [1570] = {.lex_state = 244}, - [1571] = {.lex_state = 244}, - [1572] = {.lex_state = 244}, - [1573] = {.lex_state = 244}, - [1574] = {.lex_state = 244}, - [1575] = {.lex_state = 244}, - [1576] = {.lex_state = 244}, - [1577] = {.lex_state = 244}, - [1578] = {.lex_state = 244}, - [1579] = {.lex_state = 244}, - [1580] = {.lex_state = 244}, - [1581] = {.lex_state = 244}, - [1582] = {.lex_state = 244}, - [1583] = {.lex_state = 245}, - [1584] = {.lex_state = 244}, - [1585] = {.lex_state = 244}, - [1586] = {.lex_state = 244}, - [1587] = {.lex_state = 244}, - [1588] = {.lex_state = 244}, - [1589] = {.lex_state = 244}, - [1590] = {.lex_state = 244}, - [1591] = {.lex_state = 244}, - [1592] = {.lex_state = 244}, + [1508] = {.lex_state = 14}, + [1509] = {.lex_state = 14}, + [1510] = {.lex_state = 14}, + [1511] = {.lex_state = 14}, + [1512] = {.lex_state = 14}, + [1513] = {.lex_state = 14}, + [1514] = {.lex_state = 14}, + [1515] = {.lex_state = 14}, + [1516] = {.lex_state = 14}, + [1517] = {.lex_state = 14}, + [1518] = {.lex_state = 14}, + [1519] = {.lex_state = 14}, + [1520] = {.lex_state = 14}, + [1521] = {.lex_state = 14}, + [1522] = {.lex_state = 14}, + [1523] = {.lex_state = 14}, + [1524] = {.lex_state = 14}, + [1525] = {.lex_state = 14}, + [1526] = {.lex_state = 14}, + [1527] = {.lex_state = 14}, + [1528] = {.lex_state = 14}, + [1529] = {.lex_state = 14}, + [1530] = {.lex_state = 14}, + [1531] = {.lex_state = 14}, + [1532] = {.lex_state = 14}, + [1533] = {.lex_state = 14}, + [1534] = {.lex_state = 14}, + [1535] = {.lex_state = 14}, + [1536] = {.lex_state = 14}, + [1537] = {.lex_state = 14}, + [1538] = {.lex_state = 14}, + [1539] = {.lex_state = 14}, + [1540] = {.lex_state = 14}, + [1541] = {.lex_state = 14}, + [1542] = {.lex_state = 14}, + [1543] = {.lex_state = 14}, + [1544] = {.lex_state = 14}, + [1545] = {.lex_state = 14}, + [1546] = {.lex_state = 14}, + [1547] = {.lex_state = 14}, + [1548] = {.lex_state = 14}, + [1549] = {.lex_state = 14}, + [1550] = {.lex_state = 14}, + [1551] = {.lex_state = 14}, + [1552] = {.lex_state = 14}, + [1553] = {.lex_state = 14}, + [1554] = {.lex_state = 14}, + [1555] = {.lex_state = 14}, + [1556] = {.lex_state = 14}, + [1557] = {.lex_state = 14}, + [1558] = {.lex_state = 14}, + [1559] = {.lex_state = 14}, + [1560] = {.lex_state = 14}, + [1561] = {.lex_state = 14}, + [1562] = {.lex_state = 14}, + [1563] = {.lex_state = 14}, + [1564] = {.lex_state = 14}, + [1565] = {.lex_state = 14}, + [1566] = {.lex_state = 14}, + [1567] = {.lex_state = 14}, + [1568] = {.lex_state = 14}, + [1569] = {.lex_state = 14}, + [1570] = {.lex_state = 14}, + [1571] = {.lex_state = 14}, + [1572] = {.lex_state = 1}, + [1573] = {.lex_state = 1}, + [1574] = {.lex_state = 1}, + [1575] = {.lex_state = 1}, + [1576] = {.lex_state = 1}, + [1577] = {.lex_state = 1}, + [1578] = {.lex_state = 1}, + [1579] = {.lex_state = 1}, + [1580] = {.lex_state = 1}, + [1581] = {.lex_state = 1}, + [1582] = {.lex_state = 1}, + [1583] = {.lex_state = 1}, + [1584] = {.lex_state = 1}, + [1585] = {.lex_state = 1}, + [1586] = {.lex_state = 1}, + [1587] = {.lex_state = 1}, + [1588] = {.lex_state = 1}, + [1589] = {.lex_state = 1}, + [1590] = {.lex_state = 1}, + [1591] = {.lex_state = 1}, + [1592] = {.lex_state = 1}, [1593] = {.lex_state = 244}, [1594] = {.lex_state = 244}, - [1595] = {.lex_state = 244}, + [1595] = {.lex_state = 245}, [1596] = {.lex_state = 244}, [1597] = {.lex_state = 244}, [1598] = {.lex_state = 244}, @@ -7734,7 +7926,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1651] = {.lex_state = 244}, [1652] = {.lex_state = 244}, [1653] = {.lex_state = 244}, - [1654] = {.lex_state = 29}, + [1654] = {.lex_state = 244}, [1655] = {.lex_state = 244}, [1656] = {.lex_state = 244}, [1657] = {.lex_state = 244}, @@ -7747,210 +7939,210 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1664] = {.lex_state = 244}, [1665] = {.lex_state = 244}, [1666] = {.lex_state = 244}, - [1667] = {.lex_state = 1}, + [1667] = {.lex_state = 244}, [1668] = {.lex_state = 244}, - [1669] = {.lex_state = 29}, - [1670] = {.lex_state = 29}, - [1671] = {.lex_state = 29}, - [1672] = {.lex_state = 29}, - [1673] = {.lex_state = 29}, - [1674] = {.lex_state = 29}, - [1675] = {.lex_state = 29}, - [1676] = {.lex_state = 29}, - [1677] = {.lex_state = 29}, + [1669] = {.lex_state = 244}, + [1670] = {.lex_state = 244}, + [1671] = {.lex_state = 244}, + [1672] = {.lex_state = 244}, + [1673] = {.lex_state = 244}, + [1674] = {.lex_state = 244}, + [1675] = {.lex_state = 244}, + [1676] = {.lex_state = 244}, + [1677] = {.lex_state = 244}, [1678] = {.lex_state = 244}, [1679] = {.lex_state = 244}, [1680] = {.lex_state = 244}, - [1681] = {.lex_state = 29}, - [1682] = {.lex_state = 29}, - [1683] = {.lex_state = 29}, - [1684] = {.lex_state = 29}, - [1685] = {.lex_state = 29}, - [1686] = {.lex_state = 29}, - [1687] = {.lex_state = 29}, - [1688] = {.lex_state = 29}, - [1689] = {.lex_state = 29}, - [1690] = {.lex_state = 29}, - [1691] = {.lex_state = 29}, - [1692] = {.lex_state = 29}, - [1693] = {.lex_state = 29}, + [1681] = {.lex_state = 244}, + [1682] = {.lex_state = 244}, + [1683] = {.lex_state = 244}, + [1684] = {.lex_state = 244}, + [1685] = {.lex_state = 244}, + [1686] = {.lex_state = 244}, + [1687] = {.lex_state = 244}, + [1688] = {.lex_state = 244}, + [1689] = {.lex_state = 244}, + [1690] = {.lex_state = 244}, + [1691] = {.lex_state = 244}, + [1692] = {.lex_state = 244}, + [1693] = {.lex_state = 244}, [1694] = {.lex_state = 244}, - [1695] = {.lex_state = 29}, - [1696] = {.lex_state = 29}, + [1695] = {.lex_state = 244}, + [1696] = {.lex_state = 244}, [1697] = {.lex_state = 244}, [1698] = {.lex_state = 244}, [1699] = {.lex_state = 244}, [1700] = {.lex_state = 244}, - [1701] = {.lex_state = 29}, + [1701] = {.lex_state = 244}, [1702] = {.lex_state = 244}, - [1703] = {.lex_state = 29}, - [1704] = {.lex_state = 29}, + [1703] = {.lex_state = 244}, + [1704] = {.lex_state = 244}, [1705] = {.lex_state = 244}, - [1706] = {.lex_state = 29}, - [1707] = {.lex_state = 29}, - [1708] = {.lex_state = 29}, - [1709] = {.lex_state = 29}, - [1710] = {.lex_state = 29}, - [1711] = {.lex_state = 29}, - [1712] = {.lex_state = 29}, + [1706] = {.lex_state = 244}, + [1707] = {.lex_state = 244}, + [1708] = {.lex_state = 244}, + [1709] = {.lex_state = 244}, + [1710] = {.lex_state = 244}, + [1711] = {.lex_state = 244}, + [1712] = {.lex_state = 244}, [1713] = {.lex_state = 244}, - [1714] = {.lex_state = 29}, + [1714] = {.lex_state = 244}, [1715] = {.lex_state = 244}, [1716] = {.lex_state = 244}, [1717] = {.lex_state = 244}, - [1718] = {.lex_state = 244}, + [1718] = {.lex_state = 29}, [1719] = {.lex_state = 29}, - [1720] = {.lex_state = 29}, + [1720] = {.lex_state = 244}, [1721] = {.lex_state = 244}, [1722] = {.lex_state = 244}, - [1723] = {.lex_state = 29}, - [1724] = {.lex_state = 29}, - [1725] = {.lex_state = 29}, - [1726] = {.lex_state = 29}, + [1723] = {.lex_state = 244}, + [1724] = {.lex_state = 244}, + [1725] = {.lex_state = 244}, + [1726] = {.lex_state = 244}, [1727] = {.lex_state = 244}, [1728] = {.lex_state = 244}, [1729] = {.lex_state = 244}, [1730] = {.lex_state = 244}, [1731] = {.lex_state = 244}, - [1732] = {.lex_state = 29}, + [1732] = {.lex_state = 244}, [1733] = {.lex_state = 244}, - [1734] = {.lex_state = 29}, - [1735] = {.lex_state = 29}, - [1736] = {.lex_state = 29}, + [1734] = {.lex_state = 244}, + [1735] = {.lex_state = 244}, + [1736] = {.lex_state = 244}, [1737] = {.lex_state = 29}, [1738] = {.lex_state = 29}, [1739] = {.lex_state = 29}, - [1740] = {.lex_state = 244}, + [1740] = {.lex_state = 29}, [1741] = {.lex_state = 29}, [1742] = {.lex_state = 29}, [1743] = {.lex_state = 29}, [1744] = {.lex_state = 29}, [1745] = {.lex_state = 29}, [1746] = {.lex_state = 29}, - [1747] = {.lex_state = 244}, + [1747] = {.lex_state = 29}, [1748] = {.lex_state = 29}, - [1749] = {.lex_state = 244}, + [1749] = {.lex_state = 29}, [1750] = {.lex_state = 244}, [1751] = {.lex_state = 244}, - [1752] = {.lex_state = 29}, - [1753] = {.lex_state = 29}, - [1754] = {.lex_state = 244}, - [1755] = {.lex_state = 244}, + [1752] = {.lex_state = 244}, + [1753] = {.lex_state = 244}, + [1754] = {.lex_state = 29}, + [1755] = {.lex_state = 29}, [1756] = {.lex_state = 244}, - [1757] = {.lex_state = 244}, + [1757] = {.lex_state = 29}, [1758] = {.lex_state = 29}, [1759] = {.lex_state = 29}, - [1760] = {.lex_state = 244}, - [1761] = {.lex_state = 244}, + [1760] = {.lex_state = 29}, + [1761] = {.lex_state = 29}, [1762] = {.lex_state = 29}, [1763] = {.lex_state = 29}, [1764] = {.lex_state = 29}, [1765] = {.lex_state = 29}, [1766] = {.lex_state = 29}, - [1767] = {.lex_state = 244}, + [1767] = {.lex_state = 29}, [1768] = {.lex_state = 29}, [1769] = {.lex_state = 29}, [1770] = {.lex_state = 29}, [1771] = {.lex_state = 29}, [1772] = {.lex_state = 29}, [1773] = {.lex_state = 29}, - [1774] = {.lex_state = 244}, - [1775] = {.lex_state = 244}, + [1774] = {.lex_state = 29}, + [1775] = {.lex_state = 29}, [1776] = {.lex_state = 29}, [1777] = {.lex_state = 29}, [1778] = {.lex_state = 29}, [1779] = {.lex_state = 29}, [1780] = {.lex_state = 244}, - [1781] = {.lex_state = 29}, - [1782] = {.lex_state = 29}, - [1783] = {.lex_state = 244}, - [1784] = {.lex_state = 244}, + [1781] = {.lex_state = 244}, + [1782] = {.lex_state = 244}, + [1783] = {.lex_state = 29}, + [1784] = {.lex_state = 29}, [1785] = {.lex_state = 29}, [1786] = {.lex_state = 29}, [1787] = {.lex_state = 29}, [1788] = {.lex_state = 29}, [1789] = {.lex_state = 29}, [1790] = {.lex_state = 29}, - [1791] = {.lex_state = 29}, + [1791] = {.lex_state = 244}, [1792] = {.lex_state = 29}, [1793] = {.lex_state = 29}, [1794] = {.lex_state = 29}, - [1795] = {.lex_state = 29}, + [1795] = {.lex_state = 244}, [1796] = {.lex_state = 29}, - [1797] = {.lex_state = 29}, - [1798] = {.lex_state = 29}, + [1797] = {.lex_state = 244}, + [1798] = {.lex_state = 244}, [1799] = {.lex_state = 29}, [1800] = {.lex_state = 29}, - [1801] = {.lex_state = 244}, - [1802] = {.lex_state = 244}, - [1803] = {.lex_state = 244}, - [1804] = {.lex_state = 244}, - [1805] = {.lex_state = 244}, - [1806] = {.lex_state = 244}, - [1807] = {.lex_state = 26}, - [1808] = {.lex_state = 26}, - [1809] = {.lex_state = 26}, - [1810] = {.lex_state = 26}, - [1811] = {.lex_state = 26}, - [1812] = {.lex_state = 26}, - [1813] = {.lex_state = 26}, - [1814] = {.lex_state = 26}, - [1815] = {.lex_state = 26}, - [1816] = {.lex_state = 26}, - [1817] = {.lex_state = 26}, - [1818] = {.lex_state = 26}, - [1819] = {.lex_state = 26}, - [1820] = {.lex_state = 26}, - [1821] = {.lex_state = 26}, - [1822] = {.lex_state = 26}, - [1823] = {.lex_state = 26}, - [1824] = {.lex_state = 26}, - [1825] = {.lex_state = 26}, - [1826] = {.lex_state = 26}, - [1827] = {.lex_state = 26}, - [1828] = {.lex_state = 26}, - [1829] = {.lex_state = 26}, - [1830] = {.lex_state = 26}, - [1831] = {.lex_state = 26}, - [1832] = {.lex_state = 26}, - [1833] = {.lex_state = 26}, - [1834] = {.lex_state = 26}, - [1835] = {.lex_state = 26}, - [1836] = {.lex_state = 26}, - [1837] = {.lex_state = 26}, - [1838] = {.lex_state = 26}, - [1839] = {.lex_state = 26}, - [1840] = {.lex_state = 26}, - [1841] = {.lex_state = 26}, - [1842] = {.lex_state = 26}, - [1843] = {.lex_state = 26}, - [1844] = {.lex_state = 26}, - [1845] = {.lex_state = 26}, - [1846] = {.lex_state = 26}, - [1847] = {.lex_state = 26}, - [1848] = {.lex_state = 26}, - [1849] = {.lex_state = 26}, - [1850] = {.lex_state = 26}, - [1851] = {.lex_state = 26}, - [1852] = {.lex_state = 26}, - [1853] = {.lex_state = 26}, - [1854] = {.lex_state = 26}, - [1855] = {.lex_state = 26}, - [1856] = {.lex_state = 26}, - [1857] = {.lex_state = 26}, - [1858] = {.lex_state = 26}, - [1859] = {.lex_state = 26}, - [1860] = {.lex_state = 26}, - [1861] = {.lex_state = 26}, - [1862] = {.lex_state = 26}, - [1863] = {.lex_state = 26}, - [1864] = {.lex_state = 26}, - [1865] = {.lex_state = 26}, - [1866] = {.lex_state = 26}, - [1867] = {.lex_state = 26}, - [1868] = {.lex_state = 26}, - [1869] = {.lex_state = 26}, - [1870] = {.lex_state = 26}, + [1801] = {.lex_state = 29}, + [1802] = {.lex_state = 29}, + [1803] = {.lex_state = 29}, + [1804] = {.lex_state = 29}, + [1805] = {.lex_state = 29}, + [1806] = {.lex_state = 29}, + [1807] = {.lex_state = 29}, + [1808] = {.lex_state = 244}, + [1809] = {.lex_state = 29}, + [1810] = {.lex_state = 29}, + [1811] = {.lex_state = 29}, + [1812] = {.lex_state = 29}, + [1813] = {.lex_state = 244}, + [1814] = {.lex_state = 29}, + [1815] = {.lex_state = 29}, + [1816] = {.lex_state = 29}, + [1817] = {.lex_state = 29}, + [1818] = {.lex_state = 29}, + [1819] = {.lex_state = 29}, + [1820] = {.lex_state = 29}, + [1821] = {.lex_state = 29}, + [1822] = {.lex_state = 29}, + [1823] = {.lex_state = 29}, + [1824] = {.lex_state = 29}, + [1825] = {.lex_state = 29}, + [1826] = {.lex_state = 29}, + [1827] = {.lex_state = 29}, + [1828] = {.lex_state = 29}, + [1829] = {.lex_state = 29}, + [1830] = {.lex_state = 29}, + [1831] = {.lex_state = 29}, + [1832] = {.lex_state = 29}, + [1833] = {.lex_state = 29}, + [1834] = {.lex_state = 29}, + [1835] = {.lex_state = 29}, + [1836] = {.lex_state = 1}, + [1837] = {.lex_state = 244}, + [1838] = {.lex_state = 29}, + [1839] = {.lex_state = 29}, + [1840] = {.lex_state = 244}, + [1841] = {.lex_state = 29}, + [1842] = {.lex_state = 29}, + [1843] = {.lex_state = 29}, + [1844] = {.lex_state = 29}, + [1845] = {.lex_state = 244}, + [1846] = {.lex_state = 244}, + [1847] = {.lex_state = 244}, + [1848] = {.lex_state = 244}, + [1849] = {.lex_state = 244}, + [1850] = {.lex_state = 244}, + [1851] = {.lex_state = 244}, + [1852] = {.lex_state = 244}, + [1853] = {.lex_state = 244}, + [1854] = {.lex_state = 244}, + [1855] = {.lex_state = 244}, + [1856] = {.lex_state = 244}, + [1857] = {.lex_state = 244}, + [1858] = {.lex_state = 244}, + [1859] = {.lex_state = 244}, + [1860] = {.lex_state = 244}, + [1861] = {.lex_state = 244}, + [1862] = {.lex_state = 244}, + [1863] = {.lex_state = 244}, + [1864] = {.lex_state = 244}, + [1865] = {.lex_state = 244}, + [1866] = {.lex_state = 244}, + [1867] = {.lex_state = 244}, + [1868] = {.lex_state = 244}, + [1869] = {.lex_state = 244}, + [1870] = {.lex_state = 244}, [1871] = {.lex_state = 26}, [1872] = {.lex_state = 26}, [1873] = {.lex_state = 26}, @@ -7963,7 +8155,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1880] = {.lex_state = 26}, [1881] = {.lex_state = 26}, [1882] = {.lex_state = 26}, - [1883] = {.lex_state = 1}, + [1883] = {.lex_state = 26}, [1884] = {.lex_state = 26}, [1885] = {.lex_state = 26}, [1886] = {.lex_state = 26}, @@ -8025,8 +8217,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1942] = {.lex_state = 26}, [1943] = {.lex_state = 26}, [1944] = {.lex_state = 26}, - [1945] = {.lex_state = 1}, - [1946] = {.lex_state = 1}, + [1945] = {.lex_state = 26}, + [1946] = {.lex_state = 26}, [1947] = {.lex_state = 26}, [1948] = {.lex_state = 26}, [1949] = {.lex_state = 26}, @@ -8126,251 +8318,251 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2043] = {.lex_state = 26}, [2044] = {.lex_state = 26}, [2045] = {.lex_state = 26}, - [2046] = {.lex_state = 29}, - [2047] = {.lex_state = 29}, - [2048] = {.lex_state = 29}, - [2049] = {.lex_state = 29}, - [2050] = {.lex_state = 29}, - [2051] = {.lex_state = 29}, - [2052] = {.lex_state = 29}, - [2053] = {.lex_state = 29}, - [2054] = {.lex_state = 29}, - [2055] = {.lex_state = 29}, - [2056] = {.lex_state = 29}, - [2057] = {.lex_state = 29}, - [2058] = {.lex_state = 1}, - [2059] = {.lex_state = 1}, - [2060] = {.lex_state = 20}, - [2061] = {.lex_state = 20}, - [2062] = {.lex_state = 20}, - [2063] = {.lex_state = 20}, - [2064] = {.lex_state = 20}, - [2065] = {.lex_state = 20}, - [2066] = {.lex_state = 20}, - [2067] = {.lex_state = 20}, - [2068] = {.lex_state = 20}, - [2069] = {.lex_state = 20}, - [2070] = {.lex_state = 20}, - [2071] = {.lex_state = 20}, - [2072] = {.lex_state = 29}, - [2073] = {.lex_state = 29}, - [2074] = {.lex_state = 29}, - [2075] = {.lex_state = 29}, - [2076] = {.lex_state = 29}, - [2077] = {.lex_state = 29}, - [2078] = {.lex_state = 29}, - [2079] = {.lex_state = 18}, - [2080] = {.lex_state = 18}, - [2081] = {.lex_state = 30}, - [2082] = {.lex_state = 30}, - [2083] = {.lex_state = 18}, - [2084] = {.lex_state = 18}, - [2085] = {.lex_state = 18}, - [2086] = {.lex_state = 18}, - [2087] = {.lex_state = 18}, - [2088] = {.lex_state = 18}, - [2089] = {.lex_state = 30}, - [2090] = {.lex_state = 18}, - [2091] = {.lex_state = 29}, - [2092] = {.lex_state = 30}, - [2093] = {.lex_state = 30}, - [2094] = {.lex_state = 18}, - [2095] = {.lex_state = 18}, - [2096] = {.lex_state = 18}, - [2097] = {.lex_state = 18}, - [2098] = {.lex_state = 30}, - [2099] = {.lex_state = 18}, - [2100] = {.lex_state = 18}, - [2101] = {.lex_state = 30}, - [2102] = {.lex_state = 30}, - [2103] = {.lex_state = 30}, - [2104] = {.lex_state = 30}, - [2105] = {.lex_state = 18}, - [2106] = {.lex_state = 30}, - [2107] = {.lex_state = 18}, - [2108] = {.lex_state = 18}, - [2109] = {.lex_state = 30}, - [2110] = {.lex_state = 30}, - [2111] = {.lex_state = 18}, - [2112] = {.lex_state = 18}, - [2113] = {.lex_state = 18}, - [2114] = {.lex_state = 18}, - [2115] = {.lex_state = 18}, - [2116] = {.lex_state = 18}, - [2117] = {.lex_state = 18}, - [2118] = {.lex_state = 30}, - [2119] = {.lex_state = 18}, - [2120] = {.lex_state = 29}, - [2121] = {.lex_state = 29}, - [2122] = {.lex_state = 29}, - [2123] = {.lex_state = 29}, - [2124] = {.lex_state = 29}, - [2125] = {.lex_state = 29}, - [2126] = {.lex_state = 29}, - [2127] = {.lex_state = 29}, - [2128] = {.lex_state = 29}, - [2129] = {.lex_state = 29}, - [2130] = {.lex_state = 29}, - [2131] = {.lex_state = 29}, - [2132] = {.lex_state = 29}, - [2133] = {.lex_state = 29}, - [2134] = {.lex_state = 29}, - [2135] = {.lex_state = 29}, - [2136] = {.lex_state = 29}, - [2137] = {.lex_state = 29}, - [2138] = {.lex_state = 29}, - [2139] = {.lex_state = 29}, - [2140] = {.lex_state = 29}, - [2141] = {.lex_state = 29}, - [2142] = {.lex_state = 29}, - [2143] = {.lex_state = 29}, - [2144] = {.lex_state = 29}, - [2145] = {.lex_state = 23}, + [2046] = {.lex_state = 26}, + [2047] = {.lex_state = 26}, + [2048] = {.lex_state = 26}, + [2049] = {.lex_state = 26}, + [2050] = {.lex_state = 26}, + [2051] = {.lex_state = 26}, + [2052] = {.lex_state = 26}, + [2053] = {.lex_state = 26}, + [2054] = {.lex_state = 26}, + [2055] = {.lex_state = 26}, + [2056] = {.lex_state = 26}, + [2057] = {.lex_state = 26}, + [2058] = {.lex_state = 26}, + [2059] = {.lex_state = 26}, + [2060] = {.lex_state = 26}, + [2061] = {.lex_state = 26}, + [2062] = {.lex_state = 26}, + [2063] = {.lex_state = 26}, + [2064] = {.lex_state = 26}, + [2065] = {.lex_state = 26}, + [2066] = {.lex_state = 26}, + [2067] = {.lex_state = 26}, + [2068] = {.lex_state = 26}, + [2069] = {.lex_state = 26}, + [2070] = {.lex_state = 26}, + [2071] = {.lex_state = 26}, + [2072] = {.lex_state = 26}, + [2073] = {.lex_state = 26}, + [2074] = {.lex_state = 26}, + [2075] = {.lex_state = 26}, + [2076] = {.lex_state = 26}, + [2077] = {.lex_state = 26}, + [2078] = {.lex_state = 26}, + [2079] = {.lex_state = 26}, + [2080] = {.lex_state = 26}, + [2081] = {.lex_state = 26}, + [2082] = {.lex_state = 26}, + [2083] = {.lex_state = 26}, + [2084] = {.lex_state = 26}, + [2085] = {.lex_state = 26}, + [2086] = {.lex_state = 26}, + [2087] = {.lex_state = 26}, + [2088] = {.lex_state = 26}, + [2089] = {.lex_state = 26}, + [2090] = {.lex_state = 26}, + [2091] = {.lex_state = 26}, + [2092] = {.lex_state = 26}, + [2093] = {.lex_state = 26}, + [2094] = {.lex_state = 26}, + [2095] = {.lex_state = 26}, + [2096] = {.lex_state = 26}, + [2097] = {.lex_state = 26}, + [2098] = {.lex_state = 26}, + [2099] = {.lex_state = 26}, + [2100] = {.lex_state = 26}, + [2101] = {.lex_state = 26}, + [2102] = {.lex_state = 26}, + [2103] = {.lex_state = 26}, + [2104] = {.lex_state = 26}, + [2105] = {.lex_state = 26}, + [2106] = {.lex_state = 26}, + [2107] = {.lex_state = 26}, + [2108] = {.lex_state = 26}, + [2109] = {.lex_state = 26}, + [2110] = {.lex_state = 26}, + [2111] = {.lex_state = 26}, + [2112] = {.lex_state = 26}, + [2113] = {.lex_state = 26}, + [2114] = {.lex_state = 26}, + [2115] = {.lex_state = 26}, + [2116] = {.lex_state = 26}, + [2117] = {.lex_state = 26}, + [2118] = {.lex_state = 26}, + [2119] = {.lex_state = 26}, + [2120] = {.lex_state = 26}, + [2121] = {.lex_state = 26}, + [2122] = {.lex_state = 26}, + [2123] = {.lex_state = 26}, + [2124] = {.lex_state = 26}, + [2125] = {.lex_state = 26}, + [2126] = {.lex_state = 26}, + [2127] = {.lex_state = 26}, + [2128] = {.lex_state = 26}, + [2129] = {.lex_state = 26}, + [2130] = {.lex_state = 26}, + [2131] = {.lex_state = 26}, + [2132] = {.lex_state = 26}, + [2133] = {.lex_state = 26}, + [2134] = {.lex_state = 26}, + [2135] = {.lex_state = 26}, + [2136] = {.lex_state = 26}, + [2137] = {.lex_state = 26}, + [2138] = {.lex_state = 26}, + [2139] = {.lex_state = 26}, + [2140] = {.lex_state = 26}, + [2141] = {.lex_state = 26}, + [2142] = {.lex_state = 26}, + [2143] = {.lex_state = 26}, + [2144] = {.lex_state = 26}, + [2145] = {.lex_state = 26}, [2146] = {.lex_state = 26}, - [2147] = {.lex_state = 29}, - [2148] = {.lex_state = 29}, - [2149] = {.lex_state = 23}, - [2150] = {.lex_state = 23}, - [2151] = {.lex_state = 29}, - [2152] = {.lex_state = 29}, - [2153] = {.lex_state = 23}, - [2154] = {.lex_state = 23}, - [2155] = {.lex_state = 23}, - [2156] = {.lex_state = 23}, - [2157] = {.lex_state = 23}, - [2158] = {.lex_state = 29}, - [2159] = {.lex_state = 23}, - [2160] = {.lex_state = 23}, - [2161] = {.lex_state = 23}, - [2162] = {.lex_state = 23}, - [2163] = {.lex_state = 23}, - [2164] = {.lex_state = 23}, - [2165] = {.lex_state = 23}, - [2166] = {.lex_state = 23}, - [2167] = {.lex_state = 23}, - [2168] = {.lex_state = 23}, - [2169] = {.lex_state = 29}, - [2170] = {.lex_state = 29}, - [2171] = {.lex_state = 29}, - [2172] = {.lex_state = 30}, - [2173] = {.lex_state = 29}, - [2174] = {.lex_state = 29}, - [2175] = {.lex_state = 29}, - [2176] = {.lex_state = 29}, - [2177] = {.lex_state = 30}, - [2178] = {.lex_state = 28}, - [2179] = {.lex_state = 29}, - [2180] = {.lex_state = 29}, - [2181] = {.lex_state = 29}, - [2182] = {.lex_state = 29}, - [2183] = {.lex_state = 29}, - [2184] = {.lex_state = 23}, - [2185] = {.lex_state = 23}, - [2186] = {.lex_state = 23}, - [2187] = {.lex_state = 23}, - [2188] = {.lex_state = 23}, - [2189] = {.lex_state = 23}, - [2190] = {.lex_state = 23}, - [2191] = {.lex_state = 23}, - [2192] = {.lex_state = 23}, - [2193] = {.lex_state = 23}, - [2194] = {.lex_state = 23}, - [2195] = {.lex_state = 23}, - [2196] = {.lex_state = 19}, - [2197] = {.lex_state = 30}, - [2198] = {.lex_state = 20}, - [2199] = {.lex_state = 244}, - [2200] = {.lex_state = 20}, - [2201] = {.lex_state = 1}, - [2202] = {.lex_state = 20}, - [2203] = {.lex_state = 20}, - [2204] = {.lex_state = 20}, - [2205] = {.lex_state = 20}, - [2206] = {.lex_state = 20}, - [2207] = {.lex_state = 20}, - [2208] = {.lex_state = 20}, - [2209] = {.lex_state = 20}, - [2210] = {.lex_state = 20}, - [2211] = {.lex_state = 20}, - [2212] = {.lex_state = 20}, - [2213] = {.lex_state = 20}, - [2214] = {.lex_state = 20}, - [2215] = {.lex_state = 20}, - [2216] = {.lex_state = 20}, - [2217] = {.lex_state = 20}, - [2218] = {.lex_state = 20}, - [2219] = {.lex_state = 20}, - [2220] = {.lex_state = 20}, - [2221] = {.lex_state = 20}, - [2222] = {.lex_state = 20}, - [2223] = {.lex_state = 20}, - [2224] = {.lex_state = 20}, - [2225] = {.lex_state = 20}, - [2226] = {.lex_state = 20}, - [2227] = {.lex_state = 20}, - [2228] = {.lex_state = 20}, - [2229] = {.lex_state = 20}, - [2230] = {.lex_state = 20}, - [2231] = {.lex_state = 20}, - [2232] = {.lex_state = 20}, - [2233] = {.lex_state = 20}, - [2234] = {.lex_state = 20}, - [2235] = {.lex_state = 20}, - [2236] = {.lex_state = 20}, - [2237] = {.lex_state = 20}, + [2147] = {.lex_state = 26}, + [2148] = {.lex_state = 26}, + [2149] = {.lex_state = 26}, + [2150] = {.lex_state = 26}, + [2151] = {.lex_state = 26}, + [2152] = {.lex_state = 26}, + [2153] = {.lex_state = 26}, + [2154] = {.lex_state = 26}, + [2155] = {.lex_state = 26}, + [2156] = {.lex_state = 26}, + [2157] = {.lex_state = 26}, + [2158] = {.lex_state = 26}, + [2159] = {.lex_state = 26}, + [2160] = {.lex_state = 26}, + [2161] = {.lex_state = 26}, + [2162] = {.lex_state = 26}, + [2163] = {.lex_state = 26}, + [2164] = {.lex_state = 26}, + [2165] = {.lex_state = 26}, + [2166] = {.lex_state = 26}, + [2167] = {.lex_state = 26}, + [2168] = {.lex_state = 26}, + [2169] = {.lex_state = 26}, + [2170] = {.lex_state = 26}, + [2171] = {.lex_state = 26}, + [2172] = {.lex_state = 26}, + [2173] = {.lex_state = 26}, + [2174] = {.lex_state = 26}, + [2175] = {.lex_state = 26}, + [2176] = {.lex_state = 26}, + [2177] = {.lex_state = 26}, + [2178] = {.lex_state = 26}, + [2179] = {.lex_state = 26}, + [2180] = {.lex_state = 26}, + [2181] = {.lex_state = 26}, + [2182] = {.lex_state = 26}, + [2183] = {.lex_state = 26}, + [2184] = {.lex_state = 26}, + [2185] = {.lex_state = 26}, + [2186] = {.lex_state = 26}, + [2187] = {.lex_state = 26}, + [2188] = {.lex_state = 26}, + [2189] = {.lex_state = 26}, + [2190] = {.lex_state = 26}, + [2191] = {.lex_state = 26}, + [2192] = {.lex_state = 26}, + [2193] = {.lex_state = 26}, + [2194] = {.lex_state = 26}, + [2195] = {.lex_state = 26}, + [2196] = {.lex_state = 26}, + [2197] = {.lex_state = 26}, + [2198] = {.lex_state = 26}, + [2199] = {.lex_state = 26}, + [2200] = {.lex_state = 26}, + [2201] = {.lex_state = 26}, + [2202] = {.lex_state = 26}, + [2203] = {.lex_state = 26}, + [2204] = {.lex_state = 26}, + [2205] = {.lex_state = 26}, + [2206] = {.lex_state = 26}, + [2207] = {.lex_state = 26}, + [2208] = {.lex_state = 26}, + [2209] = {.lex_state = 26}, + [2210] = {.lex_state = 1}, + [2211] = {.lex_state = 26}, + [2212] = {.lex_state = 26}, + [2213] = {.lex_state = 26}, + [2214] = {.lex_state = 26}, + [2215] = {.lex_state = 26}, + [2216] = {.lex_state = 26}, + [2217] = {.lex_state = 26}, + [2218] = {.lex_state = 26}, + [2219] = {.lex_state = 26}, + [2220] = {.lex_state = 26}, + [2221] = {.lex_state = 26}, + [2222] = {.lex_state = 26}, + [2223] = {.lex_state = 26}, + [2224] = {.lex_state = 26}, + [2225] = {.lex_state = 26}, + [2226] = {.lex_state = 26}, + [2227] = {.lex_state = 26}, + [2228] = {.lex_state = 26}, + [2229] = {.lex_state = 26}, + [2230] = {.lex_state = 26}, + [2231] = {.lex_state = 26}, + [2232] = {.lex_state = 26}, + [2233] = {.lex_state = 26}, + [2234] = {.lex_state = 26}, + [2235] = {.lex_state = 26}, + [2236] = {.lex_state = 26}, + [2237] = {.lex_state = 26}, [2238] = {.lex_state = 1}, - [2239] = {.lex_state = 20}, - [2240] = {.lex_state = 20}, - [2241] = {.lex_state = 20}, - [2242] = {.lex_state = 20}, - [2243] = {.lex_state = 20}, - [2244] = {.lex_state = 20}, - [2245] = {.lex_state = 20}, - [2246] = {.lex_state = 20}, - [2247] = {.lex_state = 20}, - [2248] = {.lex_state = 20}, - [2249] = {.lex_state = 20}, - [2250] = {.lex_state = 20}, - [2251] = {.lex_state = 20}, - [2252] = {.lex_state = 20}, - [2253] = {.lex_state = 20}, - [2254] = {.lex_state = 244}, - [2255] = {.lex_state = 20}, - [2256] = {.lex_state = 20}, - [2257] = {.lex_state = 20}, - [2258] = {.lex_state = 20}, - [2259] = {.lex_state = 20}, - [2260] = {.lex_state = 20}, - [2261] = {.lex_state = 20}, - [2262] = {.lex_state = 1}, - [2263] = {.lex_state = 20}, - [2264] = {.lex_state = 20}, - [2265] = {.lex_state = 20}, - [2266] = {.lex_state = 20}, - [2267] = {.lex_state = 20}, - [2268] = {.lex_state = 20}, - [2269] = {.lex_state = 20}, - [2270] = {.lex_state = 20}, - [2271] = {.lex_state = 20}, - [2272] = {.lex_state = 20}, - [2273] = {.lex_state = 20}, - [2274] = {.lex_state = 20}, - [2275] = {.lex_state = 20}, - [2276] = {.lex_state = 20}, - [2277] = {.lex_state = 20}, - [2278] = {.lex_state = 20}, - [2279] = {.lex_state = 244}, - [2280] = {.lex_state = 20}, - [2281] = {.lex_state = 244}, - [2282] = {.lex_state = 20}, - [2283] = {.lex_state = 20}, - [2284] = {.lex_state = 20}, - [2285] = {.lex_state = 20}, - [2286] = {.lex_state = 20}, - [2287] = {.lex_state = 20}, - [2288] = {.lex_state = 20}, + [2239] = {.lex_state = 1}, + [2240] = {.lex_state = 26}, + [2241] = {.lex_state = 26}, + [2242] = {.lex_state = 26}, + [2243] = {.lex_state = 26}, + [2244] = {.lex_state = 26}, + [2245] = {.lex_state = 26}, + [2246] = {.lex_state = 26}, + [2247] = {.lex_state = 26}, + [2248] = {.lex_state = 26}, + [2249] = {.lex_state = 26}, + [2250] = {.lex_state = 26}, + [2251] = {.lex_state = 26}, + [2252] = {.lex_state = 26}, + [2253] = {.lex_state = 26}, + [2254] = {.lex_state = 26}, + [2255] = {.lex_state = 26}, + [2256] = {.lex_state = 26}, + [2257] = {.lex_state = 26}, + [2258] = {.lex_state = 26}, + [2259] = {.lex_state = 26}, + [2260] = {.lex_state = 26}, + [2261] = {.lex_state = 26}, + [2262] = {.lex_state = 26}, + [2263] = {.lex_state = 26}, + [2264] = {.lex_state = 26}, + [2265] = {.lex_state = 26}, + [2266] = {.lex_state = 26}, + [2267] = {.lex_state = 26}, + [2268] = {.lex_state = 26}, + [2269] = {.lex_state = 26}, + [2270] = {.lex_state = 26}, + [2271] = {.lex_state = 26}, + [2272] = {.lex_state = 26}, + [2273] = {.lex_state = 26}, + [2274] = {.lex_state = 26}, + [2275] = {.lex_state = 29}, + [2276] = {.lex_state = 29}, + [2277] = {.lex_state = 29}, + [2278] = {.lex_state = 29}, + [2279] = {.lex_state = 29}, + [2280] = {.lex_state = 29}, + [2281] = {.lex_state = 29}, + [2282] = {.lex_state = 29}, + [2283] = {.lex_state = 29}, + [2284] = {.lex_state = 29}, + [2285] = {.lex_state = 29}, + [2286] = {.lex_state = 29}, + [2287] = {.lex_state = 1}, + [2288] = {.lex_state = 1}, [2289] = {.lex_state = 20}, - [2290] = {.lex_state = 20}, + [2290] = {.lex_state = 29}, [2291] = {.lex_state = 20}, [2292] = {.lex_state = 20}, [2293] = {.lex_state = 20}, @@ -8380,347 +8572,347 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2297] = {.lex_state = 20}, [2298] = {.lex_state = 20}, [2299] = {.lex_state = 20}, - [2300] = {.lex_state = 244}, - [2301] = {.lex_state = 28}, - [2302] = {.lex_state = 244}, - [2303] = {.lex_state = 26}, - [2304] = {.lex_state = 244}, - [2305] = {.lex_state = 244}, - [2306] = {.lex_state = 244}, - [2307] = {.lex_state = 26}, - [2308] = {.lex_state = 244}, - [2309] = {.lex_state = 244}, - [2310] = {.lex_state = 244}, - [2311] = {.lex_state = 26}, - [2312] = {.lex_state = 244}, - [2313] = {.lex_state = 244}, - [2314] = {.lex_state = 244}, - [2315] = {.lex_state = 244}, - [2316] = {.lex_state = 244}, - [2317] = {.lex_state = 244}, - [2318] = {.lex_state = 244}, - [2319] = {.lex_state = 26}, - [2320] = {.lex_state = 244}, - [2321] = {.lex_state = 244}, - [2322] = {.lex_state = 26}, - [2323] = {.lex_state = 26}, - [2324] = {.lex_state = 244}, - [2325] = {.lex_state = 26}, - [2326] = {.lex_state = 244}, - [2327] = {.lex_state = 26}, - [2328] = {.lex_state = 20}, - [2329] = {.lex_state = 20}, - [2330] = {.lex_state = 244}, - [2331] = {.lex_state = 244}, - [2332] = {.lex_state = 244}, - [2333] = {.lex_state = 26}, - [2334] = {.lex_state = 26}, - [2335] = {.lex_state = 244}, - [2336] = {.lex_state = 244}, - [2337] = {.lex_state = 244}, - [2338] = {.lex_state = 20}, - [2339] = {.lex_state = 244}, - [2340] = {.lex_state = 244}, - [2341] = {.lex_state = 244}, - [2342] = {.lex_state = 244}, - [2343] = {.lex_state = 244}, - [2344] = {.lex_state = 244}, - [2345] = {.lex_state = 26}, - [2346] = {.lex_state = 244}, - [2347] = {.lex_state = 244}, - [2348] = {.lex_state = 244}, - [2349] = {.lex_state = 244}, - [2350] = {.lex_state = 244}, - [2351] = {.lex_state = 26}, - [2352] = {.lex_state = 26}, - [2353] = {.lex_state = 244}, - [2354] = {.lex_state = 244}, - [2355] = {.lex_state = 244}, - [2356] = {.lex_state = 244}, - [2357] = {.lex_state = 1}, - [2358] = {.lex_state = 244}, - [2359] = {.lex_state = 20}, - [2360] = {.lex_state = 20}, - [2361] = {.lex_state = 20}, - [2362] = {.lex_state = 244}, - [2363] = {.lex_state = 20}, - [2364] = {.lex_state = 244}, - [2365] = {.lex_state = 20}, - [2366] = {.lex_state = 20}, - [2367] = {.lex_state = 20}, - [2368] = {.lex_state = 20}, - [2369] = {.lex_state = 20}, - [2370] = {.lex_state = 244}, - [2371] = {.lex_state = 20}, - [2372] = {.lex_state = 20}, - [2373] = {.lex_state = 20}, - [2374] = {.lex_state = 20}, - [2375] = {.lex_state = 20}, - [2376] = {.lex_state = 1}, - [2377] = {.lex_state = 20}, - [2378] = {.lex_state = 20}, + [2300] = {.lex_state = 20}, + [2301] = {.lex_state = 20}, + [2302] = {.lex_state = 29}, + [2303] = {.lex_state = 29}, + [2304] = {.lex_state = 29}, + [2305] = {.lex_state = 29}, + [2306] = {.lex_state = 29}, + [2307] = {.lex_state = 29}, + [2308] = {.lex_state = 30}, + [2309] = {.lex_state = 18}, + [2310] = {.lex_state = 18}, + [2311] = {.lex_state = 29}, + [2312] = {.lex_state = 18}, + [2313] = {.lex_state = 30}, + [2314] = {.lex_state = 18}, + [2315] = {.lex_state = 18}, + [2316] = {.lex_state = 30}, + [2317] = {.lex_state = 18}, + [2318] = {.lex_state = 30}, + [2319] = {.lex_state = 30}, + [2320] = {.lex_state = 18}, + [2321] = {.lex_state = 18}, + [2322] = {.lex_state = 18}, + [2323] = {.lex_state = 18}, + [2324] = {.lex_state = 18}, + [2325] = {.lex_state = 30}, + [2326] = {.lex_state = 18}, + [2327] = {.lex_state = 18}, + [2328] = {.lex_state = 30}, + [2329] = {.lex_state = 30}, + [2330] = {.lex_state = 30}, + [2331] = {.lex_state = 18}, + [2332] = {.lex_state = 18}, + [2333] = {.lex_state = 18}, + [2334] = {.lex_state = 30}, + [2335] = {.lex_state = 30}, + [2336] = {.lex_state = 18}, + [2337] = {.lex_state = 18}, + [2338] = {.lex_state = 18}, + [2339] = {.lex_state = 18}, + [2340] = {.lex_state = 18}, + [2341] = {.lex_state = 18}, + [2342] = {.lex_state = 18}, + [2343] = {.lex_state = 18}, + [2344] = {.lex_state = 18}, + [2345] = {.lex_state = 30}, + [2346] = {.lex_state = 18}, + [2347] = {.lex_state = 30}, + [2348] = {.lex_state = 30}, + [2349] = {.lex_state = 29}, + [2350] = {.lex_state = 29}, + [2351] = {.lex_state = 29}, + [2352] = {.lex_state = 29}, + [2353] = {.lex_state = 29}, + [2354] = {.lex_state = 29}, + [2355] = {.lex_state = 29}, + [2356] = {.lex_state = 29}, + [2357] = {.lex_state = 29}, + [2358] = {.lex_state = 29}, + [2359] = {.lex_state = 29}, + [2360] = {.lex_state = 29}, + [2361] = {.lex_state = 29}, + [2362] = {.lex_state = 29}, + [2363] = {.lex_state = 29}, + [2364] = {.lex_state = 29}, + [2365] = {.lex_state = 29}, + [2366] = {.lex_state = 29}, + [2367] = {.lex_state = 29}, + [2368] = {.lex_state = 29}, + [2369] = {.lex_state = 29}, + [2370] = {.lex_state = 29}, + [2371] = {.lex_state = 29}, + [2372] = {.lex_state = 29}, + [2373] = {.lex_state = 29}, + [2374] = {.lex_state = 23}, + [2375] = {.lex_state = 23}, + [2376] = {.lex_state = 23}, + [2377] = {.lex_state = 23}, + [2378] = {.lex_state = 26}, [2379] = {.lex_state = 23}, - [2380] = {.lex_state = 244}, - [2381] = {.lex_state = 20}, - [2382] = {.lex_state = 244}, - [2383] = {.lex_state = 244}, - [2384] = {.lex_state = 244}, - [2385] = {.lex_state = 20}, - [2386] = {.lex_state = 244}, - [2387] = {.lex_state = 20}, - [2388] = {.lex_state = 20}, - [2389] = {.lex_state = 20}, - [2390] = {.lex_state = 20}, - [2391] = {.lex_state = 20}, - [2392] = {.lex_state = 20}, - [2393] = {.lex_state = 20}, - [2394] = {.lex_state = 244}, - [2395] = {.lex_state = 20}, - [2396] = {.lex_state = 20}, - [2397] = {.lex_state = 20}, - [2398] = {.lex_state = 20}, - [2399] = {.lex_state = 26}, - [2400] = {.lex_state = 244}, - [2401] = {.lex_state = 244}, - [2402] = {.lex_state = 26}, - [2403] = {.lex_state = 26}, - [2404] = {.lex_state = 26}, - [2405] = {.lex_state = 26}, - [2406] = {.lex_state = 26}, - [2407] = {.lex_state = 26}, - [2408] = {.lex_state = 26}, - [2409] = {.lex_state = 26}, - [2410] = {.lex_state = 26}, - [2411] = {.lex_state = 26}, - [2412] = {.lex_state = 26}, - [2413] = {.lex_state = 26}, - [2414] = {.lex_state = 26}, - [2415] = {.lex_state = 26}, - [2416] = {.lex_state = 26}, - [2417] = {.lex_state = 26}, - [2418] = {.lex_state = 26}, - [2419] = {.lex_state = 26}, - [2420] = {.lex_state = 26}, - [2421] = {.lex_state = 26}, - [2422] = {.lex_state = 26}, - [2423] = {.lex_state = 26}, - [2424] = {.lex_state = 26}, - [2425] = {.lex_state = 26}, - [2426] = {.lex_state = 26}, - [2427] = {.lex_state = 26}, - [2428] = {.lex_state = 26}, - [2429] = {.lex_state = 26}, - [2430] = {.lex_state = 26}, - [2431] = {.lex_state = 26}, - [2432] = {.lex_state = 26}, - [2433] = {.lex_state = 26}, - [2434] = {.lex_state = 26}, - [2435] = {.lex_state = 26}, - [2436] = {.lex_state = 26}, - [2437] = {.lex_state = 26}, - [2438] = {.lex_state = 26}, - [2439] = {.lex_state = 26}, - [2440] = {.lex_state = 26}, - [2441] = {.lex_state = 26}, - [2442] = {.lex_state = 26}, - [2443] = {.lex_state = 26}, - [2444] = {.lex_state = 26}, - [2445] = {.lex_state = 26}, - [2446] = {.lex_state = 26}, - [2447] = {.lex_state = 26}, - [2448] = {.lex_state = 26}, - [2449] = {.lex_state = 26}, - [2450] = {.lex_state = 26}, - [2451] = {.lex_state = 26}, - [2452] = {.lex_state = 26}, - [2453] = {.lex_state = 26}, - [2454] = {.lex_state = 26}, - [2455] = {.lex_state = 26}, - [2456] = {.lex_state = 26}, - [2457] = {.lex_state = 26}, - [2458] = {.lex_state = 26}, - [2459] = {.lex_state = 26}, - [2460] = {.lex_state = 26}, - [2461] = {.lex_state = 26}, - [2462] = {.lex_state = 26}, - [2463] = {.lex_state = 26}, - [2464] = {.lex_state = 26}, - [2465] = {.lex_state = 26}, - [2466] = {.lex_state = 26}, - [2467] = {.lex_state = 26}, - [2468] = {.lex_state = 26}, - [2469] = {.lex_state = 26}, - [2470] = {.lex_state = 26}, - [2471] = {.lex_state = 26}, - [2472] = {.lex_state = 26}, - [2473] = {.lex_state = 26}, - [2474] = {.lex_state = 26}, - [2475] = {.lex_state = 26}, - [2476] = {.lex_state = 26}, - [2477] = {.lex_state = 26}, - [2478] = {.lex_state = 26}, - [2479] = {.lex_state = 26}, - [2480] = {.lex_state = 26}, - [2481] = {.lex_state = 26}, - [2482] = {.lex_state = 26}, - [2483] = {.lex_state = 26}, - [2484] = {.lex_state = 26}, - [2485] = {.lex_state = 26}, - [2486] = {.lex_state = 26}, - [2487] = {.lex_state = 26}, - [2488] = {.lex_state = 26}, - [2489] = {.lex_state = 26}, - [2490] = {.lex_state = 26}, - [2491] = {.lex_state = 26}, - [2492] = {.lex_state = 26}, - [2493] = {.lex_state = 26}, - [2494] = {.lex_state = 26}, - [2495] = {.lex_state = 26}, - [2496] = {.lex_state = 26}, - [2497] = {.lex_state = 26}, - [2498] = {.lex_state = 26}, - [2499] = {.lex_state = 26}, - [2500] = {.lex_state = 26}, - [2501] = {.lex_state = 26}, - [2502] = {.lex_state = 26}, - [2503] = {.lex_state = 26}, - [2504] = {.lex_state = 26}, - [2505] = {.lex_state = 26}, - [2506] = {.lex_state = 26}, - [2507] = {.lex_state = 26}, - [2508] = {.lex_state = 26}, - [2509] = {.lex_state = 26}, - [2510] = {.lex_state = 26}, - [2511] = {.lex_state = 26}, - [2512] = {.lex_state = 26}, - [2513] = {.lex_state = 26}, - [2514] = {.lex_state = 26}, - [2515] = {.lex_state = 26}, - [2516] = {.lex_state = 26}, - [2517] = {.lex_state = 26}, - [2518] = {.lex_state = 26}, - [2519] = {.lex_state = 26}, - [2520] = {.lex_state = 26}, - [2521] = {.lex_state = 26}, - [2522] = {.lex_state = 26}, - [2523] = {.lex_state = 26}, - [2524] = {.lex_state = 26}, - [2525] = {.lex_state = 26}, - [2526] = {.lex_state = 26}, - [2527] = {.lex_state = 26}, - [2528] = {.lex_state = 26}, - [2529] = {.lex_state = 26}, - [2530] = {.lex_state = 26}, - [2531] = {.lex_state = 26}, - [2532] = {.lex_state = 26}, - [2533] = {.lex_state = 26}, - [2534] = {.lex_state = 26}, - [2535] = {.lex_state = 26}, - [2536] = {.lex_state = 26}, + [2380] = {.lex_state = 23}, + [2381] = {.lex_state = 23}, + [2382] = {.lex_state = 29}, + [2383] = {.lex_state = 23}, + [2384] = {.lex_state = 29}, + [2385] = {.lex_state = 23}, + [2386] = {.lex_state = 29}, + [2387] = {.lex_state = 23}, + [2388] = {.lex_state = 23}, + [2389] = {.lex_state = 23}, + [2390] = {.lex_state = 23}, + [2391] = {.lex_state = 29}, + [2392] = {.lex_state = 29}, + [2393] = {.lex_state = 23}, + [2394] = {.lex_state = 23}, + [2395] = {.lex_state = 23}, + [2396] = {.lex_state = 23}, + [2397] = {.lex_state = 23}, + [2398] = {.lex_state = 29}, + [2399] = {.lex_state = 29}, + [2400] = {.lex_state = 29}, + [2401] = {.lex_state = 30}, + [2402] = {.lex_state = 29}, + [2403] = {.lex_state = 28}, + [2404] = {.lex_state = 29}, + [2405] = {.lex_state = 29}, + [2406] = {.lex_state = 30}, + [2407] = {.lex_state = 29}, + [2408] = {.lex_state = 29}, + [2409] = {.lex_state = 29}, + [2410] = {.lex_state = 29}, + [2411] = {.lex_state = 29}, + [2412] = {.lex_state = 29}, + [2413] = {.lex_state = 23}, + [2414] = {.lex_state = 23}, + [2415] = {.lex_state = 23}, + [2416] = {.lex_state = 23}, + [2417] = {.lex_state = 23}, + [2418] = {.lex_state = 23}, + [2419] = {.lex_state = 23}, + [2420] = {.lex_state = 23}, + [2421] = {.lex_state = 23}, + [2422] = {.lex_state = 23}, + [2423] = {.lex_state = 23}, + [2424] = {.lex_state = 23}, + [2425] = {.lex_state = 20}, + [2426] = {.lex_state = 30}, + [2427] = {.lex_state = 19}, + [2428] = {.lex_state = 244}, + [2429] = {.lex_state = 20}, + [2430] = {.lex_state = 20}, + [2431] = {.lex_state = 20}, + [2432] = {.lex_state = 20}, + [2433] = {.lex_state = 20}, + [2434] = {.lex_state = 20}, + [2435] = {.lex_state = 20}, + [2436] = {.lex_state = 20}, + [2437] = {.lex_state = 20}, + [2438] = {.lex_state = 20}, + [2439] = {.lex_state = 20}, + [2440] = {.lex_state = 20}, + [2441] = {.lex_state = 20}, + [2442] = {.lex_state = 20}, + [2443] = {.lex_state = 20}, + [2444] = {.lex_state = 20}, + [2445] = {.lex_state = 20}, + [2446] = {.lex_state = 20}, + [2447] = {.lex_state = 20}, + [2448] = {.lex_state = 244}, + [2449] = {.lex_state = 20}, + [2450] = {.lex_state = 20}, + [2451] = {.lex_state = 20}, + [2452] = {.lex_state = 20}, + [2453] = {.lex_state = 20}, + [2454] = {.lex_state = 1}, + [2455] = {.lex_state = 20}, + [2456] = {.lex_state = 20}, + [2457] = {.lex_state = 20}, + [2458] = {.lex_state = 20}, + [2459] = {.lex_state = 20}, + [2460] = {.lex_state = 20}, + [2461] = {.lex_state = 20}, + [2462] = {.lex_state = 20}, + [2463] = {.lex_state = 20}, + [2464] = {.lex_state = 20}, + [2465] = {.lex_state = 20}, + [2466] = {.lex_state = 20}, + [2467] = {.lex_state = 20}, + [2468] = {.lex_state = 20}, + [2469] = {.lex_state = 20}, + [2470] = {.lex_state = 20}, + [2471] = {.lex_state = 20}, + [2472] = {.lex_state = 20}, + [2473] = {.lex_state = 20}, + [2474] = {.lex_state = 20}, + [2475] = {.lex_state = 20}, + [2476] = {.lex_state = 20}, + [2477] = {.lex_state = 20}, + [2478] = {.lex_state = 20}, + [2479] = {.lex_state = 20}, + [2480] = {.lex_state = 20}, + [2481] = {.lex_state = 20}, + [2482] = {.lex_state = 20}, + [2483] = {.lex_state = 20}, + [2484] = {.lex_state = 20}, + [2485] = {.lex_state = 20}, + [2486] = {.lex_state = 20}, + [2487] = {.lex_state = 20}, + [2488] = {.lex_state = 20}, + [2489] = {.lex_state = 20}, + [2490] = {.lex_state = 20}, + [2491] = {.lex_state = 20}, + [2492] = {.lex_state = 20}, + [2493] = {.lex_state = 20}, + [2494] = {.lex_state = 1}, + [2495] = {.lex_state = 1}, + [2496] = {.lex_state = 20}, + [2497] = {.lex_state = 20}, + [2498] = {.lex_state = 20}, + [2499] = {.lex_state = 20}, + [2500] = {.lex_state = 20}, + [2501] = {.lex_state = 20}, + [2502] = {.lex_state = 20}, + [2503] = {.lex_state = 20}, + [2504] = {.lex_state = 20}, + [2505] = {.lex_state = 20}, + [2506] = {.lex_state = 20}, + [2507] = {.lex_state = 20}, + [2508] = {.lex_state = 20}, + [2509] = {.lex_state = 20}, + [2510] = {.lex_state = 20}, + [2511] = {.lex_state = 20}, + [2512] = {.lex_state = 20}, + [2513] = {.lex_state = 20}, + [2514] = {.lex_state = 20}, + [2515] = {.lex_state = 244}, + [2516] = {.lex_state = 20}, + [2517] = {.lex_state = 20}, + [2518] = {.lex_state = 20}, + [2519] = {.lex_state = 20}, + [2520] = {.lex_state = 244}, + [2521] = {.lex_state = 244}, + [2522] = {.lex_state = 20}, + [2523] = {.lex_state = 20}, + [2524] = {.lex_state = 20}, + [2525] = {.lex_state = 20}, + [2526] = {.lex_state = 20}, + [2527] = {.lex_state = 20}, + [2528] = {.lex_state = 20}, + [2529] = {.lex_state = 20}, + [2530] = {.lex_state = 28}, + [2531] = {.lex_state = 244}, + [2532] = {.lex_state = 20}, + [2533] = {.lex_state = 244}, + [2534] = {.lex_state = 244}, + [2535] = {.lex_state = 244}, + [2536] = {.lex_state = 244}, [2537] = {.lex_state = 26}, [2538] = {.lex_state = 26}, - [2539] = {.lex_state = 26}, + [2539] = {.lex_state = 244}, [2540] = {.lex_state = 26}, - [2541] = {.lex_state = 26}, - [2542] = {.lex_state = 26}, - [2543] = {.lex_state = 26}, - [2544] = {.lex_state = 26}, - [2545] = {.lex_state = 26}, + [2541] = {.lex_state = 244}, + [2542] = {.lex_state = 244}, + [2543] = {.lex_state = 244}, + [2544] = {.lex_state = 244}, + [2545] = {.lex_state = 244}, [2546] = {.lex_state = 26}, [2547] = {.lex_state = 26}, - [2548] = {.lex_state = 26}, - [2549] = {.lex_state = 26}, - [2550] = {.lex_state = 26}, - [2551] = {.lex_state = 26}, - [2552] = {.lex_state = 26}, - [2553] = {.lex_state = 26}, - [2554] = {.lex_state = 26}, - [2555] = {.lex_state = 26}, - [2556] = {.lex_state = 26}, + [2548] = {.lex_state = 244}, + [2549] = {.lex_state = 244}, + [2550] = {.lex_state = 244}, + [2551] = {.lex_state = 244}, + [2552] = {.lex_state = 244}, + [2553] = {.lex_state = 244}, + [2554] = {.lex_state = 244}, + [2555] = {.lex_state = 244}, + [2556] = {.lex_state = 244}, [2557] = {.lex_state = 26}, [2558] = {.lex_state = 26}, - [2559] = {.lex_state = 26}, + [2559] = {.lex_state = 244}, [2560] = {.lex_state = 26}, - [2561] = {.lex_state = 26}, + [2561] = {.lex_state = 244}, [2562] = {.lex_state = 26}, - [2563] = {.lex_state = 26}, - [2564] = {.lex_state = 26}, - [2565] = {.lex_state = 26}, - [2566] = {.lex_state = 26}, - [2567] = {.lex_state = 26}, - [2568] = {.lex_state = 26}, + [2563] = {.lex_state = 244}, + [2564] = {.lex_state = 244}, + [2565] = {.lex_state = 244}, + [2566] = {.lex_state = 244}, + [2567] = {.lex_state = 244}, + [2568] = {.lex_state = 244}, [2569] = {.lex_state = 26}, - [2570] = {.lex_state = 26}, - [2571] = {.lex_state = 26}, - [2572] = {.lex_state = 26}, + [2570] = {.lex_state = 244}, + [2571] = {.lex_state = 20}, + [2572] = {.lex_state = 244}, [2573] = {.lex_state = 26}, - [2574] = {.lex_state = 26}, + [2574] = {.lex_state = 244}, [2575] = {.lex_state = 26}, [2576] = {.lex_state = 26}, - [2577] = {.lex_state = 26}, - [2578] = {.lex_state = 26}, - [2579] = {.lex_state = 26}, - [2580] = {.lex_state = 26}, - [2581] = {.lex_state = 26}, - [2582] = {.lex_state = 26}, - [2583] = {.lex_state = 26}, - [2584] = {.lex_state = 26}, - [2585] = {.lex_state = 26}, - [2586] = {.lex_state = 26}, - [2587] = {.lex_state = 26}, - [2588] = {.lex_state = 26}, - [2589] = {.lex_state = 26}, - [2590] = {.lex_state = 26}, - [2591] = {.lex_state = 26}, - [2592] = {.lex_state = 26}, - [2593] = {.lex_state = 26}, - [2594] = {.lex_state = 26}, - [2595] = {.lex_state = 26}, - [2596] = {.lex_state = 26}, - [2597] = {.lex_state = 26}, - [2598] = {.lex_state = 26}, - [2599] = {.lex_state = 26}, - [2600] = {.lex_state = 26}, - [2601] = {.lex_state = 26}, - [2602] = {.lex_state = 26}, - [2603] = {.lex_state = 26}, - [2604] = {.lex_state = 26}, - [2605] = {.lex_state = 26}, - [2606] = {.lex_state = 26}, - [2607] = {.lex_state = 26}, - [2608] = {.lex_state = 26}, - [2609] = {.lex_state = 26}, - [2610] = {.lex_state = 26}, + [2577] = {.lex_state = 20}, + [2578] = {.lex_state = 244}, + [2579] = {.lex_state = 244}, + [2580] = {.lex_state = 244}, + [2581] = {.lex_state = 244}, + [2582] = {.lex_state = 244}, + [2583] = {.lex_state = 244}, + [2584] = {.lex_state = 20}, + [2585] = {.lex_state = 20}, + [2586] = {.lex_state = 20}, + [2587] = {.lex_state = 20}, + [2588] = {.lex_state = 20}, + [2589] = {.lex_state = 1}, + [2590] = {.lex_state = 20}, + [2591] = {.lex_state = 244}, + [2592] = {.lex_state = 20}, + [2593] = {.lex_state = 20}, + [2594] = {.lex_state = 23}, + [2595] = {.lex_state = 1}, + [2596] = {.lex_state = 20}, + [2597] = {.lex_state = 20}, + [2598] = {.lex_state = 20}, + [2599] = {.lex_state = 20}, + [2600] = {.lex_state = 244}, + [2601] = {.lex_state = 20}, + [2602] = {.lex_state = 20}, + [2603] = {.lex_state = 244}, + [2604] = {.lex_state = 20}, + [2605] = {.lex_state = 20}, + [2606] = {.lex_state = 20}, + [2607] = {.lex_state = 20}, + [2608] = {.lex_state = 20}, + [2609] = {.lex_state = 244}, + [2610] = {.lex_state = 244}, [2611] = {.lex_state = 244}, - [2612] = {.lex_state = 26}, - [2613] = {.lex_state = 26}, - [2614] = {.lex_state = 26}, - [2615] = {.lex_state = 26}, - [2616] = {.lex_state = 26}, - [2617] = {.lex_state = 26}, - [2618] = {.lex_state = 26}, - [2619] = {.lex_state = 26}, - [2620] = {.lex_state = 26}, - [2621] = {.lex_state = 26}, - [2622] = {.lex_state = 26}, - [2623] = {.lex_state = 26}, - [2624] = {.lex_state = 26}, - [2625] = {.lex_state = 26}, - [2626] = {.lex_state = 26}, - [2627] = {.lex_state = 26}, - [2628] = {.lex_state = 26}, + [2612] = {.lex_state = 20}, + [2613] = {.lex_state = 244}, + [2614] = {.lex_state = 20}, + [2615] = {.lex_state = 20}, + [2616] = {.lex_state = 20}, + [2617] = {.lex_state = 244}, + [2618] = {.lex_state = 244}, + [2619] = {.lex_state = 20}, + [2620] = {.lex_state = 20}, + [2621] = {.lex_state = 20}, + [2622] = {.lex_state = 244}, + [2623] = {.lex_state = 20}, + [2624] = {.lex_state = 244}, + [2625] = {.lex_state = 20}, + [2626] = {.lex_state = 20}, + [2627] = {.lex_state = 244}, + [2628] = {.lex_state = 244}, [2629] = {.lex_state = 26}, - [2630] = {.lex_state = 26}, + [2630] = {.lex_state = 244}, [2631] = {.lex_state = 26}, - [2632] = {.lex_state = 26}, - [2633] = {.lex_state = 26}, - [2634] = {.lex_state = 26}, - [2635] = {.lex_state = 26}, - [2636] = {.lex_state = 26}, - [2637] = {.lex_state = 26}, - [2638] = {.lex_state = 26}, - [2639] = {.lex_state = 26}, - [2640] = {.lex_state = 26}, + [2632] = {.lex_state = 244}, + [2633] = {.lex_state = 244}, + [2634] = {.lex_state = 244}, + [2635] = {.lex_state = 244}, + [2636] = {.lex_state = 244}, + [2637] = {.lex_state = 244}, + [2638] = {.lex_state = 244}, + [2639] = {.lex_state = 244}, + [2640] = {.lex_state = 244}, [2641] = {.lex_state = 26}, [2642] = {.lex_state = 26}, [2643] = {.lex_state = 26}, @@ -8766,7 +8958,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2683] = {.lex_state = 26}, [2684] = {.lex_state = 26}, [2685] = {.lex_state = 26}, - [2686] = {.lex_state = 31}, + [2686] = {.lex_state = 26}, [2687] = {.lex_state = 26}, [2688] = {.lex_state = 26}, [2689] = {.lex_state = 26}, @@ -8790,245 +8982,245 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2707] = {.lex_state = 26}, [2708] = {.lex_state = 26}, [2709] = {.lex_state = 26}, - [2710] = {.lex_state = 244}, - [2711] = {.lex_state = 244}, + [2710] = {.lex_state = 26}, + [2711] = {.lex_state = 26}, [2712] = {.lex_state = 26}, - [2713] = {.lex_state = 244}, - [2714] = {.lex_state = 244}, - [2715] = {.lex_state = 244}, - [2716] = {.lex_state = 244}, + [2713] = {.lex_state = 26}, + [2714] = {.lex_state = 26}, + [2715] = {.lex_state = 26}, + [2716] = {.lex_state = 26}, [2717] = {.lex_state = 26}, - [2718] = {.lex_state = 244}, - [2719] = {.lex_state = 244}, - [2720] = {.lex_state = 244}, - [2721] = {.lex_state = 244}, - [2722] = {.lex_state = 244}, - [2723] = {.lex_state = 244}, - [2724] = {.lex_state = 244}, - [2725] = {.lex_state = 244}, - [2726] = {.lex_state = 244}, - [2727] = {.lex_state = 244}, - [2728] = {.lex_state = 244}, - [2729] = {.lex_state = 244}, - [2730] = {.lex_state = 244}, - [2731] = {.lex_state = 244}, - [2732] = {.lex_state = 244}, - [2733] = {.lex_state = 244}, - [2734] = {.lex_state = 244}, - [2735] = {.lex_state = 244}, - [2736] = {.lex_state = 244}, - [2737] = {.lex_state = 244}, - [2738] = {.lex_state = 244}, - [2739] = {.lex_state = 244}, - [2740] = {.lex_state = 244}, - [2741] = {.lex_state = 244}, - [2742] = {.lex_state = 244}, - [2743] = {.lex_state = 244}, - [2744] = {.lex_state = 244}, - [2745] = {.lex_state = 244}, - [2746] = {.lex_state = 244}, - [2747] = {.lex_state = 31}, - [2748] = {.lex_state = 244}, - [2749] = {.lex_state = 244}, - [2750] = {.lex_state = 244}, - [2751] = {.lex_state = 244}, - [2752] = {.lex_state = 244}, - [2753] = {.lex_state = 244}, - [2754] = {.lex_state = 244}, - [2755] = {.lex_state = 244}, - [2756] = {.lex_state = 244}, - [2757] = {.lex_state = 244}, - [2758] = {.lex_state = 244}, - [2759] = {.lex_state = 244}, - [2760] = {.lex_state = 244}, - [2761] = {.lex_state = 244}, - [2762] = {.lex_state = 244}, - [2763] = {.lex_state = 244}, - [2764] = {.lex_state = 244}, - [2765] = {.lex_state = 244}, - [2766] = {.lex_state = 244}, - [2767] = {.lex_state = 244}, - [2768] = {.lex_state = 244}, - [2769] = {.lex_state = 244}, - [2770] = {.lex_state = 244}, - [2771] = {.lex_state = 244}, - [2772] = {.lex_state = 244}, - [2773] = {.lex_state = 244}, - [2774] = {.lex_state = 244}, - [2775] = {.lex_state = 244}, - [2776] = {.lex_state = 244}, - [2777] = {.lex_state = 244}, - [2778] = {.lex_state = 244}, - [2779] = {.lex_state = 244}, - [2780] = {.lex_state = 244}, - [2781] = {.lex_state = 244}, - [2782] = {.lex_state = 244}, - [2783] = {.lex_state = 244}, - [2784] = {.lex_state = 244}, - [2785] = {.lex_state = 244}, - [2786] = {.lex_state = 244}, - [2787] = {.lex_state = 244}, - [2788] = {.lex_state = 244}, - [2789] = {.lex_state = 244}, - [2790] = {.lex_state = 244}, - [2791] = {.lex_state = 244}, - [2792] = {.lex_state = 244}, - [2793] = {.lex_state = 244}, - [2794] = {.lex_state = 244}, - [2795] = {.lex_state = 244}, - [2796] = {.lex_state = 244}, - [2797] = {.lex_state = 244}, - [2798] = {.lex_state = 244}, - [2799] = {.lex_state = 244}, - [2800] = {.lex_state = 244}, - [2801] = {.lex_state = 244}, - [2802] = {.lex_state = 244}, - [2803] = {.lex_state = 244}, - [2804] = {.lex_state = 244}, - [2805] = {.lex_state = 244}, - [2806] = {.lex_state = 244}, - [2807] = {.lex_state = 244}, - [2808] = {.lex_state = 244}, - [2809] = {.lex_state = 244}, - [2810] = {.lex_state = 244}, - [2811] = {.lex_state = 244}, - [2812] = {.lex_state = 244}, - [2813] = {.lex_state = 244}, - [2814] = {.lex_state = 244}, - [2815] = {.lex_state = 244}, - [2816] = {.lex_state = 244}, - [2817] = {.lex_state = 244}, - [2818] = {.lex_state = 244}, - [2819] = {.lex_state = 244}, - [2820] = {.lex_state = 244}, - [2821] = {.lex_state = 244}, - [2822] = {.lex_state = 244}, - [2823] = {.lex_state = 244}, - [2824] = {.lex_state = 244}, - [2825] = {.lex_state = 244}, - [2826] = {.lex_state = 244}, - [2827] = {.lex_state = 244}, - [2828] = {.lex_state = 244}, - [2829] = {.lex_state = 244}, - [2830] = {.lex_state = 244}, - [2831] = {.lex_state = 244}, - [2832] = {.lex_state = 244}, - [2833] = {.lex_state = 244}, - [2834] = {.lex_state = 244}, - [2835] = {.lex_state = 244}, - [2836] = {.lex_state = 244}, - [2837] = {.lex_state = 244}, - [2838] = {.lex_state = 244}, - [2839] = {.lex_state = 244}, - [2840] = {.lex_state = 244}, - [2841] = {.lex_state = 244}, - [2842] = {.lex_state = 244}, - [2843] = {.lex_state = 244}, - [2844] = {.lex_state = 244}, - [2845] = {.lex_state = 244}, - [2846] = {.lex_state = 244}, - [2847] = {.lex_state = 244}, - [2848] = {.lex_state = 244}, - [2849] = {.lex_state = 244}, - [2850] = {.lex_state = 244}, - [2851] = {.lex_state = 244}, - [2852] = {.lex_state = 244}, - [2853] = {.lex_state = 244}, - [2854] = {.lex_state = 244}, - [2855] = {.lex_state = 244}, - [2856] = {.lex_state = 244}, - [2857] = {.lex_state = 244}, - [2858] = {.lex_state = 244}, - [2859] = {.lex_state = 244}, - [2860] = {.lex_state = 244}, - [2861] = {.lex_state = 244}, - [2862] = {.lex_state = 244}, - [2863] = {.lex_state = 244}, - [2864] = {.lex_state = 244}, - [2865] = {.lex_state = 244}, - [2866] = {.lex_state = 244}, - [2867] = {.lex_state = 244}, - [2868] = {.lex_state = 244}, - [2869] = {.lex_state = 244}, - [2870] = {.lex_state = 244}, - [2871] = {.lex_state = 244}, - [2872] = {.lex_state = 244}, - [2873] = {.lex_state = 244}, - [2874] = {.lex_state = 244}, - [2875] = {.lex_state = 244}, - [2876] = {.lex_state = 244}, - [2877] = {.lex_state = 244}, - [2878] = {.lex_state = 244}, - [2879] = {.lex_state = 244}, - [2880] = {.lex_state = 244}, - [2881] = {.lex_state = 244}, - [2882] = {.lex_state = 244}, - [2883] = {.lex_state = 244}, - [2884] = {.lex_state = 244}, - [2885] = {.lex_state = 244}, - [2886] = {.lex_state = 244}, - [2887] = {.lex_state = 244}, - [2888] = {.lex_state = 244}, - [2889] = {.lex_state = 244}, - [2890] = {.lex_state = 244}, - [2891] = {.lex_state = 244}, - [2892] = {.lex_state = 244}, - [2893] = {.lex_state = 244}, - [2894] = {.lex_state = 244}, - [2895] = {.lex_state = 244}, - [2896] = {.lex_state = 244}, - [2897] = {.lex_state = 244}, - [2898] = {.lex_state = 244}, - [2899] = {.lex_state = 244}, - [2900] = {.lex_state = 244}, - [2901] = {.lex_state = 244}, - [2902] = {.lex_state = 244}, - [2903] = {.lex_state = 244}, - [2904] = {.lex_state = 244}, - [2905] = {.lex_state = 244}, - [2906] = {.lex_state = 244}, - [2907] = {.lex_state = 244}, - [2908] = {.lex_state = 244}, - [2909] = {.lex_state = 244}, - [2910] = {.lex_state = 244}, - [2911] = {.lex_state = 244}, - [2912] = {.lex_state = 244}, - [2913] = {.lex_state = 244}, - [2914] = {.lex_state = 244}, - [2915] = {.lex_state = 244}, - [2916] = {.lex_state = 244}, - [2917] = {.lex_state = 244}, - [2918] = {.lex_state = 244}, - [2919] = {.lex_state = 244}, - [2920] = {.lex_state = 244}, - [2921] = {.lex_state = 244}, - [2922] = {.lex_state = 244}, - [2923] = {.lex_state = 244}, - [2924] = {.lex_state = 244}, - [2925] = {.lex_state = 244}, - [2926] = {.lex_state = 244}, - [2927] = {.lex_state = 244}, - [2928] = {.lex_state = 244}, - [2929] = {.lex_state = 244}, - [2930] = {.lex_state = 244}, - [2931] = {.lex_state = 244}, - [2932] = {.lex_state = 244}, - [2933] = {.lex_state = 244}, - [2934] = {.lex_state = 244}, - [2935] = {.lex_state = 244}, - [2936] = {.lex_state = 244}, - [2937] = {.lex_state = 244}, - [2938] = {.lex_state = 244}, - [2939] = {.lex_state = 244}, - [2940] = {.lex_state = 244}, - [2941] = {.lex_state = 244}, - [2942] = {.lex_state = 244}, - [2943] = {.lex_state = 244}, - [2944] = {.lex_state = 244}, - [2945] = {.lex_state = 244}, - [2946] = {.lex_state = 244}, - [2947] = {.lex_state = 244}, - [2948] = {.lex_state = 244}, + [2718] = {.lex_state = 26}, + [2719] = {.lex_state = 26}, + [2720] = {.lex_state = 26}, + [2721] = {.lex_state = 26}, + [2722] = {.lex_state = 26}, + [2723] = {.lex_state = 26}, + [2724] = {.lex_state = 26}, + [2725] = {.lex_state = 26}, + [2726] = {.lex_state = 26}, + [2727] = {.lex_state = 26}, + [2728] = {.lex_state = 26}, + [2729] = {.lex_state = 26}, + [2730] = {.lex_state = 26}, + [2731] = {.lex_state = 26}, + [2732] = {.lex_state = 26}, + [2733] = {.lex_state = 26}, + [2734] = {.lex_state = 26}, + [2735] = {.lex_state = 26}, + [2736] = {.lex_state = 26}, + [2737] = {.lex_state = 26}, + [2738] = {.lex_state = 26}, + [2739] = {.lex_state = 26}, + [2740] = {.lex_state = 26}, + [2741] = {.lex_state = 26}, + [2742] = {.lex_state = 26}, + [2743] = {.lex_state = 26}, + [2744] = {.lex_state = 26}, + [2745] = {.lex_state = 26}, + [2746] = {.lex_state = 26}, + [2747] = {.lex_state = 26}, + [2748] = {.lex_state = 26}, + [2749] = {.lex_state = 26}, + [2750] = {.lex_state = 26}, + [2751] = {.lex_state = 26}, + [2752] = {.lex_state = 26}, + [2753] = {.lex_state = 26}, + [2754] = {.lex_state = 26}, + [2755] = {.lex_state = 26}, + [2756] = {.lex_state = 26}, + [2757] = {.lex_state = 26}, + [2758] = {.lex_state = 26}, + [2759] = {.lex_state = 26}, + [2760] = {.lex_state = 26}, + [2761] = {.lex_state = 26}, + [2762] = {.lex_state = 26}, + [2763] = {.lex_state = 26}, + [2764] = {.lex_state = 26}, + [2765] = {.lex_state = 26}, + [2766] = {.lex_state = 26}, + [2767] = {.lex_state = 26}, + [2768] = {.lex_state = 26}, + [2769] = {.lex_state = 26}, + [2770] = {.lex_state = 26}, + [2771] = {.lex_state = 26}, + [2772] = {.lex_state = 26}, + [2773] = {.lex_state = 26}, + [2774] = {.lex_state = 26}, + [2775] = {.lex_state = 26}, + [2776] = {.lex_state = 26}, + [2777] = {.lex_state = 26}, + [2778] = {.lex_state = 26}, + [2779] = {.lex_state = 26}, + [2780] = {.lex_state = 26}, + [2781] = {.lex_state = 26}, + [2782] = {.lex_state = 26}, + [2783] = {.lex_state = 26}, + [2784] = {.lex_state = 26}, + [2785] = {.lex_state = 26}, + [2786] = {.lex_state = 26}, + [2787] = {.lex_state = 26}, + [2788] = {.lex_state = 26}, + [2789] = {.lex_state = 26}, + [2790] = {.lex_state = 26}, + [2791] = {.lex_state = 26}, + [2792] = {.lex_state = 26}, + [2793] = {.lex_state = 26}, + [2794] = {.lex_state = 26}, + [2795] = {.lex_state = 26}, + [2796] = {.lex_state = 26}, + [2797] = {.lex_state = 26}, + [2798] = {.lex_state = 26}, + [2799] = {.lex_state = 26}, + [2800] = {.lex_state = 26}, + [2801] = {.lex_state = 26}, + [2802] = {.lex_state = 26}, + [2803] = {.lex_state = 26}, + [2804] = {.lex_state = 26}, + [2805] = {.lex_state = 26}, + [2806] = {.lex_state = 26}, + [2807] = {.lex_state = 26}, + [2808] = {.lex_state = 26}, + [2809] = {.lex_state = 26}, + [2810] = {.lex_state = 26}, + [2811] = {.lex_state = 26}, + [2812] = {.lex_state = 26}, + [2813] = {.lex_state = 26}, + [2814] = {.lex_state = 26}, + [2815] = {.lex_state = 26}, + [2816] = {.lex_state = 26}, + [2817] = {.lex_state = 26}, + [2818] = {.lex_state = 26}, + [2819] = {.lex_state = 26}, + [2820] = {.lex_state = 26}, + [2821] = {.lex_state = 26}, + [2822] = {.lex_state = 26}, + [2823] = {.lex_state = 26}, + [2824] = {.lex_state = 26}, + [2825] = {.lex_state = 26}, + [2826] = {.lex_state = 26}, + [2827] = {.lex_state = 26}, + [2828] = {.lex_state = 26}, + [2829] = {.lex_state = 26}, + [2830] = {.lex_state = 26}, + [2831] = {.lex_state = 26}, + [2832] = {.lex_state = 26}, + [2833] = {.lex_state = 26}, + [2834] = {.lex_state = 26}, + [2835] = {.lex_state = 26}, + [2836] = {.lex_state = 26}, + [2837] = {.lex_state = 26}, + [2838] = {.lex_state = 26}, + [2839] = {.lex_state = 26}, + [2840] = {.lex_state = 26}, + [2841] = {.lex_state = 26}, + [2842] = {.lex_state = 26}, + [2843] = {.lex_state = 26}, + [2844] = {.lex_state = 26}, + [2845] = {.lex_state = 26}, + [2846] = {.lex_state = 26}, + [2847] = {.lex_state = 26}, + [2848] = {.lex_state = 26}, + [2849] = {.lex_state = 26}, + [2850] = {.lex_state = 26}, + [2851] = {.lex_state = 26}, + [2852] = {.lex_state = 26}, + [2853] = {.lex_state = 26}, + [2854] = {.lex_state = 26}, + [2855] = {.lex_state = 26}, + [2856] = {.lex_state = 26}, + [2857] = {.lex_state = 26}, + [2858] = {.lex_state = 26}, + [2859] = {.lex_state = 26}, + [2860] = {.lex_state = 26}, + [2861] = {.lex_state = 26}, + [2862] = {.lex_state = 26}, + [2863] = {.lex_state = 26}, + [2864] = {.lex_state = 26}, + [2865] = {.lex_state = 26}, + [2866] = {.lex_state = 26}, + [2867] = {.lex_state = 26}, + [2868] = {.lex_state = 26}, + [2869] = {.lex_state = 26}, + [2870] = {.lex_state = 26}, + [2871] = {.lex_state = 26}, + [2872] = {.lex_state = 26}, + [2873] = {.lex_state = 26}, + [2874] = {.lex_state = 26}, + [2875] = {.lex_state = 26}, + [2876] = {.lex_state = 26}, + [2877] = {.lex_state = 26}, + [2878] = {.lex_state = 26}, + [2879] = {.lex_state = 26}, + [2880] = {.lex_state = 26}, + [2881] = {.lex_state = 26}, + [2882] = {.lex_state = 26}, + [2883] = {.lex_state = 26}, + [2884] = {.lex_state = 26}, + [2885] = {.lex_state = 26}, + [2886] = {.lex_state = 26}, + [2887] = {.lex_state = 26}, + [2888] = {.lex_state = 26}, + [2889] = {.lex_state = 26}, + [2890] = {.lex_state = 26}, + [2891] = {.lex_state = 26}, + [2892] = {.lex_state = 26}, + [2893] = {.lex_state = 26}, + [2894] = {.lex_state = 26}, + [2895] = {.lex_state = 26}, + [2896] = {.lex_state = 26}, + [2897] = {.lex_state = 26}, + [2898] = {.lex_state = 26}, + [2899] = {.lex_state = 26}, + [2900] = {.lex_state = 26}, + [2901] = {.lex_state = 26}, + [2902] = {.lex_state = 26}, + [2903] = {.lex_state = 26}, + [2904] = {.lex_state = 26}, + [2905] = {.lex_state = 26}, + [2906] = {.lex_state = 26}, + [2907] = {.lex_state = 26}, + [2908] = {.lex_state = 26}, + [2909] = {.lex_state = 26}, + [2910] = {.lex_state = 26}, + [2911] = {.lex_state = 26}, + [2912] = {.lex_state = 26}, + [2913] = {.lex_state = 26}, + [2914] = {.lex_state = 26}, + [2915] = {.lex_state = 26}, + [2916] = {.lex_state = 26}, + [2917] = {.lex_state = 26}, + [2918] = {.lex_state = 26}, + [2919] = {.lex_state = 26}, + [2920] = {.lex_state = 26}, + [2921] = {.lex_state = 26}, + [2922] = {.lex_state = 26}, + [2923] = {.lex_state = 26}, + [2924] = {.lex_state = 26}, + [2925] = {.lex_state = 26}, + [2926] = {.lex_state = 26}, + [2927] = {.lex_state = 26}, + [2928] = {.lex_state = 26}, + [2929] = {.lex_state = 26}, + [2930] = {.lex_state = 26}, + [2931] = {.lex_state = 26}, + [2932] = {.lex_state = 26}, + [2933] = {.lex_state = 26}, + [2934] = {.lex_state = 26}, + [2935] = {.lex_state = 26}, + [2936] = {.lex_state = 26}, + [2937] = {.lex_state = 26}, + [2938] = {.lex_state = 26}, + [2939] = {.lex_state = 26}, + [2940] = {.lex_state = 26}, + [2941] = {.lex_state = 31}, + [2942] = {.lex_state = 26}, + [2943] = {.lex_state = 26}, + [2944] = {.lex_state = 26}, + [2945] = {.lex_state = 26}, + [2946] = {.lex_state = 26}, + [2947] = {.lex_state = 26}, + [2948] = {.lex_state = 26}, [2949] = {.lex_state = 244}, [2950] = {.lex_state = 244}, [2951] = {.lex_state = 244}, @@ -9044,7 +9236,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2961] = {.lex_state = 244}, [2962] = {.lex_state = 244}, [2963] = {.lex_state = 244}, - [2964] = {.lex_state = 35}, + [2964] = {.lex_state = 244}, [2965] = {.lex_state = 244}, [2966] = {.lex_state = 244}, [2967] = {.lex_state = 244}, @@ -9103,7 +9295,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3020] = {.lex_state = 244}, [3021] = {.lex_state = 244}, [3022] = {.lex_state = 244}, - [3023] = {.lex_state = 35}, + [3023] = {.lex_state = 244}, [3024] = {.lex_state = 244}, [3025] = {.lex_state = 244}, [3026] = {.lex_state = 244}, @@ -9130,7 +9322,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3047] = {.lex_state = 244}, [3048] = {.lex_state = 244}, [3049] = {.lex_state = 244}, - [3050] = {.lex_state = 35}, + [3050] = {.lex_state = 244}, [3051] = {.lex_state = 244}, [3052] = {.lex_state = 244}, [3053] = {.lex_state = 244}, @@ -9155,8 +9347,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3072] = {.lex_state = 244}, [3073] = {.lex_state = 244}, [3074] = {.lex_state = 244}, - [3075] = {.lex_state = 35}, - [3076] = {.lex_state = 35}, + [3075] = {.lex_state = 244}, + [3076] = {.lex_state = 244}, [3077] = {.lex_state = 244}, [3078] = {.lex_state = 244}, [3079] = {.lex_state = 244}, @@ -9180,7 +9372,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3097] = {.lex_state = 244}, [3098] = {.lex_state = 244}, [3099] = {.lex_state = 244}, - [3100] = {.lex_state = 35}, + [3100] = {.lex_state = 244}, [3101] = {.lex_state = 244}, [3102] = {.lex_state = 244}, [3103] = {.lex_state = 244}, @@ -9205,7 +9397,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3122] = {.lex_state = 244}, [3123] = {.lex_state = 244}, [3124] = {.lex_state = 244}, - [3125] = {.lex_state = 35}, + [3125] = {.lex_state = 244}, [3126] = {.lex_state = 244}, [3127] = {.lex_state = 244}, [3128] = {.lex_state = 244}, @@ -9215,7 +9407,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3132] = {.lex_state = 244}, [3133] = {.lex_state = 244}, [3134] = {.lex_state = 244}, - [3135] = {.lex_state = 35}, + [3135] = {.lex_state = 244}, [3136] = {.lex_state = 244}, [3137] = {.lex_state = 244}, [3138] = {.lex_state = 244}, @@ -9230,7 +9422,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3147] = {.lex_state = 244}, [3148] = {.lex_state = 244}, [3149] = {.lex_state = 244}, - [3150] = {.lex_state = 35}, + [3150] = {.lex_state = 244}, [3151] = {.lex_state = 244}, [3152] = {.lex_state = 244}, [3153] = {.lex_state = 244}, @@ -9255,7 +9447,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3172] = {.lex_state = 244}, [3173] = {.lex_state = 244}, [3174] = {.lex_state = 244}, - [3175] = {.lex_state = 35}, + [3175] = {.lex_state = 244}, [3176] = {.lex_state = 244}, [3177] = {.lex_state = 244}, [3178] = {.lex_state = 244}, @@ -9263,32 +9455,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3180] = {.lex_state = 244}, [3181] = {.lex_state = 244}, [3182] = {.lex_state = 244}, - [3183] = {.lex_state = 21}, + [3183] = {.lex_state = 244}, [3184] = {.lex_state = 244}, - [3185] = {.lex_state = 21}, + [3185] = {.lex_state = 244}, [3186] = {.lex_state = 244}, [3187] = {.lex_state = 244}, [3188] = {.lex_state = 244}, [3189] = {.lex_state = 244}, - [3190] = {.lex_state = 21}, + [3190] = {.lex_state = 244}, [3191] = {.lex_state = 244}, [3192] = {.lex_state = 244}, - [3193] = {.lex_state = 21}, + [3193] = {.lex_state = 244}, [3194] = {.lex_state = 244}, [3195] = {.lex_state = 244}, - [3196] = {.lex_state = 21}, + [3196] = {.lex_state = 244}, [3197] = {.lex_state = 244}, [3198] = {.lex_state = 244}, [3199] = {.lex_state = 244}, [3200] = {.lex_state = 244}, [3201] = {.lex_state = 244}, - [3202] = {.lex_state = 21}, + [3202] = {.lex_state = 244}, [3203] = {.lex_state = 244}, - [3204] = {.lex_state = 21}, + [3204] = {.lex_state = 244}, [3205] = {.lex_state = 244}, [3206] = {.lex_state = 244}, [3207] = {.lex_state = 244}, - [3208] = {.lex_state = 21}, + [3208] = {.lex_state = 244}, [3209] = {.lex_state = 244}, [3210] = {.lex_state = 244}, [3211] = {.lex_state = 244}, @@ -9297,11 +9489,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3214] = {.lex_state = 244}, [3215] = {.lex_state = 244}, [3216] = {.lex_state = 244}, - [3217] = {.lex_state = 21}, + [3217] = {.lex_state = 244}, [3218] = {.lex_state = 244}, [3219] = {.lex_state = 244}, - [3220] = {.lex_state = 21}, - [3221] = {.lex_state = 21}, + [3220] = {.lex_state = 244}, + [3221] = {.lex_state = 244}, [3222] = {.lex_state = 244}, [3223] = {.lex_state = 244}, [3224] = {.lex_state = 244}, @@ -9310,7 +9502,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3227] = {.lex_state = 244}, [3228] = {.lex_state = 244}, [3229] = {.lex_state = 244}, - [3230] = {.lex_state = 21}, + [3230] = {.lex_state = 244}, [3231] = {.lex_state = 244}, [3232] = {.lex_state = 244}, [3233] = {.lex_state = 244}, @@ -9319,10 +9511,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3236] = {.lex_state = 244}, [3237] = {.lex_state = 244}, [3238] = {.lex_state = 244}, - [3239] = {.lex_state = 21}, + [3239] = {.lex_state = 244}, [3240] = {.lex_state = 244}, [3241] = {.lex_state = 244}, - [3242] = {.lex_state = 21}, + [3242] = {.lex_state = 244}, [3243] = {.lex_state = 244}, [3244] = {.lex_state = 244}, [3245] = {.lex_state = 244}, @@ -9335,7 +9527,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3252] = {.lex_state = 244}, [3253] = {.lex_state = 244}, [3254] = {.lex_state = 244}, - [3255] = {.lex_state = 21}, + [3255] = {.lex_state = 244}, [3256] = {.lex_state = 244}, [3257] = {.lex_state = 244}, [3258] = {.lex_state = 244}, @@ -9343,25 +9535,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3260] = {.lex_state = 244}, [3261] = {.lex_state = 244}, [3262] = {.lex_state = 244}, - [3263] = {.lex_state = 244}, + [3263] = {.lex_state = 35}, [3264] = {.lex_state = 244}, [3265] = {.lex_state = 244}, - [3266] = {.lex_state = 21}, + [3266] = {.lex_state = 244}, [3267] = {.lex_state = 244}, [3268] = {.lex_state = 244}, - [3269] = {.lex_state = 1}, + [3269] = {.lex_state = 244}, [3270] = {.lex_state = 244}, [3271] = {.lex_state = 244}, [3272] = {.lex_state = 244}, [3273] = {.lex_state = 244}, [3274] = {.lex_state = 244}, - [3275] = {.lex_state = 21}, + [3275] = {.lex_state = 244}, [3276] = {.lex_state = 244}, [3277] = {.lex_state = 244}, - [3278] = {.lex_state = 21}, + [3278] = {.lex_state = 244}, [3279] = {.lex_state = 244}, [3280] = {.lex_state = 244}, - [3281] = {.lex_state = 21}, + [3281] = {.lex_state = 244}, [3282] = {.lex_state = 244}, [3283] = {.lex_state = 244}, [3284] = {.lex_state = 244}, @@ -9370,113 +9562,354 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3287] = {.lex_state = 244}, [3288] = {.lex_state = 244}, [3289] = {.lex_state = 244}, - [3290] = {.lex_state = 21}, - [3291] = {.lex_state = 21}, + [3290] = {.lex_state = 35}, + [3291] = {.lex_state = 244}, [3292] = {.lex_state = 244}, [3293] = {.lex_state = 244}, [3294] = {.lex_state = 244}, - [3295] = {.lex_state = 32}, - [3296] = {.lex_state = 32}, - [3297] = {.lex_state = 36}, - [3298] = {.lex_state = 36}, - [3299] = {.lex_state = 36}, - [3300] = {.lex_state = 36}, - [3301] = {.lex_state = 36}, - [3302] = {.lex_state = 36}, - [3303] = {.lex_state = 36}, - [3304] = {.lex_state = 36}, - [3305] = {.lex_state = 34}, - [3306] = {.lex_state = 36}, - [3307] = {.lex_state = 36}, - [3308] = {.lex_state = 21}, - [3309] = {.lex_state = 32}, - [3310] = {.lex_state = 21}, - [3311] = {.lex_state = 21}, - [3312] = {.lex_state = 21}, - [3313] = {.lex_state = 21}, - [3314] = {.lex_state = 21}, - [3315] = {.lex_state = 21}, - [3316] = {.lex_state = 21}, - [3317] = {.lex_state = 21}, - [3318] = {.lex_state = 33}, - [3319] = {.lex_state = 33}, - [3320] = {.lex_state = 33}, + [3295] = {.lex_state = 244}, + [3296] = {.lex_state = 244}, + [3297] = {.lex_state = 244}, + [3298] = {.lex_state = 244}, + [3299] = {.lex_state = 244}, + [3300] = {.lex_state = 244}, + [3301] = {.lex_state = 244}, + [3302] = {.lex_state = 244}, + [3303] = {.lex_state = 244}, + [3304] = {.lex_state = 244}, + [3305] = {.lex_state = 244}, + [3306] = {.lex_state = 244}, + [3307] = {.lex_state = 244}, + [3308] = {.lex_state = 244}, + [3309] = {.lex_state = 244}, + [3310] = {.lex_state = 31}, + [3311] = {.lex_state = 244}, + [3312] = {.lex_state = 244}, + [3313] = {.lex_state = 35}, + [3314] = {.lex_state = 244}, + [3315] = {.lex_state = 244}, + [3316] = {.lex_state = 35}, + [3317] = {.lex_state = 244}, + [3318] = {.lex_state = 244}, + [3319] = {.lex_state = 244}, + [3320] = {.lex_state = 244}, [3321] = {.lex_state = 244}, - [3322] = {.lex_state = 33}, - [3323] = {.lex_state = 33}, - [3324] = {.lex_state = 32}, - [3325] = {.lex_state = 33}, - [3326] = {.lex_state = 33}, - [3327] = {.lex_state = 33}, - [3328] = {.lex_state = 23}, - [3329] = {.lex_state = 33}, - [3330] = {.lex_state = 33}, - [3331] = {.lex_state = 33}, - [3332] = {.lex_state = 33}, - [3333] = {.lex_state = 20}, - [3334] = {.lex_state = 20}, + [3322] = {.lex_state = 244}, + [3323] = {.lex_state = 244}, + [3324] = {.lex_state = 244}, + [3325] = {.lex_state = 35}, + [3326] = {.lex_state = 244}, + [3327] = {.lex_state = 244}, + [3328] = {.lex_state = 244}, + [3329] = {.lex_state = 244}, + [3330] = {.lex_state = 244}, + [3331] = {.lex_state = 244}, + [3332] = {.lex_state = 244}, + [3333] = {.lex_state = 244}, + [3334] = {.lex_state = 244}, [3335] = {.lex_state = 244}, - [3336] = {.lex_state = 20}, - [3337] = {.lex_state = 20}, - [3338] = {.lex_state = 20}, - [3339] = {.lex_state = 20}, - [3340] = {.lex_state = 20}, - [3341] = {.lex_state = 20}, - [3342] = {.lex_state = 20}, - [3343] = {.lex_state = 20}, - [3344] = {.lex_state = 20}, - [3345] = {.lex_state = 20}, - [3346] = {.lex_state = 20}, - [3347] = {.lex_state = 20}, - [3348] = {.lex_state = 20}, - [3349] = {.lex_state = 20}, - [3350] = {.lex_state = 20}, - [3351] = {.lex_state = 20}, - [3352] = {.lex_state = 20}, - [3353] = {.lex_state = 20}, - [3354] = {.lex_state = 20}, + [3336] = {.lex_state = 244}, + [3337] = {.lex_state = 244}, + [3338] = {.lex_state = 244}, + [3339] = {.lex_state = 244}, + [3340] = {.lex_state = 244}, + [3341] = {.lex_state = 35}, + [3342] = {.lex_state = 244}, + [3343] = {.lex_state = 244}, + [3344] = {.lex_state = 244}, + [3345] = {.lex_state = 244}, + [3346] = {.lex_state = 244}, + [3347] = {.lex_state = 244}, + [3348] = {.lex_state = 244}, + [3349] = {.lex_state = 244}, + [3350] = {.lex_state = 244}, + [3351] = {.lex_state = 244}, + [3352] = {.lex_state = 244}, + [3353] = {.lex_state = 244}, + [3354] = {.lex_state = 244}, [3355] = {.lex_state = 244}, - [3356] = {.lex_state = 26}, + [3356] = {.lex_state = 244}, [3357] = {.lex_state = 244}, [3358] = {.lex_state = 244}, - [3359] = {.lex_state = 23}, + [3359] = {.lex_state = 244}, [3360] = {.lex_state = 244}, [3361] = {.lex_state = 244}, [3362] = {.lex_state = 244}, [3363] = {.lex_state = 244}, - [3364] = {.lex_state = 26}, - [3365] = {.lex_state = 23}, - [3366] = {.lex_state = 244}, - [3367] = {.lex_state = 23}, + [3364] = {.lex_state = 244}, + [3365] = {.lex_state = 244}, + [3366] = {.lex_state = 35}, + [3367] = {.lex_state = 244}, [3368] = {.lex_state = 244}, [3369] = {.lex_state = 244}, [3370] = {.lex_state = 244}, - [3371] = {.lex_state = 23}, + [3371] = {.lex_state = 244}, [3372] = {.lex_state = 244}, [3373] = {.lex_state = 244}, [3374] = {.lex_state = 244}, - [3375] = {.lex_state = 26}, + [3375] = {.lex_state = 244}, [3376] = {.lex_state = 244}, [3377] = {.lex_state = 244}, [3378] = {.lex_state = 244}, [3379] = {.lex_state = 244}, [3380] = {.lex_state = 244}, - [3381] = {.lex_state = 37}, - [3382] = {.lex_state = 23}, + [3381] = {.lex_state = 244}, + [3382] = {.lex_state = 244}, [3383] = {.lex_state = 244}, - [3384] = {.lex_state = 23}, - [3385] = {.lex_state = 244}, + [3384] = {.lex_state = 244}, + [3385] = {.lex_state = 35}, [3386] = {.lex_state = 244}, [3387] = {.lex_state = 244}, [3388] = {.lex_state = 244}, - [3389] = {.lex_state = 23}, - [3390] = {.lex_state = 23}, - [3391] = {.lex_state = 23}, - [3392] = {.lex_state = 23}, - [3393] = {.lex_state = 26}, - [3394] = {.lex_state = 23}, + [3389] = {.lex_state = 244}, + [3390] = {.lex_state = 244}, + [3391] = {.lex_state = 35}, + [3392] = {.lex_state = 244}, + [3393] = {.lex_state = 244}, + [3394] = {.lex_state = 244}, [3395] = {.lex_state = 244}, [3396] = {.lex_state = 244}, + [3397] = {.lex_state = 244}, + [3398] = {.lex_state = 244}, + [3399] = {.lex_state = 244}, + [3400] = {.lex_state = 244}, + [3401] = {.lex_state = 244}, + [3402] = {.lex_state = 244}, + [3403] = {.lex_state = 244}, + [3404] = {.lex_state = 244}, + [3405] = {.lex_state = 35}, + [3406] = {.lex_state = 244}, + [3407] = {.lex_state = 244}, + [3408] = {.lex_state = 244}, + [3409] = {.lex_state = 244}, + [3410] = {.lex_state = 21}, + [3411] = {.lex_state = 244}, + [3412] = {.lex_state = 244}, + [3413] = {.lex_state = 244}, + [3414] = {.lex_state = 244}, + [3415] = {.lex_state = 244}, + [3416] = {.lex_state = 21}, + [3417] = {.lex_state = 244}, + [3418] = {.lex_state = 244}, + [3419] = {.lex_state = 244}, + [3420] = {.lex_state = 244}, + [3421] = {.lex_state = 244}, + [3422] = {.lex_state = 244}, + [3423] = {.lex_state = 21}, + [3424] = {.lex_state = 244}, + [3425] = {.lex_state = 244}, + [3426] = {.lex_state = 21}, + [3427] = {.lex_state = 244}, + [3428] = {.lex_state = 244}, + [3429] = {.lex_state = 244}, + [3430] = {.lex_state = 244}, + [3431] = {.lex_state = 244}, + [3432] = {.lex_state = 244}, + [3433] = {.lex_state = 244}, + [3434] = {.lex_state = 244}, + [3435] = {.lex_state = 21}, + [3436] = {.lex_state = 244}, + [3437] = {.lex_state = 244}, + [3438] = {.lex_state = 244}, + [3439] = {.lex_state = 244}, + [3440] = {.lex_state = 244}, + [3441] = {.lex_state = 244}, + [3442] = {.lex_state = 244}, + [3443] = {.lex_state = 244}, + [3444] = {.lex_state = 244}, + [3445] = {.lex_state = 21}, + [3446] = {.lex_state = 244}, + [3447] = {.lex_state = 244}, + [3448] = {.lex_state = 21}, + [3449] = {.lex_state = 244}, + [3450] = {.lex_state = 244}, + [3451] = {.lex_state = 244}, + [3452] = {.lex_state = 244}, + [3453] = {.lex_state = 244}, + [3454] = {.lex_state = 244}, + [3455] = {.lex_state = 21}, + [3456] = {.lex_state = 244}, + [3457] = {.lex_state = 21}, + [3458] = {.lex_state = 244}, + [3459] = {.lex_state = 244}, + [3460] = {.lex_state = 244}, + [3461] = {.lex_state = 244}, + [3462] = {.lex_state = 244}, + [3463] = {.lex_state = 244}, + [3464] = {.lex_state = 21}, + [3465] = {.lex_state = 244}, + [3466] = {.lex_state = 21}, + [3467] = {.lex_state = 244}, + [3468] = {.lex_state = 244}, + [3469] = {.lex_state = 21}, + [3470] = {.lex_state = 244}, + [3471] = {.lex_state = 21}, + [3472] = {.lex_state = 244}, + [3473] = {.lex_state = 244}, + [3474] = {.lex_state = 244}, + [3475] = {.lex_state = 244}, + [3476] = {.lex_state = 244}, + [3477] = {.lex_state = 244}, + [3478] = {.lex_state = 244}, + [3479] = {.lex_state = 244}, + [3480] = {.lex_state = 244}, + [3481] = {.lex_state = 21}, + [3482] = {.lex_state = 244}, + [3483] = {.lex_state = 21}, + [3484] = {.lex_state = 244}, + [3485] = {.lex_state = 244}, + [3486] = {.lex_state = 244}, + [3487] = {.lex_state = 244}, + [3488] = {.lex_state = 244}, + [3489] = {.lex_state = 244}, + [3490] = {.lex_state = 244}, + [3491] = {.lex_state = 244}, + [3492] = {.lex_state = 244}, + [3493] = {.lex_state = 244}, + [3494] = {.lex_state = 244}, + [3495] = {.lex_state = 244}, + [3496] = {.lex_state = 21}, + [3497] = {.lex_state = 244}, + [3498] = {.lex_state = 244}, + [3499] = {.lex_state = 244}, + [3500] = {.lex_state = 244}, + [3501] = {.lex_state = 244}, + [3502] = {.lex_state = 244}, + [3503] = {.lex_state = 244}, + [3504] = {.lex_state = 244}, + [3505] = {.lex_state = 244}, + [3506] = {.lex_state = 244}, + [3507] = {.lex_state = 244}, + [3508] = {.lex_state = 244}, + [3509] = {.lex_state = 244}, + [3510] = {.lex_state = 244}, + [3511] = {.lex_state = 244}, + [3512] = {.lex_state = 244}, + [3513] = {.lex_state = 244}, + [3514] = {.lex_state = 21}, + [3515] = {.lex_state = 21}, + [3516] = {.lex_state = 244}, + [3517] = {.lex_state = 244}, + [3518] = {.lex_state = 21}, + [3519] = {.lex_state = 244}, + [3520] = {.lex_state = 21}, + [3521] = {.lex_state = 1}, + [3522] = {.lex_state = 21}, + [3523] = {.lex_state = 244}, + [3524] = {.lex_state = 36}, + [3525] = {.lex_state = 36}, + [3526] = {.lex_state = 36}, + [3527] = {.lex_state = 36}, + [3528] = {.lex_state = 36}, + [3529] = {.lex_state = 32}, + [3530] = {.lex_state = 32}, + [3531] = {.lex_state = 36}, + [3532] = {.lex_state = 36}, + [3533] = {.lex_state = 36}, + [3534] = {.lex_state = 36}, + [3535] = {.lex_state = 36}, + [3536] = {.lex_state = 34}, + [3537] = {.lex_state = 21}, + [3538] = {.lex_state = 21}, + [3539] = {.lex_state = 21}, + [3540] = {.lex_state = 21}, + [3541] = {.lex_state = 32}, + [3542] = {.lex_state = 21}, + [3543] = {.lex_state = 21}, + [3544] = {.lex_state = 21}, + [3545] = {.lex_state = 21}, + [3546] = {.lex_state = 21}, + [3547] = {.lex_state = 32}, + [3548] = {.lex_state = 23}, + [3549] = {.lex_state = 33}, + [3550] = {.lex_state = 33}, + [3551] = {.lex_state = 33}, + [3552] = {.lex_state = 33}, + [3553] = {.lex_state = 33}, + [3554] = {.lex_state = 33}, + [3555] = {.lex_state = 33}, + [3556] = {.lex_state = 33}, + [3557] = {.lex_state = 33}, + [3558] = {.lex_state = 33}, + [3559] = {.lex_state = 33}, + [3560] = {.lex_state = 33}, + [3561] = {.lex_state = 33}, + [3562] = {.lex_state = 33}, + [3563] = {.lex_state = 33}, + [3564] = {.lex_state = 33}, + [3565] = {.lex_state = 33}, + [3566] = {.lex_state = 33}, + [3567] = {.lex_state = 33}, + [3568] = {.lex_state = 33}, + [3569] = {.lex_state = 33}, + [3570] = {.lex_state = 33}, + [3571] = {.lex_state = 33}, + [3572] = {.lex_state = 244}, + [3573] = {.lex_state = 33}, + [3574] = {.lex_state = 244}, + [3575] = {.lex_state = 20}, + [3576] = {.lex_state = 20}, + [3577] = {.lex_state = 20}, + [3578] = {.lex_state = 20}, + [3579] = {.lex_state = 20}, + [3580] = {.lex_state = 20}, + [3581] = {.lex_state = 20}, + [3582] = {.lex_state = 20}, + [3583] = {.lex_state = 20}, + [3584] = {.lex_state = 20}, + [3585] = {.lex_state = 20}, + [3586] = {.lex_state = 20}, + [3587] = {.lex_state = 20}, + [3588] = {.lex_state = 20}, + [3589] = {.lex_state = 20}, + [3590] = {.lex_state = 20}, + [3591] = {.lex_state = 20}, + [3592] = {.lex_state = 20}, + [3593] = {.lex_state = 20}, + [3594] = {.lex_state = 20}, + [3595] = {.lex_state = 20}, + [3596] = {.lex_state = 23}, + [3597] = {.lex_state = 23}, + [3598] = {.lex_state = 244}, + [3599] = {.lex_state = 244}, + [3600] = {.lex_state = 244}, + [3601] = {.lex_state = 244}, + [3602] = {.lex_state = 23}, + [3603] = {.lex_state = 244}, + [3604] = {.lex_state = 23}, + [3605] = {.lex_state = 244}, + [3606] = {.lex_state = 244}, + [3607] = {.lex_state = 244}, + [3608] = {.lex_state = 23}, + [3609] = {.lex_state = 244}, + [3610] = {.lex_state = 244}, + [3611] = {.lex_state = 23}, + [3612] = {.lex_state = 244}, + [3613] = {.lex_state = 26}, + [3614] = {.lex_state = 244}, + [3615] = {.lex_state = 244}, + [3616] = {.lex_state = 244}, + [3617] = {.lex_state = 26}, + [3618] = {.lex_state = 244}, + [3619] = {.lex_state = 244}, + [3620] = {.lex_state = 23}, + [3621] = {.lex_state = 244}, + [3622] = {.lex_state = 244}, + [3623] = {.lex_state = 244}, + [3624] = {.lex_state = 244}, + [3625] = {.lex_state = 244}, + [3626] = {.lex_state = 23}, + [3627] = {.lex_state = 244}, + [3628] = {.lex_state = 37}, + [3629] = {.lex_state = 23}, + [3630] = {.lex_state = 244}, + [3631] = {.lex_state = 244}, + [3632] = {.lex_state = 244}, + [3633] = {.lex_state = 26}, + [3634] = {.lex_state = 23}, + [3635] = {.lex_state = 23}, + [3636] = {.lex_state = 26}, + [3637] = {.lex_state = 244}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -9538,38 +9971,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(1), }, [1] = { - [sym_source] = STATE(3373), - [sym__gap] = STATE(154), - [sym_dis_expr] = STATE(154), - [sym__form] = STATE(1664), - [sym_num_lit] = STATE(1664), - [sym_kwd_lit] = STATE(1664), - [sym_str_lit] = STATE(1664), - [sym_char_lit] = STATE(1664), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1664), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1664), - [sym_set_lit] = STATE(1664), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1664), - [sym_splicing_read_cond_lit] = STATE(1664), - [sym_var_quoting_lit] = STATE(1664), - [sym_quoting_lit] = STATE(1664), - [sym_syn_quoting_lit] = STATE(1664), - [sym_unquote_splicing_lit] = STATE(1664), - [sym_unquoting_lit] = STATE(1664), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1664), - [sym_package_lit] = STATE(1664), - [sym_include_reader_macro] = STATE(1664), - [sym_complex_num_lit] = STATE(1664), - [aux_sym_source_repeat1] = STATE(154), - [aux_sym_list_lit_repeat1] = STATE(2089), + [sym_source] = STATE(3624), + [sym__gap] = STATE(159), + [sym_dis_expr] = STATE(159), + [sym__form] = STATE(1851), + [sym_num_lit] = STATE(1851), + [sym_kwd_lit] = STATE(1851), + [sym_str_lit] = STATE(1851), + [sym_char_lit] = STATE(1851), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1851), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1851), + [sym_set_lit] = STATE(1851), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1851), + [sym_splicing_read_cond_lit] = STATE(1851), + [sym_var_quoting_lit] = STATE(1851), + [sym_quoting_lit] = STATE(1851), + [sym_syn_quoting_lit] = STATE(1851), + [sym_unquote_splicing_lit] = STATE(1851), + [sym_unquoting_lit] = STATE(1851), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1851), + [sym_package_lit] = STATE(1851), + [sym_include_reader_macro] = STATE(1851), + [sym_complex_num_lit] = STATE(1851), + [aux_sym_source_repeat1] = STATE(159), + [aux_sym_list_lit_repeat1] = STATE(2330), [ts_builtin_sym_end] = ACTIONS(5), [sym__ws] = ACTIONS(7), [sym_comment] = ACTIONS(7), @@ -9606,1761 +10039,1327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [2] = { - [sym__gap] = STATE(773), - [sym_dis_expr] = STATE(773), - [sym__form] = STATE(1995), - [sym_num_lit] = STATE(1995), - [sym_kwd_lit] = STATE(1995), - [sym_str_lit] = STATE(1995), - [sym_char_lit] = STATE(1995), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1995), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1995), - [sym_set_lit] = STATE(1995), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1995), - [sym_splicing_read_cond_lit] = STATE(1995), - [sym_var_quoting_lit] = STATE(1995), - [sym_quoting_lit] = STATE(1995), - [sym_syn_quoting_lit] = STATE(1995), - [sym_unquote_splicing_lit] = STATE(1995), - [sym_unquoting_lit] = STATE(1995), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1995), - [sym_package_lit] = STATE(1995), - [sym_include_reader_macro] = STATE(1995), - [sym_complex_num_lit] = STATE(1995), - [aux_sym_dis_expr_repeat1] = STATE(773), - [aux_sym_list_lit_repeat1] = STATE(2102), + [sym__gap] = STATE(829), + [sym_dis_expr] = STATE(829), + [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(840), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(6), + [sym__bare_list_lit] = STATE(841), + [sym_vec_lit] = STATE(6), + [sym_set_lit] = STATE(6), + [sym__bare_set_lit] = STATE(842), + [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(841), + [sym_loop_macro] = STATE(841), + [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(829), + [aux_sym_list_lit_repeat1] = STATE(2335), [sym__ws] = ACTIONS(59), [sym_comment] = ACTIONS(59), - [anon_sym_POUND_] = ACTIONS(63), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(70), - [aux_sym_num_lit_token1] = ACTIONS(73), - [anon_sym_COLON] = ACTIONS(76), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_nil_lit] = ACTIONS(70), - [aux_sym_sym_lit_token1] = ACTIONS(85), - [anon_sym_CARET] = ACTIONS(88), - [anon_sym_POUND_CARET] = ACTIONS(92), - [anon_sym_LPAREN] = ACTIONS(96), - [anon_sym_RPAREN] = ACTIONS(100), - [anon_sym_POUND0A] = ACTIONS(103), - [anon_sym_POUND0a] = ACTIONS(103), - [anon_sym_POUND_QMARK] = ACTIONS(106), - [anon_sym_POUND_QMARK_AT] = ACTIONS(109), - [anon_sym_POUND_SQUOTE] = ACTIONS(112), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_COMMA_AT] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(124), + [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(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_nil_lit] = ACTIONS(67), + [aux_sym_sym_lit_token1] = ACTIONS(77), + [anon_sym_CARET] = ACTIONS(79), + [anon_sym_POUND_CARET] = ACTIONS(82), + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_RPAREN] = ACTIONS(88), + [anon_sym_POUND0A] = ACTIONS(90), + [anon_sym_POUND0a] = ACTIONS(90), + [anon_sym_POUND_QMARK] = ACTIONS(92), + [anon_sym_POUND_QMARK_AT] = ACTIONS(94), + [anon_sym_POUND_SQUOTE] = ACTIONS(96), + [anon_sym_SQUOTE] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_COMMA_AT] = ACTIONS(102), + [anon_sym_COMMA] = ACTIONS(104), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(70), - [anon_sym_cl] = ACTIONS(127), - [anon_sym_EQ] = ACTIONS(131), - [aux_sym_accumulation_verb_token1] = ACTIONS(133), - [anon_sym_for] = ACTIONS(133), - [anon_sym_and] = ACTIONS(133), - [anon_sym_as] = ACTIONS(133), - [anon_sym_with] = ACTIONS(133), - [anon_sym_do] = ACTIONS(133), - [anon_sym_while] = ACTIONS(133), - [anon_sym_until] = ACTIONS(133), - [anon_sym_repeat] = ACTIONS(133), - [anon_sym_when] = ACTIONS(133), - [anon_sym_if] = ACTIONS(133), - [anon_sym_unless] = ACTIONS(133), - [anon_sym_always] = ACTIONS(133), - [anon_sym_thereis] = ACTIONS(133), - [anon_sym_never] = ACTIONS(133), - [anon_sym_else] = ACTIONS(133), - [anon_sym_finally] = ACTIONS(133), - [anon_sym_return] = ACTIONS(133), - [anon_sym_initially] = ACTIONS(133), - [anon_sym_POUNDP] = ACTIONS(136), - [anon_sym_POUNDp] = ACTIONS(136), - [sym_self_referential_reader_macro] = ACTIONS(139), - [anon_sym_POUND_PLUS] = ACTIONS(142), - [anon_sym_POUND_DASH] = ACTIONS(142), - [anon_sym_POUNDC] = ACTIONS(145), - [anon_sym_POUNDc] = ACTIONS(145), + [sym_fancy_literal] = ACTIONS(67), + [anon_sym_cl] = ACTIONS(106), + [anon_sym_EQ] = ACTIONS(109), + [aux_sym_accumulation_verb_token1] = ACTIONS(111), + [anon_sym_for] = ACTIONS(111), + [anon_sym_and] = ACTIONS(111), + [anon_sym_as] = ACTIONS(111), + [anon_sym_with] = ACTIONS(111), + [anon_sym_do] = ACTIONS(111), + [anon_sym_while] = ACTIONS(111), + [anon_sym_until] = ACTIONS(111), + [anon_sym_repeat] = ACTIONS(111), + [anon_sym_when] = ACTIONS(111), + [anon_sym_if] = ACTIONS(111), + [anon_sym_unless] = ACTIONS(111), + [anon_sym_always] = ACTIONS(111), + [anon_sym_thereis] = ACTIONS(111), + [anon_sym_never] = ACTIONS(111), + [anon_sym_else] = ACTIONS(111), + [anon_sym_finally] = ACTIONS(111), + [anon_sym_return] = ACTIONS(111), + [anon_sym_initially] = ACTIONS(111), + [anon_sym_POUNDP] = ACTIONS(113), + [anon_sym_POUNDp] = ACTIONS(113), + [sym_self_referential_reader_macro] = ACTIONS(115), + [anon_sym_POUND_PLUS] = ACTIONS(117), + [anon_sym_POUND_DASH] = ACTIONS(117), + [anon_sym_POUNDC] = ACTIONS(119), + [anon_sym_POUNDc] = ACTIONS(119), }, [3] = { - [sym__gap] = STATE(13), - [sym_dis_expr] = STATE(13), - [sym__form] = STATE(1960), - [sym_num_lit] = STATE(1960), - [sym_kwd_lit] = STATE(1960), - [sym_str_lit] = STATE(1960), - [sym_char_lit] = STATE(1960), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1960), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1960), - [sym_set_lit] = STATE(1960), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1960), - [sym_splicing_read_cond_lit] = STATE(1960), - [sym_var_quoting_lit] = STATE(1960), - [sym_quoting_lit] = STATE(1960), - [sym_syn_quoting_lit] = STATE(1960), - [sym_unquote_splicing_lit] = STATE(1960), - [sym_unquoting_lit] = STATE(1960), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1960), - [sym_package_lit] = STATE(1960), - [sym_include_reader_macro] = STATE(1960), - [sym_complex_num_lit] = STATE(1960), - [aux_sym_dis_expr_repeat1] = STATE(13), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(148), - [sym_comment] = ACTIONS(148), - [anon_sym_POUND_] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(156), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(156), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(168), - [anon_sym_POUND_CARET] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(174), - [anon_sym_RPAREN] = ACTIONS(177), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(829), + [sym_dis_expr] = STATE(829), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2042), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2042), + [sym_set_lit] = STATE(2042), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(829), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(121), + [sym_comment] = ACTIONS(121), + [anon_sym_POUND_] = ACTIONS(125), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(131), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(131), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym_POUND_CARET] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(151), + [anon_sym_RPAREN] = ACTIONS(155), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(156), - [anon_sym_cl] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(198), - [aux_sym_accumulation_verb_token1] = ACTIONS(200), - [anon_sym_for] = ACTIONS(200), - [anon_sym_and] = ACTIONS(200), - [anon_sym_as] = ACTIONS(200), - [anon_sym_with] = ACTIONS(200), - [anon_sym_do] = ACTIONS(200), - [anon_sym_while] = ACTIONS(200), - [anon_sym_until] = ACTIONS(200), - [anon_sym_repeat] = ACTIONS(200), - [anon_sym_when] = ACTIONS(200), - [anon_sym_if] = ACTIONS(200), - [anon_sym_unless] = ACTIONS(200), - [anon_sym_always] = ACTIONS(200), - [anon_sym_thereis] = ACTIONS(200), - [anon_sym_never] = ACTIONS(200), - [anon_sym_else] = ACTIONS(200), - [anon_sym_finally] = ACTIONS(200), - [anon_sym_return] = ACTIONS(200), - [anon_sym_initially] = ACTIONS(200), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(204), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(131), + [anon_sym_cl] = ACTIONS(174), + [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(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(185), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [4] = { - [sym__gap] = STATE(773), - [sym_dis_expr] = STATE(773), - [sym__form] = STATE(1964), - [sym_num_lit] = STATE(1964), - [sym_kwd_lit] = STATE(1964), - [sym_str_lit] = STATE(1964), - [sym_char_lit] = STATE(1964), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1964), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1964), - [sym_set_lit] = STATE(1964), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1964), - [sym_splicing_read_cond_lit] = STATE(1964), - [sym_var_quoting_lit] = STATE(1964), - [sym_quoting_lit] = STATE(1964), - [sym_syn_quoting_lit] = STATE(1964), - [sym_unquote_splicing_lit] = STATE(1964), - [sym_unquoting_lit] = STATE(1964), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1964), - [sym_package_lit] = STATE(1964), - [sym_include_reader_macro] = STATE(1964), - [sym_complex_num_lit] = STATE(1964), - [aux_sym_dis_expr_repeat1] = STATE(773), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(210), - [sym_comment] = ACTIONS(210), - [anon_sym_POUND_] = ACTIONS(214), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(218), - [aux_sym_num_lit_token1] = ACTIONS(73), - [anon_sym_COLON] = ACTIONS(76), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_nil_lit] = ACTIONS(218), - [aux_sym_sym_lit_token1] = ACTIONS(85), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_POUND_CARET] = ACTIONS(225), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(233), - [anon_sym_POUND0A] = ACTIONS(103), - [anon_sym_POUND0a] = ACTIONS(103), - [anon_sym_POUND_QMARK] = ACTIONS(106), - [anon_sym_POUND_QMARK_AT] = ACTIONS(109), - [anon_sym_POUND_SQUOTE] = ACTIONS(112), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_COMMA_AT] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(124), + [sym__gap] = STATE(18), + [sym_dis_expr] = STATE(18), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2084), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2084), + [sym_set_lit] = STATE(2084), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(18), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(191), + [sym_comment] = ACTIONS(191), + [anon_sym_POUND_] = ACTIONS(195), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(199), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(199), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_POUND_CARET] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(209), + [anon_sym_RPAREN] = ACTIONS(213), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(218), - [anon_sym_cl] = ACTIONS(236), - [anon_sym_EQ] = ACTIONS(131), - [aux_sym_accumulation_verb_token1] = ACTIONS(240), - [anon_sym_for] = ACTIONS(240), - [anon_sym_and] = ACTIONS(240), - [anon_sym_as] = ACTIONS(240), - [anon_sym_with] = ACTIONS(240), - [anon_sym_do] = ACTIONS(240), - [anon_sym_while] = ACTIONS(240), - [anon_sym_until] = ACTIONS(240), - [anon_sym_repeat] = ACTIONS(240), - [anon_sym_when] = ACTIONS(240), - [anon_sym_if] = ACTIONS(240), - [anon_sym_unless] = ACTIONS(240), - [anon_sym_always] = ACTIONS(240), - [anon_sym_thereis] = ACTIONS(240), - [anon_sym_never] = ACTIONS(240), - [anon_sym_else] = ACTIONS(240), - [anon_sym_finally] = ACTIONS(240), - [anon_sym_return] = ACTIONS(240), - [anon_sym_initially] = ACTIONS(240), - [anon_sym_POUNDP] = ACTIONS(136), - [anon_sym_POUNDp] = ACTIONS(136), - [sym_self_referential_reader_macro] = ACTIONS(243), - [anon_sym_POUND_PLUS] = ACTIONS(142), - [anon_sym_POUND_DASH] = ACTIONS(142), - [anon_sym_POUNDC] = ACTIONS(145), - [anon_sym_POUNDc] = ACTIONS(145), + [sym_fancy_literal] = ACTIONS(199), + [anon_sym_cl] = ACTIONS(216), + [anon_sym_EQ] = ACTIONS(220), + [aux_sym_accumulation_verb_token1] = ACTIONS(222), + [anon_sym_for] = ACTIONS(222), + [anon_sym_and] = ACTIONS(222), + [anon_sym_as] = ACTIONS(222), + [anon_sym_with] = ACTIONS(222), + [anon_sym_do] = ACTIONS(222), + [anon_sym_while] = ACTIONS(222), + [anon_sym_until] = ACTIONS(222), + [anon_sym_repeat] = ACTIONS(222), + [anon_sym_when] = ACTIONS(222), + [anon_sym_if] = ACTIONS(222), + [anon_sym_unless] = ACTIONS(222), + [anon_sym_always] = ACTIONS(222), + [anon_sym_thereis] = ACTIONS(222), + [anon_sym_never] = ACTIONS(222), + [anon_sym_else] = ACTIONS(222), + [anon_sym_finally] = ACTIONS(222), + [anon_sym_return] = ACTIONS(222), + [anon_sym_initially] = ACTIONS(222), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(225), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [5] = { - [sym__gap] = STATE(9), - [sym_dis_expr] = STATE(9), - [sym__form] = STATE(1952), - [sym_num_lit] = STATE(1952), - [sym_kwd_lit] = STATE(1952), - [sym_str_lit] = STATE(1952), - [sym_char_lit] = STATE(1952), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1952), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1952), - [sym_set_lit] = STATE(1952), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1952), - [sym_splicing_read_cond_lit] = STATE(1952), - [sym_var_quoting_lit] = STATE(1952), - [sym_quoting_lit] = STATE(1952), - [sym_syn_quoting_lit] = STATE(1952), - [sym_unquote_splicing_lit] = STATE(1952), - [sym_unquoting_lit] = STATE(1952), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1952), - [sym_package_lit] = STATE(1952), - [sym_include_reader_macro] = STATE(1952), - [sym_complex_num_lit] = STATE(1952), - [aux_sym_dis_expr_repeat1] = STATE(9), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(246), - [sym_comment] = ACTIONS(246), - [anon_sym_POUND_] = ACTIONS(250), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(254), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(254), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(256), - [anon_sym_POUND_CARET] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(264), - [anon_sym_RPAREN] = ACTIONS(268), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(829), + [sym_dis_expr] = STATE(829), + [sym__form] = STATE(20), + [sym_num_lit] = STATE(20), + [sym_kwd_lit] = STATE(20), + [sym_str_lit] = STATE(20), + [sym_char_lit] = STATE(20), + [sym_sym_lit] = STATE(840), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(20), + [sym__bare_list_lit] = STATE(841), + [sym_vec_lit] = STATE(20), + [sym_set_lit] = STATE(20), + [sym__bare_set_lit] = STATE(842), + [sym_read_cond_lit] = STATE(20), + [sym_splicing_read_cond_lit] = STATE(20), + [sym_var_quoting_lit] = STATE(20), + [sym_quoting_lit] = STATE(20), + [sym_syn_quoting_lit] = STATE(20), + [sym_unquote_splicing_lit] = STATE(20), + [sym_unquoting_lit] = STATE(20), + [sym_defun] = STATE(841), + [sym_loop_macro] = STATE(841), + [sym_path_lit] = STATE(20), + [sym_package_lit] = STATE(20), + [sym_include_reader_macro] = STATE(20), + [sym_complex_num_lit] = STATE(20), + [aux_sym_dis_expr_repeat1] = STATE(829), + [aux_sym_list_lit_repeat1] = STATE(2335), + [sym__ws] = ACTIONS(227), + [sym_comment] = ACTIONS(227), + [anon_sym_POUND_] = ACTIONS(230), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(233), + [aux_sym_num_lit_token1] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_nil_lit] = ACTIONS(233), + [aux_sym_sym_lit_token1] = ACTIONS(77), + [anon_sym_CARET] = ACTIONS(235), + [anon_sym_POUND_CARET] = ACTIONS(238), + [anon_sym_LPAREN] = ACTIONS(241), + [anon_sym_RPAREN] = ACTIONS(244), + [anon_sym_POUND0A] = ACTIONS(90), + [anon_sym_POUND0a] = ACTIONS(90), + [anon_sym_POUND_QMARK] = ACTIONS(92), + [anon_sym_POUND_QMARK_AT] = ACTIONS(94), + [anon_sym_POUND_SQUOTE] = ACTIONS(96), + [anon_sym_SQUOTE] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_COMMA_AT] = ACTIONS(102), + [anon_sym_COMMA] = ACTIONS(104), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(254), - [anon_sym_cl] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(275), - [aux_sym_accumulation_verb_token1] = ACTIONS(277), - [anon_sym_for] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_with] = ACTIONS(277), - [anon_sym_do] = ACTIONS(277), - [anon_sym_while] = ACTIONS(277), - [anon_sym_until] = ACTIONS(277), - [anon_sym_repeat] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_if] = ACTIONS(277), - [anon_sym_unless] = ACTIONS(277), - [anon_sym_always] = ACTIONS(277), - [anon_sym_thereis] = ACTIONS(277), - [anon_sym_never] = ACTIONS(277), - [anon_sym_else] = ACTIONS(277), - [anon_sym_finally] = ACTIONS(277), - [anon_sym_return] = ACTIONS(277), - [anon_sym_initially] = ACTIONS(277), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(280), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(233), + [anon_sym_cl] = ACTIONS(246), + [anon_sym_EQ] = ACTIONS(249), + [aux_sym_accumulation_verb_token1] = ACTIONS(251), + [anon_sym_for] = ACTIONS(251), + [anon_sym_and] = ACTIONS(251), + [anon_sym_as] = ACTIONS(251), + [anon_sym_with] = ACTIONS(251), + [anon_sym_do] = ACTIONS(251), + [anon_sym_while] = ACTIONS(251), + [anon_sym_until] = ACTIONS(251), + [anon_sym_repeat] = ACTIONS(251), + [anon_sym_when] = ACTIONS(251), + [anon_sym_if] = ACTIONS(251), + [anon_sym_unless] = ACTIONS(251), + [anon_sym_always] = ACTIONS(251), + [anon_sym_thereis] = ACTIONS(251), + [anon_sym_never] = ACTIONS(251), + [anon_sym_else] = ACTIONS(251), + [anon_sym_finally] = ACTIONS(251), + [anon_sym_return] = ACTIONS(251), + [anon_sym_initially] = ACTIONS(251), + [anon_sym_POUNDP] = ACTIONS(113), + [anon_sym_POUNDp] = ACTIONS(113), + [sym_self_referential_reader_macro] = ACTIONS(253), + [anon_sym_POUND_PLUS] = ACTIONS(117), + [anon_sym_POUND_DASH] = ACTIONS(117), + [anon_sym_POUNDC] = ACTIONS(119), + [anon_sym_POUNDc] = ACTIONS(119), }, [6] = { - [sym__gap] = STATE(229), - [sym_dis_expr] = STATE(229), - [sym__form] = STATE(778), - [sym_num_lit] = STATE(778), - [sym_kwd_lit] = STATE(778), - [sym_str_lit] = STATE(778), - [sym_char_lit] = STATE(778), - [sym_sym_lit] = STATE(1003), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(778), - [sym__bare_list_lit] = STATE(1024), - [sym_vec_lit] = STATE(778), - [sym_set_lit] = STATE(778), - [sym__bare_set_lit] = STATE(1023), - [sym_read_cond_lit] = STATE(778), - [sym_splicing_read_cond_lit] = STATE(778), - [sym_var_quoting_lit] = STATE(778), - [sym_quoting_lit] = STATE(778), - [sym_syn_quoting_lit] = STATE(778), - [sym_unquote_splicing_lit] = STATE(778), - [sym_unquoting_lit] = STATE(778), - [sym_defun] = STATE(1024), - [sym_loop_macro] = STATE(1024), - [sym_path_lit] = STATE(778), - [sym_package_lit] = STATE(778), - [sym_include_reader_macro] = STATE(778), - [sym_complex_num_lit] = STATE(778), - [aux_sym_dis_expr_repeat1] = STATE(229), - [aux_sym_list_lit_repeat1] = STATE(2101), - [aux_sym_do_clause_repeat1] = STATE(15), - [sym__ws] = ACTIONS(282), - [sym_comment] = ACTIONS(282), - [anon_sym_POUND_] = ACTIONS(282), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [aux_sym_num_lit_token1] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(290), - [anon_sym_COLON_COLON] = ACTIONS(292), - [anon_sym_DQUOTE] = ACTIONS(294), - [sym_nil_lit] = ACTIONS(286), - [aux_sym_sym_lit_token1] = ACTIONS(296), - [anon_sym_CARET] = ACTIONS(282), - [anon_sym_POUND_CARET] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_RPAREN] = ACTIONS(282), - [anon_sym_POUND0A] = ACTIONS(298), - [anon_sym_POUND0a] = ACTIONS(298), - [anon_sym_POUND_QMARK] = ACTIONS(300), - [anon_sym_POUND_QMARK_AT] = ACTIONS(302), - [anon_sym_POUND_SQUOTE] = ACTIONS(304), - [anon_sym_SQUOTE] = ACTIONS(306), - [anon_sym_BQUOTE] = ACTIONS(308), - [anon_sym_COMMA_AT] = ACTIONS(310), - [anon_sym_COMMA] = ACTIONS(312), + [sym__gap] = STATE(13), + [sym_dis_expr] = STATE(13), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2055), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2055), + [sym_set_lit] = STATE(2055), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(13), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(255), + [sym_comment] = ACTIONS(255), + [anon_sym_POUND_] = ACTIONS(259), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(263), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(263), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_POUND_CARET] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(273), + [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(286), - [anon_sym_cl] = ACTIONS(314), - [aux_sym_accumulation_verb_token1] = ACTIONS(314), - [anon_sym_for] = ACTIONS(314), - [anon_sym_and] = ACTIONS(314), - [anon_sym_as] = ACTIONS(314), - [anon_sym_with] = ACTIONS(314), - [anon_sym_do] = ACTIONS(314), - [anon_sym_while] = ACTIONS(314), - [anon_sym_until] = ACTIONS(314), - [anon_sym_repeat] = ACTIONS(314), - [anon_sym_when] = ACTIONS(314), - [anon_sym_if] = ACTIONS(314), - [anon_sym_unless] = ACTIONS(314), - [anon_sym_always] = ACTIONS(314), - [anon_sym_thereis] = ACTIONS(314), - [anon_sym_never] = ACTIONS(314), - [anon_sym_else] = ACTIONS(314), - [anon_sym_finally] = ACTIONS(314), - [anon_sym_return] = ACTIONS(314), - [anon_sym_initially] = ACTIONS(314), - [anon_sym_POUNDP] = ACTIONS(316), - [anon_sym_POUNDp] = ACTIONS(316), - [sym_self_referential_reader_macro] = ACTIONS(318), - [anon_sym_POUND_PLUS] = ACTIONS(320), - [anon_sym_POUND_DASH] = ACTIONS(320), - [anon_sym_POUNDC] = ACTIONS(322), - [anon_sym_POUNDc] = ACTIONS(322), + [sym_fancy_literal] = ACTIONS(263), + [anon_sym_cl] = ACTIONS(280), + [anon_sym_EQ] = ACTIONS(284), + [aux_sym_accumulation_verb_token1] = ACTIONS(286), + [anon_sym_for] = ACTIONS(286), + [anon_sym_and] = ACTIONS(286), + [anon_sym_as] = ACTIONS(286), + [anon_sym_with] = ACTIONS(286), + [anon_sym_do] = ACTIONS(286), + [anon_sym_while] = ACTIONS(286), + [anon_sym_until] = ACTIONS(286), + [anon_sym_repeat] = ACTIONS(286), + [anon_sym_when] = ACTIONS(286), + [anon_sym_if] = ACTIONS(286), + [anon_sym_unless] = ACTIONS(286), + [anon_sym_always] = ACTIONS(286), + [anon_sym_thereis] = ACTIONS(286), + [anon_sym_never] = ACTIONS(286), + [anon_sym_else] = ACTIONS(286), + [anon_sym_finally] = ACTIONS(286), + [anon_sym_return] = ACTIONS(286), + [anon_sym_initially] = ACTIONS(286), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(289), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [7] = { - [sym__gap] = STATE(773), - [sym_dis_expr] = STATE(773), - [sym__form] = STATE(2024), - [sym_num_lit] = STATE(2024), - [sym_kwd_lit] = STATE(2024), - [sym_str_lit] = STATE(2024), - [sym_char_lit] = STATE(2024), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2024), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2024), - [sym_set_lit] = STATE(2024), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2024), - [sym_splicing_read_cond_lit] = STATE(2024), - [sym_var_quoting_lit] = STATE(2024), - [sym_quoting_lit] = STATE(2024), - [sym_syn_quoting_lit] = STATE(2024), - [sym_unquote_splicing_lit] = STATE(2024), - [sym_unquoting_lit] = STATE(2024), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2024), - [sym_package_lit] = STATE(2024), - [sym_include_reader_macro] = STATE(2024), - [sym_complex_num_lit] = STATE(2024), - [aux_sym_dis_expr_repeat1] = STATE(773), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(324), - [sym_comment] = ACTIONS(324), - [anon_sym_POUND_] = ACTIONS(328), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(332), - [aux_sym_num_lit_token1] = ACTIONS(73), - [anon_sym_COLON] = ACTIONS(76), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_nil_lit] = ACTIONS(332), - [aux_sym_sym_lit_token1] = ACTIONS(85), - [anon_sym_CARET] = ACTIONS(335), - [anon_sym_POUND_CARET] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(347), - [anon_sym_POUND0A] = ACTIONS(103), - [anon_sym_POUND0a] = ACTIONS(103), - [anon_sym_POUND_QMARK] = ACTIONS(106), - [anon_sym_POUND_QMARK_AT] = ACTIONS(109), - [anon_sym_POUND_SQUOTE] = ACTIONS(112), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_COMMA_AT] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(124), + [sym__gap] = STATE(829), + [sym_dis_expr] = STATE(829), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2107), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2107), + [sym_set_lit] = STATE(2107), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(829), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(291), + [sym_comment] = ACTIONS(291), + [anon_sym_POUND_] = ACTIONS(295), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(299), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(299), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [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(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(332), - [anon_sym_cl] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(131), - [aux_sym_accumulation_verb_token1] = ACTIONS(354), - [anon_sym_for] = ACTIONS(354), - [anon_sym_and] = ACTIONS(354), - [anon_sym_as] = ACTIONS(354), - [anon_sym_with] = ACTIONS(354), - [anon_sym_do] = ACTIONS(354), - [anon_sym_while] = ACTIONS(354), - [anon_sym_until] = ACTIONS(354), - [anon_sym_repeat] = ACTIONS(354), - [anon_sym_when] = ACTIONS(354), - [anon_sym_if] = ACTIONS(354), - [anon_sym_unless] = ACTIONS(354), - [anon_sym_always] = ACTIONS(354), - [anon_sym_thereis] = ACTIONS(354), - [anon_sym_never] = ACTIONS(354), - [anon_sym_else] = ACTIONS(354), - [anon_sym_finally] = ACTIONS(354), - [anon_sym_return] = ACTIONS(354), - [anon_sym_initially] = ACTIONS(354), - [anon_sym_POUNDP] = ACTIONS(136), - [anon_sym_POUNDp] = ACTIONS(136), - [sym_self_referential_reader_macro] = ACTIONS(357), - [anon_sym_POUND_PLUS] = ACTIONS(142), - [anon_sym_POUND_DASH] = ACTIONS(142), - [anon_sym_POUNDC] = ACTIONS(145), - [anon_sym_POUNDc] = ACTIONS(145), + [sym_fancy_literal] = ACTIONS(299), + [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(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(325), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [8] = { - [sym__gap] = STATE(4), - [sym_dis_expr] = STATE(4), - [sym__form] = STATE(1963), - [sym_num_lit] = STATE(1963), - [sym_kwd_lit] = STATE(1963), - [sym_str_lit] = STATE(1963), - [sym_char_lit] = STATE(1963), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1963), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1963), - [sym_set_lit] = STATE(1963), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1963), - [sym_splicing_read_cond_lit] = STATE(1963), - [sym_var_quoting_lit] = STATE(1963), - [sym_quoting_lit] = STATE(1963), - [sym_syn_quoting_lit] = STATE(1963), - [sym_unquote_splicing_lit] = STATE(1963), - [sym_unquoting_lit] = STATE(1963), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1963), - [sym_package_lit] = STATE(1963), - [sym_include_reader_macro] = STATE(1963), - [sym_complex_num_lit] = STATE(1963), - [aux_sym_dis_expr_repeat1] = STATE(4), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(360), - [sym_comment] = ACTIONS(360), - [anon_sym_POUND_] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(370), - [aux_sym_num_lit_token1] = ACTIONS(73), - [anon_sym_COLON] = ACTIONS(76), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_nil_lit] = ACTIONS(370), - [aux_sym_sym_lit_token1] = ACTIONS(85), - [anon_sym_CARET] = ACTIONS(373), - [anon_sym_POUND_CARET] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(388), - [anon_sym_POUND0A] = ACTIONS(103), - [anon_sym_POUND0a] = ACTIONS(103), - [anon_sym_POUND_QMARK] = ACTIONS(106), - [anon_sym_POUND_QMARK_AT] = ACTIONS(109), - [anon_sym_POUND_SQUOTE] = ACTIONS(112), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_COMMA_AT] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(124), + [sym__gap] = STATE(829), + [sym_dis_expr] = STATE(829), + [sym__form] = STATE(2051), + [sym_num_lit] = STATE(2051), + [sym_kwd_lit] = STATE(2051), + [sym_str_lit] = STATE(2051), + [sym_char_lit] = STATE(2051), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2051), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2051), + [sym_set_lit] = STATE(2051), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2051), + [sym_splicing_read_cond_lit] = STATE(2051), + [sym_var_quoting_lit] = STATE(2051), + [sym_quoting_lit] = STATE(2051), + [sym_syn_quoting_lit] = STATE(2051), + [sym_unquote_splicing_lit] = STATE(2051), + [sym_unquoting_lit] = STATE(2051), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2051), + [sym_package_lit] = STATE(2051), + [sym_include_reader_macro] = STATE(2051), + [sym_complex_num_lit] = STATE(2051), + [aux_sym_dis_expr_repeat1] = STATE(829), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(327), + [sym_comment] = ACTIONS(327), + [anon_sym_POUND_] = ACTIONS(331), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(335), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(335), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(337), + [anon_sym_POUND_CARET] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(349), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(370), - [anon_sym_cl] = ACTIONS(392), - [anon_sym_EQ] = ACTIONS(397), - [aux_sym_accumulation_verb_token1] = ACTIONS(400), - [anon_sym_for] = ACTIONS(400), - [anon_sym_and] = ACTIONS(400), - [anon_sym_as] = ACTIONS(400), - [anon_sym_with] = ACTIONS(400), - [anon_sym_do] = ACTIONS(400), - [anon_sym_while] = ACTIONS(400), - [anon_sym_until] = ACTIONS(400), - [anon_sym_repeat] = ACTIONS(400), - [anon_sym_when] = ACTIONS(400), - [anon_sym_if] = ACTIONS(400), - [anon_sym_unless] = ACTIONS(400), - [anon_sym_always] = ACTIONS(400), - [anon_sym_thereis] = ACTIONS(400), - [anon_sym_never] = ACTIONS(400), - [anon_sym_else] = ACTIONS(400), - [anon_sym_finally] = ACTIONS(400), - [anon_sym_return] = ACTIONS(400), - [anon_sym_initially] = ACTIONS(400), - [anon_sym_POUNDP] = ACTIONS(136), - [anon_sym_POUNDp] = ACTIONS(136), - [sym_self_referential_reader_macro] = ACTIONS(404), - [anon_sym_POUND_PLUS] = ACTIONS(142), - [anon_sym_POUND_DASH] = ACTIONS(142), - [anon_sym_POUNDC] = ACTIONS(145), - [anon_sym_POUNDc] = ACTIONS(145), + [sym_fancy_literal] = ACTIONS(335), + [anon_sym_cl] = ACTIONS(352), + [anon_sym_EQ] = ACTIONS(356), + [aux_sym_accumulation_verb_token1] = ACTIONS(358), + [anon_sym_for] = ACTIONS(358), + [anon_sym_and] = ACTIONS(358), + [anon_sym_as] = ACTIONS(358), + [anon_sym_with] = ACTIONS(358), + [anon_sym_do] = ACTIONS(358), + [anon_sym_while] = ACTIONS(358), + [anon_sym_until] = ACTIONS(358), + [anon_sym_repeat] = ACTIONS(358), + [anon_sym_when] = ACTIONS(358), + [anon_sym_if] = ACTIONS(358), + [anon_sym_unless] = ACTIONS(358), + [anon_sym_always] = ACTIONS(358), + [anon_sym_thereis] = ACTIONS(358), + [anon_sym_never] = ACTIONS(358), + [anon_sym_else] = ACTIONS(358), + [anon_sym_finally] = ACTIONS(358), + [anon_sym_return] = ACTIONS(358), + [anon_sym_initially] = ACTIONS(358), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(361), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [9] = { - [sym__gap] = STATE(19), - [sym_dis_expr] = STATE(19), - [sym__form] = STATE(1962), - [sym_num_lit] = STATE(1962), - [sym_kwd_lit] = STATE(1962), - [sym_str_lit] = STATE(1962), - [sym_char_lit] = STATE(1962), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1962), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1962), - [sym_set_lit] = STATE(1962), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1962), - [sym_splicing_read_cond_lit] = STATE(1962), - [sym_var_quoting_lit] = STATE(1962), - [sym_quoting_lit] = STATE(1962), - [sym_syn_quoting_lit] = STATE(1962), - [sym_unquote_splicing_lit] = STATE(1962), - [sym_unquoting_lit] = STATE(1962), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1962), - [sym_package_lit] = STATE(1962), - [sym_include_reader_macro] = STATE(1962), - [sym_complex_num_lit] = STATE(1962), - [aux_sym_dis_expr_repeat1] = STATE(19), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(407), - [sym_comment] = ACTIONS(407), - [anon_sym_POUND_] = ACTIONS(412), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(417), - [aux_sym_num_lit_token1] = ACTIONS(73), - [anon_sym_COLON] = ACTIONS(76), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_nil_lit] = ACTIONS(417), - [aux_sym_sym_lit_token1] = ACTIONS(85), - [anon_sym_CARET] = ACTIONS(420), - [anon_sym_POUND_CARET] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_RPAREN] = ACTIONS(435), - [anon_sym_POUND0A] = ACTIONS(103), - [anon_sym_POUND0a] = ACTIONS(103), - [anon_sym_POUND_QMARK] = ACTIONS(106), - [anon_sym_POUND_QMARK_AT] = ACTIONS(109), - [anon_sym_POUND_SQUOTE] = ACTIONS(112), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_COMMA_AT] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(124), + [sym__gap] = STATE(8), + [sym_dis_expr] = STATE(8), + [sym__form] = STATE(2105), + [sym_num_lit] = STATE(2105), + [sym_kwd_lit] = STATE(2105), + [sym_str_lit] = STATE(2105), + [sym_char_lit] = STATE(2105), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2105), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2105), + [sym_set_lit] = STATE(2105), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2105), + [sym_splicing_read_cond_lit] = STATE(2105), + [sym_var_quoting_lit] = STATE(2105), + [sym_quoting_lit] = STATE(2105), + [sym_syn_quoting_lit] = STATE(2105), + [sym_unquote_splicing_lit] = STATE(2105), + [sym_unquoting_lit] = STATE(2105), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2105), + [sym_package_lit] = STATE(2105), + [sym_include_reader_macro] = STATE(2105), + [sym_complex_num_lit] = STATE(2105), + [aux_sym_dis_expr_repeat1] = STATE(8), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(363), + [sym_comment] = ACTIONS(363), + [anon_sym_POUND_] = ACTIONS(367), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(371), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(371), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(373), + [anon_sym_POUND_CARET] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(385), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(417), - [anon_sym_cl] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(444), - [aux_sym_accumulation_verb_token1] = ACTIONS(447), - [anon_sym_for] = ACTIONS(447), - [anon_sym_and] = ACTIONS(447), - [anon_sym_as] = ACTIONS(447), - [anon_sym_with] = ACTIONS(447), - [anon_sym_do] = ACTIONS(447), - [anon_sym_while] = ACTIONS(447), - [anon_sym_until] = ACTIONS(447), - [anon_sym_repeat] = ACTIONS(447), - [anon_sym_when] = ACTIONS(447), - [anon_sym_if] = ACTIONS(447), - [anon_sym_unless] = ACTIONS(447), - [anon_sym_always] = ACTIONS(447), - [anon_sym_thereis] = ACTIONS(447), - [anon_sym_never] = ACTIONS(447), - [anon_sym_else] = ACTIONS(447), - [anon_sym_finally] = ACTIONS(447), - [anon_sym_return] = ACTIONS(447), - [anon_sym_initially] = ACTIONS(447), - [anon_sym_POUNDP] = ACTIONS(136), - [anon_sym_POUNDp] = ACTIONS(136), - [sym_self_referential_reader_macro] = ACTIONS(451), - [anon_sym_POUND_PLUS] = ACTIONS(142), - [anon_sym_POUND_DASH] = ACTIONS(142), - [anon_sym_POUNDC] = ACTIONS(145), - [anon_sym_POUNDc] = ACTIONS(145), + [sym_fancy_literal] = ACTIONS(371), + [anon_sym_cl] = ACTIONS(388), + [anon_sym_EQ] = ACTIONS(392), + [aux_sym_accumulation_verb_token1] = ACTIONS(394), + [anon_sym_for] = ACTIONS(394), + [anon_sym_and] = ACTIONS(394), + [anon_sym_as] = ACTIONS(394), + [anon_sym_with] = ACTIONS(394), + [anon_sym_do] = ACTIONS(394), + [anon_sym_while] = ACTIONS(394), + [anon_sym_until] = ACTIONS(394), + [anon_sym_repeat] = ACTIONS(394), + [anon_sym_when] = ACTIONS(394), + [anon_sym_if] = ACTIONS(394), + [anon_sym_unless] = ACTIONS(394), + [anon_sym_always] = ACTIONS(394), + [anon_sym_thereis] = ACTIONS(394), + [anon_sym_never] = ACTIONS(394), + [anon_sym_else] = ACTIONS(394), + [anon_sym_finally] = ACTIONS(394), + [anon_sym_return] = ACTIONS(394), + [anon_sym_initially] = ACTIONS(394), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(397), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [10] = { - [sym__gap] = STATE(229), - [sym_dis_expr] = STATE(229), - [sym__form] = STATE(778), - [sym_num_lit] = STATE(778), - [sym_kwd_lit] = STATE(778), - [sym_str_lit] = STATE(778), - [sym_char_lit] = STATE(778), - [sym_sym_lit] = STATE(1003), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(778), - [sym__bare_list_lit] = STATE(1024), - [sym_vec_lit] = STATE(778), - [sym_set_lit] = STATE(778), - [sym__bare_set_lit] = STATE(1023), - [sym_read_cond_lit] = STATE(778), - [sym_splicing_read_cond_lit] = STATE(778), - [sym_var_quoting_lit] = STATE(778), - [sym_quoting_lit] = STATE(778), - [sym_syn_quoting_lit] = STATE(778), - [sym_unquote_splicing_lit] = STATE(778), - [sym_unquoting_lit] = STATE(778), - [sym_defun] = STATE(1024), - [sym_loop_macro] = STATE(1024), - [sym_path_lit] = STATE(778), - [sym_package_lit] = STATE(778), - [sym_include_reader_macro] = STATE(778), - [sym_complex_num_lit] = STATE(778), - [aux_sym_dis_expr_repeat1] = STATE(229), - [aux_sym_list_lit_repeat1] = STATE(2101), - [aux_sym_do_clause_repeat1] = STATE(15), - [sym__ws] = ACTIONS(454), - [sym_comment] = ACTIONS(454), - [anon_sym_POUND_] = ACTIONS(454), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [aux_sym_num_lit_token1] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(290), - [anon_sym_COLON_COLON] = ACTIONS(292), - [anon_sym_DQUOTE] = ACTIONS(294), - [sym_nil_lit] = ACTIONS(286), - [aux_sym_sym_lit_token1] = ACTIONS(296), - [anon_sym_CARET] = ACTIONS(454), - [anon_sym_POUND_CARET] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_RPAREN] = ACTIONS(454), - [anon_sym_POUND0A] = ACTIONS(298), - [anon_sym_POUND0a] = ACTIONS(298), - [anon_sym_POUND_QMARK] = ACTIONS(300), - [anon_sym_POUND_QMARK_AT] = ACTIONS(302), - [anon_sym_POUND_SQUOTE] = ACTIONS(304), - [anon_sym_SQUOTE] = ACTIONS(306), - [anon_sym_BQUOTE] = ACTIONS(308), - [anon_sym_COMMA_AT] = ACTIONS(310), - [anon_sym_COMMA] = ACTIONS(312), + [sym__gap] = STATE(5), + [sym_dis_expr] = STATE(5), + [sym__form] = STATE(4), + [sym_num_lit] = STATE(4), + [sym_kwd_lit] = STATE(4), + [sym_str_lit] = STATE(4), + [sym_char_lit] = STATE(4), + [sym_sym_lit] = STATE(840), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(4), + [sym__bare_list_lit] = STATE(841), + [sym_vec_lit] = STATE(4), + [sym_set_lit] = STATE(4), + [sym__bare_set_lit] = STATE(842), + [sym_read_cond_lit] = STATE(4), + [sym_splicing_read_cond_lit] = STATE(4), + [sym_var_quoting_lit] = STATE(4), + [sym_quoting_lit] = STATE(4), + [sym_syn_quoting_lit] = STATE(4), + [sym_unquote_splicing_lit] = STATE(4), + [sym_unquoting_lit] = STATE(4), + [sym_defun] = STATE(841), + [sym_loop_macro] = STATE(841), + [sym_path_lit] = STATE(4), + [sym_package_lit] = STATE(4), + [sym_include_reader_macro] = STATE(4), + [sym_complex_num_lit] = STATE(4), + [aux_sym_dis_expr_repeat1] = STATE(5), + [aux_sym_list_lit_repeat1] = STATE(2335), + [sym__ws] = ACTIONS(399), + [sym_comment] = ACTIONS(399), + [anon_sym_POUND_] = ACTIONS(402), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(405), + [aux_sym_num_lit_token1] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_nil_lit] = ACTIONS(405), + [aux_sym_sym_lit_token1] = ACTIONS(77), + [anon_sym_CARET] = ACTIONS(407), + [anon_sym_POUND_CARET] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_RPAREN] = ACTIONS(416), + [anon_sym_POUND0A] = ACTIONS(90), + [anon_sym_POUND0a] = ACTIONS(90), + [anon_sym_POUND_QMARK] = ACTIONS(92), + [anon_sym_POUND_QMARK_AT] = ACTIONS(94), + [anon_sym_POUND_SQUOTE] = ACTIONS(96), + [anon_sym_SQUOTE] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_COMMA_AT] = ACTIONS(102), + [anon_sym_COMMA] = ACTIONS(104), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(286), - [anon_sym_cl] = ACTIONS(456), - [aux_sym_accumulation_verb_token1] = ACTIONS(456), - [anon_sym_for] = ACTIONS(456), - [anon_sym_and] = ACTIONS(456), - [anon_sym_as] = ACTIONS(456), - [anon_sym_with] = ACTIONS(456), - [anon_sym_do] = ACTIONS(456), - [anon_sym_while] = ACTIONS(456), - [anon_sym_until] = ACTIONS(456), - [anon_sym_repeat] = ACTIONS(456), - [anon_sym_when] = ACTIONS(456), - [anon_sym_if] = ACTIONS(456), - [anon_sym_unless] = ACTIONS(456), - [anon_sym_always] = ACTIONS(456), - [anon_sym_thereis] = ACTIONS(456), - [anon_sym_never] = ACTIONS(456), - [anon_sym_else] = ACTIONS(456), - [anon_sym_finally] = ACTIONS(456), - [anon_sym_return] = ACTIONS(456), - [anon_sym_initially] = ACTIONS(456), - [anon_sym_POUNDP] = ACTIONS(316), - [anon_sym_POUNDp] = ACTIONS(316), - [sym_self_referential_reader_macro] = ACTIONS(318), - [anon_sym_POUND_PLUS] = ACTIONS(320), - [anon_sym_POUND_DASH] = ACTIONS(320), - [anon_sym_POUNDC] = ACTIONS(322), - [anon_sym_POUNDc] = ACTIONS(322), + [sym_fancy_literal] = ACTIONS(405), + [anon_sym_cl] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), + [aux_sym_accumulation_verb_token1] = ACTIONS(423), + [anon_sym_for] = ACTIONS(423), + [anon_sym_and] = ACTIONS(423), + [anon_sym_as] = ACTIONS(423), + [anon_sym_with] = ACTIONS(423), + [anon_sym_do] = ACTIONS(423), + [anon_sym_while] = ACTIONS(423), + [anon_sym_until] = ACTIONS(423), + [anon_sym_repeat] = ACTIONS(423), + [anon_sym_when] = ACTIONS(423), + [anon_sym_if] = ACTIONS(423), + [anon_sym_unless] = ACTIONS(423), + [anon_sym_always] = ACTIONS(423), + [anon_sym_thereis] = ACTIONS(423), + [anon_sym_never] = ACTIONS(423), + [anon_sym_else] = ACTIONS(423), + [anon_sym_finally] = ACTIONS(423), + [anon_sym_return] = ACTIONS(423), + [anon_sym_initially] = ACTIONS(423), + [anon_sym_POUNDP] = ACTIONS(113), + [anon_sym_POUNDp] = ACTIONS(113), + [sym_self_referential_reader_macro] = ACTIONS(425), + [anon_sym_POUND_PLUS] = ACTIONS(117), + [anon_sym_POUND_DASH] = ACTIONS(117), + [anon_sym_POUNDC] = ACTIONS(119), + [anon_sym_POUNDc] = ACTIONS(119), }, [11] = { - [sym__gap] = STATE(7), - [sym_dis_expr] = STATE(7), - [sym__form] = STATE(1997), - [sym_num_lit] = STATE(1997), - [sym_kwd_lit] = STATE(1997), - [sym_str_lit] = STATE(1997), - [sym_char_lit] = STATE(1997), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1997), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1997), - [sym_set_lit] = STATE(1997), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1997), - [sym_splicing_read_cond_lit] = STATE(1997), - [sym_var_quoting_lit] = STATE(1997), - [sym_quoting_lit] = STATE(1997), - [sym_syn_quoting_lit] = STATE(1997), - [sym_unquote_splicing_lit] = STATE(1997), - [sym_unquoting_lit] = STATE(1997), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1997), - [sym_package_lit] = STATE(1997), - [sym_include_reader_macro] = STATE(1997), - [sym_complex_num_lit] = STATE(1997), - [aux_sym_dis_expr_repeat1] = STATE(7), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(458), - [sym_comment] = ACTIONS(458), - [anon_sym_POUND_] = ACTIONS(463), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(468), - [aux_sym_num_lit_token1] = ACTIONS(73), - [anon_sym_COLON] = ACTIONS(76), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_nil_lit] = ACTIONS(468), - [aux_sym_sym_lit_token1] = ACTIONS(85), - [anon_sym_CARET] = ACTIONS(471), - [anon_sym_POUND_CARET] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_RPAREN] = ACTIONS(486), - [anon_sym_POUND0A] = ACTIONS(103), - [anon_sym_POUND0a] = ACTIONS(103), - [anon_sym_POUND_QMARK] = ACTIONS(106), - [anon_sym_POUND_QMARK_AT] = ACTIONS(109), - [anon_sym_POUND_SQUOTE] = ACTIONS(112), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_COMMA_AT] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(124), + [sym__gap] = STATE(829), + [sym_dis_expr] = STATE(829), + [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(840), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(15), + [sym__bare_list_lit] = STATE(841), + [sym_vec_lit] = STATE(15), + [sym_set_lit] = STATE(15), + [sym__bare_set_lit] = STATE(842), + [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(841), + [sym_loop_macro] = STATE(841), + [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(829), + [aux_sym_list_lit_repeat1] = STATE(2335), + [sym__ws] = ACTIONS(427), + [sym_comment] = ACTIONS(427), + [anon_sym_POUND_] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(433), + [aux_sym_num_lit_token1] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_nil_lit] = ACTIONS(433), + [aux_sym_sym_lit_token1] = ACTIONS(77), + [anon_sym_CARET] = ACTIONS(435), + [anon_sym_POUND_CARET] = ACTIONS(438), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_RPAREN] = ACTIONS(444), + [anon_sym_POUND0A] = ACTIONS(90), + [anon_sym_POUND0a] = ACTIONS(90), + [anon_sym_POUND_QMARK] = ACTIONS(92), + [anon_sym_POUND_QMARK_AT] = ACTIONS(94), + [anon_sym_POUND_SQUOTE] = ACTIONS(96), + [anon_sym_SQUOTE] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_COMMA_AT] = ACTIONS(102), + [anon_sym_COMMA] = ACTIONS(104), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(468), - [anon_sym_cl] = ACTIONS(490), - [anon_sym_EQ] = ACTIONS(495), - [aux_sym_accumulation_verb_token1] = ACTIONS(498), - [anon_sym_for] = ACTIONS(498), - [anon_sym_and] = ACTIONS(498), - [anon_sym_as] = ACTIONS(498), - [anon_sym_with] = ACTIONS(498), - [anon_sym_do] = ACTIONS(498), - [anon_sym_while] = ACTIONS(498), - [anon_sym_until] = ACTIONS(498), - [anon_sym_repeat] = ACTIONS(498), - [anon_sym_when] = ACTIONS(498), - [anon_sym_if] = ACTIONS(498), - [anon_sym_unless] = ACTIONS(498), - [anon_sym_always] = ACTIONS(498), - [anon_sym_thereis] = ACTIONS(498), - [anon_sym_never] = ACTIONS(498), - [anon_sym_else] = ACTIONS(498), - [anon_sym_finally] = ACTIONS(498), - [anon_sym_return] = ACTIONS(498), - [anon_sym_initially] = ACTIONS(498), - [anon_sym_POUNDP] = ACTIONS(136), - [anon_sym_POUNDp] = ACTIONS(136), - [sym_self_referential_reader_macro] = ACTIONS(502), - [anon_sym_POUND_PLUS] = ACTIONS(142), - [anon_sym_POUND_DASH] = ACTIONS(142), - [anon_sym_POUNDC] = ACTIONS(145), - [anon_sym_POUNDc] = ACTIONS(145), + [sym_fancy_literal] = ACTIONS(433), + [anon_sym_cl] = ACTIONS(446), + [anon_sym_EQ] = ACTIONS(449), + [aux_sym_accumulation_verb_token1] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_and] = ACTIONS(451), + [anon_sym_as] = ACTIONS(451), + [anon_sym_with] = ACTIONS(451), + [anon_sym_do] = ACTIONS(451), + [anon_sym_while] = ACTIONS(451), + [anon_sym_until] = ACTIONS(451), + [anon_sym_repeat] = ACTIONS(451), + [anon_sym_when] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_unless] = ACTIONS(451), + [anon_sym_always] = ACTIONS(451), + [anon_sym_thereis] = ACTIONS(451), + [anon_sym_never] = ACTIONS(451), + [anon_sym_else] = ACTIONS(451), + [anon_sym_finally] = ACTIONS(451), + [anon_sym_return] = ACTIONS(451), + [anon_sym_initially] = ACTIONS(451), + [anon_sym_POUNDP] = ACTIONS(113), + [anon_sym_POUNDp] = ACTIONS(113), + [sym_self_referential_reader_macro] = ACTIONS(453), + [anon_sym_POUND_PLUS] = ACTIONS(117), + [anon_sym_POUND_DASH] = ACTIONS(117), + [anon_sym_POUNDC] = ACTIONS(119), + [anon_sym_POUNDc] = ACTIONS(119), }, [12] = { - [sym__gap] = STATE(5), - [sym_dis_expr] = STATE(5), - [sym__form] = STATE(2023), - [sym_num_lit] = STATE(2023), - [sym_kwd_lit] = STATE(2023), - [sym_str_lit] = STATE(2023), - [sym_char_lit] = STATE(2023), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2023), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2023), - [sym_set_lit] = STATE(2023), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2023), - [sym_splicing_read_cond_lit] = STATE(2023), - [sym_var_quoting_lit] = STATE(2023), - [sym_quoting_lit] = STATE(2023), - [sym_syn_quoting_lit] = STATE(2023), - [sym_unquote_splicing_lit] = STATE(2023), - [sym_unquoting_lit] = STATE(2023), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2023), - [sym_package_lit] = STATE(2023), - [sym_include_reader_macro] = STATE(2023), - [sym_complex_num_lit] = STATE(2023), - [aux_sym_dis_expr_repeat1] = STATE(5), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(505), - [sym_comment] = ACTIONS(505), - [anon_sym_POUND_] = ACTIONS(508), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(511), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(511), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(513), - [anon_sym_POUND_CARET] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(519), - [anon_sym_RPAREN] = ACTIONS(522), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(7), + [sym_dis_expr] = STATE(7), + [sym__form] = STATE(1941), + [sym_num_lit] = STATE(1941), + [sym_kwd_lit] = STATE(1941), + [sym_str_lit] = STATE(1941), + [sym_char_lit] = STATE(1941), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1941), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1941), + [sym_set_lit] = STATE(1941), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1941), + [sym_splicing_read_cond_lit] = STATE(1941), + [sym_var_quoting_lit] = STATE(1941), + [sym_quoting_lit] = STATE(1941), + [sym_syn_quoting_lit] = STATE(1941), + [sym_unquote_splicing_lit] = STATE(1941), + [sym_unquoting_lit] = STATE(1941), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1941), + [sym_package_lit] = STATE(1941), + [sym_include_reader_macro] = STATE(1941), + [sym_complex_num_lit] = STATE(1941), + [aux_sym_dis_expr_repeat1] = STATE(7), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(455), + [sym_comment] = ACTIONS(455), + [anon_sym_POUND_] = ACTIONS(459), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(463), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(463), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(465), + [anon_sym_POUND_CARET] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(511), - [anon_sym_cl] = ACTIONS(524), - [anon_sym_EQ] = ACTIONS(527), - [aux_sym_accumulation_verb_token1] = ACTIONS(529), - [anon_sym_for] = ACTIONS(529), - [anon_sym_and] = ACTIONS(529), - [anon_sym_as] = ACTIONS(529), - [anon_sym_with] = ACTIONS(529), - [anon_sym_do] = ACTIONS(529), - [anon_sym_while] = ACTIONS(529), - [anon_sym_until] = ACTIONS(529), - [anon_sym_repeat] = ACTIONS(529), - [anon_sym_when] = ACTIONS(529), - [anon_sym_if] = ACTIONS(529), - [anon_sym_unless] = ACTIONS(529), - [anon_sym_always] = ACTIONS(529), - [anon_sym_thereis] = ACTIONS(529), - [anon_sym_never] = ACTIONS(529), - [anon_sym_else] = ACTIONS(529), - [anon_sym_finally] = ACTIONS(529), - [anon_sym_return] = ACTIONS(529), - [anon_sym_initially] = ACTIONS(529), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(531), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(463), + [anon_sym_cl] = ACTIONS(480), + [anon_sym_EQ] = ACTIONS(484), + [aux_sym_accumulation_verb_token1] = ACTIONS(486), + [anon_sym_for] = ACTIONS(486), + [anon_sym_and] = ACTIONS(486), + [anon_sym_as] = ACTIONS(486), + [anon_sym_with] = ACTIONS(486), + [anon_sym_do] = ACTIONS(486), + [anon_sym_while] = ACTIONS(486), + [anon_sym_until] = ACTIONS(486), + [anon_sym_repeat] = ACTIONS(486), + [anon_sym_when] = ACTIONS(486), + [anon_sym_if] = ACTIONS(486), + [anon_sym_unless] = ACTIONS(486), + [anon_sym_always] = ACTIONS(486), + [anon_sym_thereis] = ACTIONS(486), + [anon_sym_never] = ACTIONS(486), + [anon_sym_else] = ACTIONS(486), + [anon_sym_finally] = ACTIONS(486), + [anon_sym_return] = ACTIONS(486), + [anon_sym_initially] = ACTIONS(486), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(489), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [13] = { - [sym__gap] = STATE(17), - [sym_dis_expr] = STATE(17), - [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(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1984), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1984), - [sym_set_lit] = STATE(1984), - [sym__bare_set_lit] = STATE(1853), - [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(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1984), - [sym_package_lit] = STATE(1984), - [sym_include_reader_macro] = STATE(1984), - [sym_complex_num_lit] = STATE(1984), - [aux_sym_dis_expr_repeat1] = STATE(17), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(533), - [sym_comment] = ACTIONS(533), - [anon_sym_POUND_] = ACTIONS(537), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(541), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(541), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_POUND_CARET] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(551), - [anon_sym_RPAREN] = ACTIONS(555), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(829), + [sym_dis_expr] = STATE(829), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2037), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2037), + [sym_set_lit] = STATE(2037), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(829), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(491), + [sym_comment] = ACTIONS(491), + [anon_sym_POUND_] = ACTIONS(495), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(499), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(499), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(501), + [anon_sym_POUND_CARET] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(513), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(541), - [anon_sym_cl] = ACTIONS(558), - [anon_sym_EQ] = ACTIONS(562), - [aux_sym_accumulation_verb_token1] = ACTIONS(564), - [anon_sym_for] = ACTIONS(564), - [anon_sym_and] = ACTIONS(564), - [anon_sym_as] = ACTIONS(564), - [anon_sym_with] = ACTIONS(564), - [anon_sym_do] = ACTIONS(564), - [anon_sym_while] = ACTIONS(564), - [anon_sym_until] = ACTIONS(564), - [anon_sym_repeat] = ACTIONS(564), - [anon_sym_when] = ACTIONS(564), - [anon_sym_if] = ACTIONS(564), - [anon_sym_unless] = ACTIONS(564), - [anon_sym_always] = ACTIONS(564), - [anon_sym_thereis] = ACTIONS(564), - [anon_sym_never] = ACTIONS(564), - [anon_sym_else] = ACTIONS(564), - [anon_sym_finally] = ACTIONS(564), - [anon_sym_return] = ACTIONS(564), - [anon_sym_initially] = ACTIONS(564), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(567), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(499), + [anon_sym_cl] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(520), + [aux_sym_accumulation_verb_token1] = ACTIONS(522), + [anon_sym_for] = ACTIONS(522), + [anon_sym_and] = ACTIONS(522), + [anon_sym_as] = ACTIONS(522), + [anon_sym_with] = ACTIONS(522), + [anon_sym_do] = ACTIONS(522), + [anon_sym_while] = ACTIONS(522), + [anon_sym_until] = ACTIONS(522), + [anon_sym_repeat] = ACTIONS(522), + [anon_sym_when] = ACTIONS(522), + [anon_sym_if] = ACTIONS(522), + [anon_sym_unless] = ACTIONS(522), + [anon_sym_always] = ACTIONS(522), + [anon_sym_thereis] = ACTIONS(522), + [anon_sym_never] = ACTIONS(522), + [anon_sym_else] = ACTIONS(522), + [anon_sym_finally] = ACTIONS(522), + [anon_sym_return] = ACTIONS(522), + [anon_sym_initially] = ACTIONS(522), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(525), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [14] = { - [sym__gap] = STATE(18), - [sym_dis_expr] = STATE(18), - [sym__form] = STATE(1986), - [sym_num_lit] = STATE(1986), - [sym_kwd_lit] = STATE(1986), - [sym_str_lit] = STATE(1986), - [sym_char_lit] = STATE(1986), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1986), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1986), - [sym_set_lit] = STATE(1986), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1986), - [sym_splicing_read_cond_lit] = STATE(1986), - [sym_var_quoting_lit] = STATE(1986), - [sym_quoting_lit] = STATE(1986), - [sym_syn_quoting_lit] = STATE(1986), - [sym_unquote_splicing_lit] = STATE(1986), - [sym_unquoting_lit] = STATE(1986), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1986), - [sym_package_lit] = STATE(1986), - [sym_include_reader_macro] = STATE(1986), - [sym_complex_num_lit] = STATE(1986), - [aux_sym_dis_expr_repeat1] = STATE(18), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(569), - [sym_comment] = ACTIONS(569), - [anon_sym_POUND_] = ACTIONS(572), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(575), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(575), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_POUND_CARET] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(583), - [anon_sym_RPAREN] = ACTIONS(586), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(3), + [sym_dis_expr] = STATE(3), + [sym__form] = STATE(2093), + [sym_num_lit] = STATE(2093), + [sym_kwd_lit] = STATE(2093), + [sym_str_lit] = STATE(2093), + [sym_char_lit] = STATE(2093), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2093), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2093), + [sym_set_lit] = STATE(2093), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2093), + [sym_splicing_read_cond_lit] = STATE(2093), + [sym_var_quoting_lit] = STATE(2093), + [sym_quoting_lit] = STATE(2093), + [sym_syn_quoting_lit] = STATE(2093), + [sym_unquote_splicing_lit] = STATE(2093), + [sym_unquoting_lit] = STATE(2093), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2093), + [sym_package_lit] = STATE(2093), + [sym_include_reader_macro] = STATE(2093), + [sym_complex_num_lit] = STATE(2093), + [aux_sym_dis_expr_repeat1] = STATE(3), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(527), + [sym_comment] = ACTIONS(527), + [anon_sym_POUND_] = ACTIONS(531), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(535), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(535), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_POUND_CARET] = ACTIONS(541), + [anon_sym_LPAREN] = ACTIONS(545), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(575), - [anon_sym_cl] = ACTIONS(588), - [anon_sym_EQ] = ACTIONS(591), - [aux_sym_accumulation_verb_token1] = ACTIONS(593), - [anon_sym_for] = ACTIONS(593), - [anon_sym_and] = ACTIONS(593), - [anon_sym_as] = ACTIONS(593), - [anon_sym_with] = ACTIONS(593), - [anon_sym_do] = ACTIONS(593), - [anon_sym_while] = ACTIONS(593), - [anon_sym_until] = ACTIONS(593), - [anon_sym_repeat] = ACTIONS(593), - [anon_sym_when] = ACTIONS(593), - [anon_sym_if] = ACTIONS(593), - [anon_sym_unless] = ACTIONS(593), - [anon_sym_always] = ACTIONS(593), - [anon_sym_thereis] = ACTIONS(593), - [anon_sym_never] = ACTIONS(593), - [anon_sym_else] = ACTIONS(593), - [anon_sym_finally] = ACTIONS(593), - [anon_sym_return] = ACTIONS(593), - [anon_sym_initially] = ACTIONS(593), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(595), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(535), + [anon_sym_cl] = ACTIONS(552), + [anon_sym_EQ] = ACTIONS(556), + [aux_sym_accumulation_verb_token1] = ACTIONS(558), + [anon_sym_for] = ACTIONS(558), + [anon_sym_and] = ACTIONS(558), + [anon_sym_as] = ACTIONS(558), + [anon_sym_with] = ACTIONS(558), + [anon_sym_do] = ACTIONS(558), + [anon_sym_while] = ACTIONS(558), + [anon_sym_until] = ACTIONS(558), + [anon_sym_repeat] = ACTIONS(558), + [anon_sym_when] = ACTIONS(558), + [anon_sym_if] = ACTIONS(558), + [anon_sym_unless] = ACTIONS(558), + [anon_sym_always] = ACTIONS(558), + [anon_sym_thereis] = ACTIONS(558), + [anon_sym_never] = ACTIONS(558), + [anon_sym_else] = ACTIONS(558), + [anon_sym_finally] = ACTIONS(558), + [anon_sym_return] = ACTIONS(558), + [anon_sym_initially] = ACTIONS(558), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(561), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [15] = { - [sym__gap] = STATE(229), - [sym_dis_expr] = STATE(229), - [sym__form] = STATE(778), - [sym_num_lit] = STATE(778), - [sym_kwd_lit] = STATE(778), - [sym_str_lit] = STATE(778), - [sym_char_lit] = STATE(778), - [sym_sym_lit] = STATE(1003), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(778), - [sym__bare_list_lit] = STATE(1024), - [sym_vec_lit] = STATE(778), - [sym_set_lit] = STATE(778), - [sym__bare_set_lit] = STATE(1023), - [sym_read_cond_lit] = STATE(778), - [sym_splicing_read_cond_lit] = STATE(778), - [sym_var_quoting_lit] = STATE(778), - [sym_quoting_lit] = STATE(778), - [sym_syn_quoting_lit] = STATE(778), - [sym_unquote_splicing_lit] = STATE(778), - [sym_unquoting_lit] = STATE(778), - [sym_defun] = STATE(1024), - [sym_loop_macro] = STATE(1024), - [sym_path_lit] = STATE(778), - [sym_package_lit] = STATE(778), - [sym_include_reader_macro] = STATE(778), - [sym_complex_num_lit] = STATE(778), - [aux_sym_dis_expr_repeat1] = STATE(229), - [aux_sym_list_lit_repeat1] = STATE(2101), - [aux_sym_do_clause_repeat1] = STATE(15), - [sym__ws] = ACTIONS(597), - [sym_comment] = ACTIONS(597), - [anon_sym_POUND_] = ACTIONS(600), - [anon_sym_POUND] = ACTIONS(603), - [anon_sym_DOT] = ACTIONS(606), - [aux_sym_num_lit_token1] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(612), - [anon_sym_COLON_COLON] = ACTIONS(615), - [anon_sym_DQUOTE] = ACTIONS(618), - [sym_nil_lit] = ACTIONS(606), - [aux_sym_sym_lit_token1] = ACTIONS(621), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_POUND_CARET] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_RPAREN] = ACTIONS(633), - [anon_sym_POUND0A] = ACTIONS(635), - [anon_sym_POUND0a] = ACTIONS(635), - [anon_sym_POUND_QMARK] = ACTIONS(638), - [anon_sym_POUND_QMARK_AT] = ACTIONS(641), - [anon_sym_POUND_SQUOTE] = ACTIONS(644), - [anon_sym_SQUOTE] = ACTIONS(647), - [anon_sym_BQUOTE] = ACTIONS(650), - [anon_sym_COMMA_AT] = ACTIONS(653), - [anon_sym_COMMA] = ACTIONS(656), + [sym__gap] = STATE(17), + [sym_dis_expr] = STATE(17), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2110), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2110), + [sym_set_lit] = STATE(2110), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(17), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(563), + [sym_comment] = ACTIONS(563), + [anon_sym_POUND_] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(571), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(571), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_POUND_CARET] = ACTIONS(577), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(606), - [anon_sym_cl] = ACTIONS(659), - [aux_sym_accumulation_verb_token1] = ACTIONS(662), - [anon_sym_for] = ACTIONS(662), - [anon_sym_and] = ACTIONS(662), - [anon_sym_as] = ACTIONS(662), - [anon_sym_with] = ACTIONS(662), - [anon_sym_do] = ACTIONS(662), - [anon_sym_while] = ACTIONS(662), - [anon_sym_until] = ACTIONS(662), - [anon_sym_repeat] = ACTIONS(662), - [anon_sym_when] = ACTIONS(662), - [anon_sym_if] = ACTIONS(662), - [anon_sym_unless] = ACTIONS(662), - [anon_sym_always] = ACTIONS(662), - [anon_sym_thereis] = ACTIONS(662), - [anon_sym_never] = ACTIONS(662), - [anon_sym_else] = ACTIONS(662), - [anon_sym_finally] = ACTIONS(662), - [anon_sym_return] = ACTIONS(662), - [anon_sym_initially] = ACTIONS(662), - [anon_sym_POUNDP] = ACTIONS(664), - [anon_sym_POUNDp] = ACTIONS(664), - [sym_self_referential_reader_macro] = ACTIONS(667), - [anon_sym_POUND_PLUS] = ACTIONS(670), - [anon_sym_POUND_DASH] = ACTIONS(670), - [anon_sym_POUNDC] = ACTIONS(673), - [anon_sym_POUNDc] = ACTIONS(673), + [sym_fancy_literal] = ACTIONS(571), + [anon_sym_cl] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(592), + [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(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(597), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [16] = { - [sym__gap] = STATE(11), - [sym_dis_expr] = STATE(11), - [sym__form] = STATE(2026), - [sym_num_lit] = STATE(2026), - [sym_kwd_lit] = STATE(2026), - [sym_str_lit] = STATE(2026), - [sym_char_lit] = STATE(2026), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2026), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2026), - [sym_set_lit] = STATE(2026), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2026), - [sym_splicing_read_cond_lit] = STATE(2026), - [sym_var_quoting_lit] = STATE(2026), - [sym_quoting_lit] = STATE(2026), - [sym_syn_quoting_lit] = STATE(2026), - [sym_unquote_splicing_lit] = STATE(2026), - [sym_unquoting_lit] = STATE(2026), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2026), - [sym_package_lit] = STATE(2026), - [sym_include_reader_macro] = STATE(2026), - [sym_complex_num_lit] = STATE(2026), - [aux_sym_dis_expr_repeat1] = STATE(11), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(676), - [sym_comment] = ACTIONS(676), - [anon_sym_POUND_] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(684), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(684), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_POUND_CARET] = ACTIONS(690), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_RPAREN] = ACTIONS(698), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(684), - [anon_sym_cl] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(705), - [aux_sym_accumulation_verb_token1] = ACTIONS(707), - [anon_sym_for] = ACTIONS(707), - [anon_sym_and] = ACTIONS(707), - [anon_sym_as] = ACTIONS(707), - [anon_sym_with] = ACTIONS(707), - [anon_sym_do] = ACTIONS(707), - [anon_sym_while] = ACTIONS(707), - [anon_sym_until] = ACTIONS(707), - [anon_sym_repeat] = ACTIONS(707), - [anon_sym_when] = ACTIONS(707), - [anon_sym_if] = ACTIONS(707), - [anon_sym_unless] = ACTIONS(707), - [anon_sym_always] = ACTIONS(707), - [anon_sym_thereis] = ACTIONS(707), - [anon_sym_never] = ACTIONS(707), - [anon_sym_else] = ACTIONS(707), - [anon_sym_finally] = ACTIONS(707), - [anon_sym_return] = ACTIONS(707), - [anon_sym_initially] = ACTIONS(707), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(710), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), - }, - [17] = { [sym__gap] = STATE(2), [sym_dis_expr] = STATE(2), - [sym__form] = STATE(2028), - [sym_num_lit] = STATE(2028), - [sym_kwd_lit] = STATE(2028), - [sym_str_lit] = STATE(2028), - [sym_char_lit] = STATE(2028), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2028), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2028), - [sym_set_lit] = STATE(2028), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2028), - [sym_splicing_read_cond_lit] = STATE(2028), - [sym_var_quoting_lit] = STATE(2028), - [sym_quoting_lit] = STATE(2028), - [sym_syn_quoting_lit] = STATE(2028), - [sym_unquote_splicing_lit] = STATE(2028), - [sym_unquoting_lit] = STATE(2028), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2028), - [sym_package_lit] = STATE(2028), - [sym_include_reader_macro] = STATE(2028), - [sym_complex_num_lit] = STATE(2028), + [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(840), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(9), + [sym__bare_list_lit] = STATE(841), + [sym_vec_lit] = STATE(9), + [sym_set_lit] = STATE(9), + [sym__bare_set_lit] = STATE(842), + [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(841), + [sym_loop_macro] = STATE(841), + [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(2), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(712), - [sym_comment] = ACTIONS(712), - [anon_sym_POUND_] = ACTIONS(717), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(722), - [aux_sym_num_lit_token1] = ACTIONS(73), - [anon_sym_COLON] = ACTIONS(76), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_nil_lit] = ACTIONS(722), - [aux_sym_sym_lit_token1] = ACTIONS(85), - [anon_sym_CARET] = ACTIONS(725), - [anon_sym_POUND_CARET] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(740), - [anon_sym_POUND0A] = ACTIONS(103), - [anon_sym_POUND0a] = ACTIONS(103), - [anon_sym_POUND_QMARK] = ACTIONS(106), - [anon_sym_POUND_QMARK_AT] = ACTIONS(109), - [anon_sym_POUND_SQUOTE] = ACTIONS(112), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_COMMA_AT] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(124), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(722), - [anon_sym_cl] = ACTIONS(744), - [anon_sym_EQ] = ACTIONS(749), - [aux_sym_accumulation_verb_token1] = ACTIONS(752), - [anon_sym_for] = ACTIONS(752), - [anon_sym_and] = ACTIONS(752), - [anon_sym_as] = ACTIONS(752), - [anon_sym_with] = ACTIONS(752), - [anon_sym_do] = ACTIONS(752), - [anon_sym_while] = ACTIONS(752), - [anon_sym_until] = ACTIONS(752), - [anon_sym_repeat] = ACTIONS(752), - [anon_sym_when] = ACTIONS(752), - [anon_sym_if] = ACTIONS(752), - [anon_sym_unless] = ACTIONS(752), - [anon_sym_always] = ACTIONS(752), - [anon_sym_thereis] = ACTIONS(752), - [anon_sym_never] = ACTIONS(752), - [anon_sym_else] = ACTIONS(752), - [anon_sym_finally] = ACTIONS(752), - [anon_sym_return] = ACTIONS(752), - [anon_sym_initially] = ACTIONS(752), - [anon_sym_POUNDP] = ACTIONS(136), - [anon_sym_POUNDp] = ACTIONS(136), - [sym_self_referential_reader_macro] = ACTIONS(756), - [anon_sym_POUND_PLUS] = ACTIONS(142), - [anon_sym_POUND_DASH] = ACTIONS(142), - [anon_sym_POUNDC] = ACTIONS(145), - [anon_sym_POUNDc] = ACTIONS(145), - }, - [18] = { - [sym__gap] = STATE(8), - [sym_dis_expr] = STATE(8), - [sym__form] = STATE(2030), - [sym_num_lit] = STATE(2030), - [sym_kwd_lit] = STATE(2030), - [sym_str_lit] = STATE(2030), - [sym_char_lit] = STATE(2030), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2030), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2030), - [sym_set_lit] = STATE(2030), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2030), - [sym_splicing_read_cond_lit] = STATE(2030), - [sym_var_quoting_lit] = STATE(2030), - [sym_quoting_lit] = STATE(2030), - [sym_syn_quoting_lit] = STATE(2030), - [sym_unquote_splicing_lit] = STATE(2030), - [sym_unquoting_lit] = STATE(2030), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2030), - [sym_package_lit] = STATE(2030), - [sym_include_reader_macro] = STATE(2030), - [sym_complex_num_lit] = STATE(2030), - [aux_sym_dis_expr_repeat1] = STATE(8), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(759), - [sym_comment] = ACTIONS(759), - [anon_sym_POUND_] = ACTIONS(763), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(767), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(767), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(769), - [anon_sym_POUND_CARET] = ACTIONS(773), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(767), - [anon_sym_cl] = ACTIONS(784), - [anon_sym_EQ] = ACTIONS(788), - [aux_sym_accumulation_verb_token1] = ACTIONS(790), - [anon_sym_for] = ACTIONS(790), - [anon_sym_and] = ACTIONS(790), - [anon_sym_as] = ACTIONS(790), - [anon_sym_with] = ACTIONS(790), - [anon_sym_do] = ACTIONS(790), - [anon_sym_while] = ACTIONS(790), - [anon_sym_until] = ACTIONS(790), - [anon_sym_repeat] = ACTIONS(790), - [anon_sym_when] = ACTIONS(790), - [anon_sym_if] = ACTIONS(790), - [anon_sym_unless] = ACTIONS(790), - [anon_sym_always] = ACTIONS(790), - [anon_sym_thereis] = ACTIONS(790), - [anon_sym_never] = ACTIONS(790), - [anon_sym_else] = ACTIONS(790), - [anon_sym_finally] = ACTIONS(790), - [anon_sym_return] = ACTIONS(790), - [anon_sym_initially] = ACTIONS(790), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(793), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), - }, - [19] = { - [sym__gap] = STATE(773), - [sym_dis_expr] = STATE(773), - [sym__form] = STATE(1998), - [sym_num_lit] = STATE(1998), - [sym_kwd_lit] = STATE(1998), - [sym_str_lit] = STATE(1998), - [sym_char_lit] = STATE(1998), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1998), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1998), - [sym_set_lit] = STATE(1998), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1998), - [sym_splicing_read_cond_lit] = STATE(1998), - [sym_var_quoting_lit] = STATE(1998), - [sym_quoting_lit] = STATE(1998), - [sym_syn_quoting_lit] = STATE(1998), - [sym_unquote_splicing_lit] = STATE(1998), - [sym_unquoting_lit] = STATE(1998), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1998), - [sym_package_lit] = STATE(1998), - [sym_include_reader_macro] = STATE(1998), - [sym_complex_num_lit] = STATE(1998), - [aux_sym_dis_expr_repeat1] = STATE(773), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(795), - [sym_comment] = ACTIONS(795), - [anon_sym_POUND_] = ACTIONS(799), - [anon_sym_POUND] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(803), - [aux_sym_num_lit_token1] = ACTIONS(73), - [anon_sym_COLON] = ACTIONS(76), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(82), - [sym_nil_lit] = ACTIONS(803), - [aux_sym_sym_lit_token1] = ACTIONS(85), - [anon_sym_CARET] = ACTIONS(806), - [anon_sym_POUND_CARET] = ACTIONS(810), - [anon_sym_LPAREN] = ACTIONS(814), - [anon_sym_RPAREN] = ACTIONS(818), - [anon_sym_POUND0A] = ACTIONS(103), - [anon_sym_POUND0a] = ACTIONS(103), - [anon_sym_POUND_QMARK] = ACTIONS(106), - [anon_sym_POUND_QMARK_AT] = ACTIONS(109), - [anon_sym_POUND_SQUOTE] = ACTIONS(112), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_COMMA_AT] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(124), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(803), - [anon_sym_cl] = ACTIONS(821), - [anon_sym_EQ] = ACTIONS(131), - [aux_sym_accumulation_verb_token1] = ACTIONS(825), - [anon_sym_for] = ACTIONS(825), - [anon_sym_and] = ACTIONS(825), - [anon_sym_as] = ACTIONS(825), - [anon_sym_with] = ACTIONS(825), - [anon_sym_do] = ACTIONS(825), - [anon_sym_while] = ACTIONS(825), - [anon_sym_until] = ACTIONS(825), - [anon_sym_repeat] = ACTIONS(825), - [anon_sym_when] = ACTIONS(825), - [anon_sym_if] = ACTIONS(825), - [anon_sym_unless] = ACTIONS(825), - [anon_sym_always] = ACTIONS(825), - [anon_sym_thereis] = ACTIONS(825), - [anon_sym_never] = ACTIONS(825), - [anon_sym_else] = ACTIONS(825), - [anon_sym_finally] = ACTIONS(825), - [anon_sym_return] = ACTIONS(825), - [anon_sym_initially] = ACTIONS(825), - [anon_sym_POUNDP] = ACTIONS(136), - [anon_sym_POUNDp] = ACTIONS(136), - [sym_self_referential_reader_macro] = ACTIONS(828), - [anon_sym_POUND_PLUS] = ACTIONS(142), - [anon_sym_POUND_DASH] = ACTIONS(142), - [anon_sym_POUNDC] = ACTIONS(145), - [anon_sym_POUNDc] = ACTIONS(145), - }, - [20] = { - [sym__gap] = STATE(16), - [sym_dis_expr] = STATE(16), - [sym__form] = STATE(2012), - [sym_num_lit] = STATE(2012), - [sym_kwd_lit] = STATE(2012), - [sym_str_lit] = STATE(2012), - [sym_char_lit] = STATE(2012), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2012), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2012), - [sym_set_lit] = STATE(2012), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2012), - [sym_splicing_read_cond_lit] = STATE(2012), - [sym_var_quoting_lit] = STATE(2012), - [sym_quoting_lit] = STATE(2012), - [sym_syn_quoting_lit] = STATE(2012), - [sym_unquote_splicing_lit] = STATE(2012), - [sym_unquoting_lit] = STATE(2012), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2012), - [sym_package_lit] = STATE(2012), - [sym_include_reader_macro] = STATE(2012), - [sym_complex_num_lit] = STATE(2012), - [aux_sym_dis_expr_repeat1] = STATE(16), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(831), - [sym_comment] = ACTIONS(831), - [anon_sym_POUND_] = ACTIONS(834), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(837), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(837), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(839), - [anon_sym_POUND_CARET] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(848), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(837), - [anon_sym_cl] = ACTIONS(850), - [anon_sym_EQ] = ACTIONS(853), - [aux_sym_accumulation_verb_token1] = ACTIONS(855), - [anon_sym_for] = ACTIONS(855), - [anon_sym_and] = ACTIONS(855), - [anon_sym_as] = ACTIONS(855), - [anon_sym_with] = ACTIONS(855), - [anon_sym_do] = ACTIONS(855), - [anon_sym_while] = ACTIONS(855), - [anon_sym_until] = ACTIONS(855), - [anon_sym_repeat] = ACTIONS(855), - [anon_sym_when] = ACTIONS(855), - [anon_sym_if] = ACTIONS(855), - [anon_sym_unless] = ACTIONS(855), - [anon_sym_always] = ACTIONS(855), - [anon_sym_thereis] = ACTIONS(855), - [anon_sym_never] = ACTIONS(855), - [anon_sym_else] = ACTIONS(855), - [anon_sym_finally] = ACTIONS(855), - [anon_sym_return] = ACTIONS(855), - [anon_sym_initially] = ACTIONS(855), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(857), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), - }, - [21] = { - [sym__gap] = STATE(33), - [sym_dis_expr] = STATE(33), - [sym__form] = STATE(1999), - [sym_num_lit] = STATE(1999), - [sym_kwd_lit] = STATE(1999), - [sym_str_lit] = STATE(1999), - [sym_char_lit] = STATE(1999), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1999), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1999), - [sym_set_lit] = STATE(1999), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1999), - [sym_splicing_read_cond_lit] = STATE(1999), - [sym_var_quoting_lit] = STATE(1999), - [sym_quoting_lit] = STATE(1999), - [sym_syn_quoting_lit] = STATE(1999), - [sym_unquote_splicing_lit] = STATE(1999), - [sym_unquoting_lit] = STATE(1999), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1999), - [sym_package_lit] = STATE(1999), - [sym_include_reader_macro] = STATE(1999), - [sym_complex_num_lit] = STATE(1999), - [aux_sym_dis_expr_repeat1] = STATE(33), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(859), - [sym_comment] = ACTIONS(859), - [anon_sym_POUND_] = ACTIONS(862), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(865), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(865), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(867), - [anon_sym_POUND_CARET] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(873), - [anon_sym_RPAREN] = ACTIONS(876), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [aux_sym_list_lit_repeat1] = STATE(2335), + [sym__ws] = ACTIONS(599), + [sym_comment] = ACTIONS(599), + [anon_sym_POUND_] = ACTIONS(602), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(605), + [aux_sym_num_lit_token1] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_nil_lit] = ACTIONS(605), + [aux_sym_sym_lit_token1] = ACTIONS(77), + [anon_sym_CARET] = ACTIONS(607), + [anon_sym_POUND_CARET] = ACTIONS(610), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_RPAREN] = ACTIONS(616), + [anon_sym_POUND0A] = ACTIONS(90), + [anon_sym_POUND0a] = ACTIONS(90), + [anon_sym_POUND_QMARK] = ACTIONS(92), + [anon_sym_POUND_QMARK_AT] = ACTIONS(94), + [anon_sym_POUND_SQUOTE] = ACTIONS(96), + [anon_sym_SQUOTE] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_COMMA_AT] = ACTIONS(102), + [anon_sym_COMMA] = ACTIONS(104), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(865), - [anon_sym_cl] = ACTIONS(878), - [aux_sym_accumulation_verb_token1] = ACTIONS(881), - [anon_sym_for] = ACTIONS(881), - [anon_sym_and] = ACTIONS(881), - [anon_sym_as] = ACTIONS(881), - [anon_sym_with] = ACTIONS(881), - [anon_sym_do] = ACTIONS(881), - [anon_sym_while] = ACTIONS(881), - [anon_sym_until] = ACTIONS(881), - [anon_sym_repeat] = ACTIONS(881), - [anon_sym_when] = ACTIONS(881), - [anon_sym_if] = ACTIONS(881), - [anon_sym_unless] = ACTIONS(881), - [anon_sym_always] = ACTIONS(881), - [anon_sym_thereis] = ACTIONS(881), - [anon_sym_never] = ACTIONS(881), - [anon_sym_else] = ACTIONS(881), - [anon_sym_finally] = ACTIONS(881), - [anon_sym_return] = ACTIONS(881), - [anon_sym_initially] = ACTIONS(881), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(883), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(605), + [anon_sym_cl] = ACTIONS(618), + [anon_sym_EQ] = ACTIONS(621), + [aux_sym_accumulation_verb_token1] = ACTIONS(623), + [anon_sym_for] = ACTIONS(623), + [anon_sym_and] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_with] = ACTIONS(623), + [anon_sym_do] = ACTIONS(623), + [anon_sym_while] = ACTIONS(623), + [anon_sym_until] = ACTIONS(623), + [anon_sym_repeat] = ACTIONS(623), + [anon_sym_when] = ACTIONS(623), + [anon_sym_if] = ACTIONS(623), + [anon_sym_unless] = ACTIONS(623), + [anon_sym_always] = ACTIONS(623), + [anon_sym_thereis] = ACTIONS(623), + [anon_sym_never] = ACTIONS(623), + [anon_sym_else] = ACTIONS(623), + [anon_sym_finally] = ACTIONS(623), + [anon_sym_return] = ACTIONS(623), + [anon_sym_initially] = ACTIONS(623), + [anon_sym_POUNDP] = ACTIONS(113), + [anon_sym_POUNDp] = ACTIONS(113), + [sym_self_referential_reader_macro] = ACTIONS(625), + [anon_sym_POUND_PLUS] = ACTIONS(117), + [anon_sym_POUND_DASH] = ACTIONS(117), + [anon_sym_POUNDC] = ACTIONS(119), + [anon_sym_POUNDc] = ACTIONS(119), }, - [22] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), + [17] = { + [sym__gap] = STATE(829), + [sym_dis_expr] = STATE(829), [sym__form] = STATE(2017), [sym_num_lit] = STATE(2017), [sym_kwd_lit] = STATE(2017), [sym_str_lit] = STATE(2017), [sym_char_lit] = STATE(2017), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), [sym_list_lit] = STATE(2017), - [sym__bare_list_lit] = STATE(1852), + [sym__bare_list_lit] = STATE(2169), [sym_vec_lit] = STATE(2017), [sym_set_lit] = STATE(2017), - [sym__bare_set_lit] = STATE(1853), + [sym__bare_set_lit] = STATE(2168), [sym_read_cond_lit] = STATE(2017), [sym_splicing_read_cond_lit] = STATE(2017), [sym_var_quoting_lit] = STATE(2017), @@ -11368,773 +11367,1731 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(2017), [sym_unquote_splicing_lit] = STATE(2017), [sym_unquoting_lit] = STATE(2017), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), [sym_path_lit] = STATE(2017), [sym_package_lit] = STATE(2017), [sym_include_reader_macro] = STATE(2017), [sym_complex_num_lit] = STATE(2017), - [aux_sym_dis_expr_repeat1] = STATE(775), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(885), - [sym_comment] = ACTIONS(885), - [anon_sym_POUND_] = ACTIONS(889), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(893), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(893), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(895), - [anon_sym_POUND_CARET] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(907), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [aux_sym_dis_expr_repeat1] = STATE(829), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(627), + [sym_comment] = ACTIONS(627), + [anon_sym_POUND_] = ACTIONS(631), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(635), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(635), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_POUND_CARET] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(645), + [anon_sym_RPAREN] = ACTIONS(649), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(893), - [anon_sym_cl] = ACTIONS(910), - [aux_sym_accumulation_verb_token1] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_and] = ACTIONS(914), - [anon_sym_as] = ACTIONS(914), - [anon_sym_with] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_until] = ACTIONS(914), - [anon_sym_repeat] = ACTIONS(914), - [anon_sym_when] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_unless] = ACTIONS(914), - [anon_sym_always] = ACTIONS(914), - [anon_sym_thereis] = ACTIONS(914), - [anon_sym_never] = ACTIONS(914), - [anon_sym_else] = ACTIONS(914), - [anon_sym_finally] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_initially] = ACTIONS(914), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(917), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(635), + [anon_sym_cl] = ACTIONS(652), + [anon_sym_EQ] = ACTIONS(656), + [aux_sym_accumulation_verb_token1] = ACTIONS(658), + [anon_sym_for] = ACTIONS(658), + [anon_sym_and] = ACTIONS(658), + [anon_sym_as] = ACTIONS(658), + [anon_sym_with] = ACTIONS(658), + [anon_sym_do] = ACTIONS(658), + [anon_sym_while] = ACTIONS(658), + [anon_sym_until] = ACTIONS(658), + [anon_sym_repeat] = ACTIONS(658), + [anon_sym_when] = ACTIONS(658), + [anon_sym_if] = ACTIONS(658), + [anon_sym_unless] = ACTIONS(658), + [anon_sym_always] = ACTIONS(658), + [anon_sym_thereis] = ACTIONS(658), + [anon_sym_never] = ACTIONS(658), + [anon_sym_else] = ACTIONS(658), + [anon_sym_finally] = ACTIONS(658), + [anon_sym_return] = ACTIONS(658), + [anon_sym_initially] = ACTIONS(658), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(661), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [18] = { + [sym__gap] = STATE(829), + [sym_dis_expr] = STATE(829), + [sym__form] = STATE(1878), + [sym_num_lit] = STATE(1878), + [sym_kwd_lit] = STATE(1878), + [sym_str_lit] = STATE(1878), + [sym_char_lit] = STATE(1878), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1878), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1878), + [sym_set_lit] = STATE(1878), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1878), + [sym_splicing_read_cond_lit] = STATE(1878), + [sym_var_quoting_lit] = STATE(1878), + [sym_quoting_lit] = STATE(1878), + [sym_syn_quoting_lit] = STATE(1878), + [sym_unquote_splicing_lit] = STATE(1878), + [sym_unquoting_lit] = STATE(1878), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1878), + [sym_package_lit] = STATE(1878), + [sym_include_reader_macro] = STATE(1878), + [sym_complex_num_lit] = STATE(1878), + [aux_sym_dis_expr_repeat1] = STATE(829), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(663), + [sym_comment] = ACTIONS(663), + [anon_sym_POUND_] = ACTIONS(667), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(671), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(671), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_POUND_CARET] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(681), + [anon_sym_RPAREN] = ACTIONS(685), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(671), + [anon_sym_cl] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(692), + [aux_sym_accumulation_verb_token1] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_and] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_with] = ACTIONS(694), + [anon_sym_do] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [anon_sym_until] = ACTIONS(694), + [anon_sym_repeat] = ACTIONS(694), + [anon_sym_when] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_unless] = ACTIONS(694), + [anon_sym_always] = ACTIONS(694), + [anon_sym_thereis] = ACTIONS(694), + [anon_sym_never] = ACTIONS(694), + [anon_sym_else] = ACTIONS(694), + [anon_sym_finally] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_initially] = ACTIONS(694), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(697), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [19] = { + [sym__gap] = STATE(829), + [sym_dis_expr] = STATE(829), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2033), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2033), + [sym_set_lit] = STATE(2033), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(829), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(699), + [sym_comment] = ACTIONS(699), + [anon_sym_POUND_] = ACTIONS(703), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(707), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(707), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_POUND_CARET] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(717), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(707), + [anon_sym_cl] = ACTIONS(724), + [anon_sym_EQ] = ACTIONS(728), + [aux_sym_accumulation_verb_token1] = ACTIONS(730), + [anon_sym_for] = ACTIONS(730), + [anon_sym_and] = ACTIONS(730), + [anon_sym_as] = ACTIONS(730), + [anon_sym_with] = ACTIONS(730), + [anon_sym_do] = ACTIONS(730), + [anon_sym_while] = ACTIONS(730), + [anon_sym_until] = ACTIONS(730), + [anon_sym_repeat] = ACTIONS(730), + [anon_sym_when] = ACTIONS(730), + [anon_sym_if] = ACTIONS(730), + [anon_sym_unless] = ACTIONS(730), + [anon_sym_always] = ACTIONS(730), + [anon_sym_thereis] = ACTIONS(730), + [anon_sym_never] = ACTIONS(730), + [anon_sym_else] = ACTIONS(730), + [anon_sym_finally] = ACTIONS(730), + [anon_sym_return] = ACTIONS(730), + [anon_sym_initially] = ACTIONS(730), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(733), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [20] = { + [sym__gap] = STATE(26), + [sym_dis_expr] = STATE(26), + [sym__form] = STATE(1992), + [sym_num_lit] = STATE(1992), + [sym_kwd_lit] = STATE(1992), + [sym_str_lit] = STATE(1992), + [sym_char_lit] = STATE(1992), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1992), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1992), + [sym_set_lit] = STATE(1992), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1992), + [sym_splicing_read_cond_lit] = STATE(1992), + [sym_var_quoting_lit] = STATE(1992), + [sym_quoting_lit] = STATE(1992), + [sym_syn_quoting_lit] = STATE(1992), + [sym_unquote_splicing_lit] = STATE(1992), + [sym_unquoting_lit] = STATE(1992), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1992), + [sym_package_lit] = STATE(1992), + [sym_include_reader_macro] = STATE(1992), + [sym_complex_num_lit] = STATE(1992), + [aux_sym_dis_expr_repeat1] = STATE(26), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(735), + [sym_comment] = ACTIONS(735), + [anon_sym_POUND_] = ACTIONS(739), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(743), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(743), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(745), + [anon_sym_POUND_CARET] = ACTIONS(749), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_RPAREN] = ACTIONS(757), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(743), + [anon_sym_cl] = ACTIONS(760), + [anon_sym_EQ] = ACTIONS(764), + [aux_sym_accumulation_verb_token1] = ACTIONS(766), + [anon_sym_for] = ACTIONS(766), + [anon_sym_and] = ACTIONS(766), + [anon_sym_as] = ACTIONS(766), + [anon_sym_with] = ACTIONS(766), + [anon_sym_do] = ACTIONS(766), + [anon_sym_while] = ACTIONS(766), + [anon_sym_until] = ACTIONS(766), + [anon_sym_repeat] = ACTIONS(766), + [anon_sym_when] = ACTIONS(766), + [anon_sym_if] = ACTIONS(766), + [anon_sym_unless] = ACTIONS(766), + [anon_sym_always] = ACTIONS(766), + [anon_sym_thereis] = ACTIONS(766), + [anon_sym_never] = ACTIONS(766), + [anon_sym_else] = ACTIONS(766), + [anon_sym_finally] = ACTIONS(766), + [anon_sym_return] = ACTIONS(766), + [anon_sym_initially] = ACTIONS(766), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(769), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [21] = { + [sym__gap] = STATE(364), + [sym_dis_expr] = STATE(364), + [sym__form] = STATE(830), + [sym_num_lit] = STATE(830), + [sym_kwd_lit] = STATE(830), + [sym_str_lit] = STATE(830), + [sym_char_lit] = STATE(830), + [sym_sym_lit] = STATE(976), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(830), + [sym__bare_list_lit] = STATE(983), + [sym_vec_lit] = STATE(830), + [sym_set_lit] = STATE(830), + [sym__bare_set_lit] = STATE(986), + [sym_read_cond_lit] = STATE(830), + [sym_splicing_read_cond_lit] = STATE(830), + [sym_var_quoting_lit] = STATE(830), + [sym_quoting_lit] = STATE(830), + [sym_syn_quoting_lit] = STATE(830), + [sym_unquote_splicing_lit] = STATE(830), + [sym_unquoting_lit] = STATE(830), + [sym_defun] = STATE(983), + [sym_loop_macro] = STATE(983), + [sym_path_lit] = STATE(830), + [sym_package_lit] = STATE(830), + [sym_include_reader_macro] = STATE(830), + [sym_complex_num_lit] = STATE(830), + [aux_sym_dis_expr_repeat1] = STATE(364), + [aux_sym_list_lit_repeat1] = STATE(2347), + [aux_sym_do_clause_repeat1] = STATE(28), + [sym__ws] = ACTIONS(771), + [sym_comment] = ACTIONS(771), + [anon_sym_POUND_] = ACTIONS(771), + [anon_sym_POUND] = ACTIONS(773), + [anon_sym_DOT] = ACTIONS(775), + [aux_sym_num_lit_token1] = ACTIONS(777), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_COLON_COLON] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(783), + [sym_nil_lit] = ACTIONS(775), + [aux_sym_sym_lit_token1] = ACTIONS(785), + [anon_sym_CARET] = ACTIONS(771), + [anon_sym_POUND_CARET] = ACTIONS(771), + [anon_sym_LPAREN] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_POUND0A] = ACTIONS(787), + [anon_sym_POUND0a] = ACTIONS(787), + [anon_sym_POUND_QMARK] = ACTIONS(789), + [anon_sym_POUND_QMARK_AT] = ACTIONS(791), + [anon_sym_POUND_SQUOTE] = ACTIONS(793), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(797), + [anon_sym_COMMA_AT] = ACTIONS(799), + [anon_sym_COMMA] = ACTIONS(801), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(775), + [anon_sym_cl] = ACTIONS(803), + [aux_sym_accumulation_verb_token1] = ACTIONS(803), + [anon_sym_for] = ACTIONS(803), + [anon_sym_and] = ACTIONS(803), + [anon_sym_as] = ACTIONS(803), + [anon_sym_with] = ACTIONS(803), + [anon_sym_do] = ACTIONS(803), + [anon_sym_while] = ACTIONS(803), + [anon_sym_until] = ACTIONS(803), + [anon_sym_repeat] = ACTIONS(803), + [anon_sym_when] = ACTIONS(803), + [anon_sym_if] = ACTIONS(803), + [anon_sym_unless] = ACTIONS(803), + [anon_sym_always] = ACTIONS(803), + [anon_sym_thereis] = ACTIONS(803), + [anon_sym_never] = ACTIONS(803), + [anon_sym_else] = ACTIONS(803), + [anon_sym_finally] = ACTIONS(803), + [anon_sym_return] = ACTIONS(803), + [anon_sym_initially] = ACTIONS(803), + [anon_sym_POUNDP] = ACTIONS(805), + [anon_sym_POUNDp] = ACTIONS(805), + [sym_self_referential_reader_macro] = ACTIONS(807), + [anon_sym_POUND_PLUS] = ACTIONS(809), + [anon_sym_POUND_DASH] = ACTIONS(809), + [anon_sym_POUNDC] = ACTIONS(811), + [anon_sym_POUNDc] = ACTIONS(811), + }, + [22] = { + [sym__gap] = STATE(19), + [sym_dis_expr] = STATE(19), + [sym__form] = STATE(1884), + [sym_num_lit] = STATE(1884), + [sym_kwd_lit] = STATE(1884), + [sym_str_lit] = STATE(1884), + [sym_char_lit] = STATE(1884), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1884), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1884), + [sym_set_lit] = STATE(1884), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1884), + [sym_splicing_read_cond_lit] = STATE(1884), + [sym_var_quoting_lit] = STATE(1884), + [sym_quoting_lit] = STATE(1884), + [sym_syn_quoting_lit] = STATE(1884), + [sym_unquote_splicing_lit] = STATE(1884), + [sym_unquoting_lit] = STATE(1884), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1884), + [sym_package_lit] = STATE(1884), + [sym_include_reader_macro] = STATE(1884), + [sym_complex_num_lit] = STATE(1884), + [aux_sym_dis_expr_repeat1] = STATE(19), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(813), + [sym_comment] = ACTIONS(813), + [anon_sym_POUND_] = ACTIONS(817), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(821), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(821), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(823), + [anon_sym_POUND_CARET] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(831), + [anon_sym_RPAREN] = ACTIONS(835), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(821), + [anon_sym_cl] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(842), + [aux_sym_accumulation_verb_token1] = ACTIONS(844), + [anon_sym_for] = ACTIONS(844), + [anon_sym_and] = ACTIONS(844), + [anon_sym_as] = ACTIONS(844), + [anon_sym_with] = ACTIONS(844), + [anon_sym_do] = ACTIONS(844), + [anon_sym_while] = ACTIONS(844), + [anon_sym_until] = ACTIONS(844), + [anon_sym_repeat] = ACTIONS(844), + [anon_sym_when] = ACTIONS(844), + [anon_sym_if] = ACTIONS(844), + [anon_sym_unless] = ACTIONS(844), + [anon_sym_always] = ACTIONS(844), + [anon_sym_thereis] = ACTIONS(844), + [anon_sym_never] = ACTIONS(844), + [anon_sym_else] = ACTIONS(844), + [anon_sym_finally] = ACTIONS(844), + [anon_sym_return] = ACTIONS(844), + [anon_sym_initially] = ACTIONS(844), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(847), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [23] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [sym__form] = STATE(2041), - [sym_num_lit] = STATE(2041), - [sym_kwd_lit] = STATE(2041), - [sym_str_lit] = STATE(2041), - [sym_char_lit] = STATE(2041), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2041), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2041), - [sym_set_lit] = STATE(2041), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2041), - [sym_splicing_read_cond_lit] = STATE(2041), - [sym_var_quoting_lit] = STATE(2041), - [sym_quoting_lit] = STATE(2041), - [sym_syn_quoting_lit] = STATE(2041), - [sym_unquote_splicing_lit] = STATE(2041), - [sym_unquoting_lit] = STATE(2041), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2041), - [sym_package_lit] = STATE(2041), - [sym_include_reader_macro] = STATE(2041), - [sym_complex_num_lit] = STATE(2041), - [aux_sym_dis_expr_repeat1] = STATE(775), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(919), - [sym_comment] = ACTIONS(919), - [anon_sym_POUND_] = ACTIONS(922), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(925), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(925), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_POUND_CARET] = ACTIONS(930), - [anon_sym_LPAREN] = ACTIONS(933), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(829), + [sym_dis_expr] = STATE(829), + [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(840), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(14), + [sym__bare_list_lit] = STATE(841), + [sym_vec_lit] = STATE(14), + [sym_set_lit] = STATE(14), + [sym__bare_set_lit] = STATE(842), + [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(841), + [sym_loop_macro] = STATE(841), + [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(829), + [aux_sym_list_lit_repeat1] = STATE(2335), + [sym__ws] = ACTIONS(849), + [sym_comment] = ACTIONS(849), + [anon_sym_POUND_] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(855), + [aux_sym_num_lit_token1] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_nil_lit] = ACTIONS(855), + [aux_sym_sym_lit_token1] = ACTIONS(77), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_POUND_CARET] = ACTIONS(860), + [anon_sym_LPAREN] = ACTIONS(863), + [anon_sym_RPAREN] = ACTIONS(866), + [anon_sym_POUND0A] = ACTIONS(90), + [anon_sym_POUND0a] = ACTIONS(90), + [anon_sym_POUND_QMARK] = ACTIONS(92), + [anon_sym_POUND_QMARK_AT] = ACTIONS(94), + [anon_sym_POUND_SQUOTE] = ACTIONS(96), + [anon_sym_SQUOTE] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_COMMA_AT] = ACTIONS(102), + [anon_sym_COMMA] = ACTIONS(104), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(925), - [anon_sym_cl] = ACTIONS(938), - [aux_sym_accumulation_verb_token1] = ACTIONS(941), - [anon_sym_for] = ACTIONS(941), - [anon_sym_and] = ACTIONS(941), - [anon_sym_as] = ACTIONS(941), - [anon_sym_with] = ACTIONS(941), - [anon_sym_do] = ACTIONS(941), - [anon_sym_while] = ACTIONS(941), - [anon_sym_until] = ACTIONS(941), - [anon_sym_repeat] = ACTIONS(941), - [anon_sym_when] = ACTIONS(941), - [anon_sym_if] = ACTIONS(941), - [anon_sym_unless] = ACTIONS(941), - [anon_sym_always] = ACTIONS(941), - [anon_sym_thereis] = ACTIONS(941), - [anon_sym_never] = ACTIONS(941), - [anon_sym_else] = ACTIONS(941), - [anon_sym_finally] = ACTIONS(941), - [anon_sym_return] = ACTIONS(941), - [anon_sym_initially] = ACTIONS(941), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(943), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(855), + [anon_sym_cl] = ACTIONS(868), + [anon_sym_EQ] = ACTIONS(871), + [aux_sym_accumulation_verb_token1] = ACTIONS(873), + [anon_sym_for] = ACTIONS(873), + [anon_sym_and] = ACTIONS(873), + [anon_sym_as] = ACTIONS(873), + [anon_sym_with] = ACTIONS(873), + [anon_sym_do] = ACTIONS(873), + [anon_sym_while] = ACTIONS(873), + [anon_sym_until] = ACTIONS(873), + [anon_sym_repeat] = ACTIONS(873), + [anon_sym_when] = ACTIONS(873), + [anon_sym_if] = ACTIONS(873), + [anon_sym_unless] = ACTIONS(873), + [anon_sym_always] = ACTIONS(873), + [anon_sym_thereis] = ACTIONS(873), + [anon_sym_never] = ACTIONS(873), + [anon_sym_else] = ACTIONS(873), + [anon_sym_finally] = ACTIONS(873), + [anon_sym_return] = ACTIONS(873), + [anon_sym_initially] = ACTIONS(873), + [anon_sym_POUNDP] = ACTIONS(113), + [anon_sym_POUNDp] = ACTIONS(113), + [sym_self_referential_reader_macro] = ACTIONS(875), + [anon_sym_POUND_PLUS] = ACTIONS(117), + [anon_sym_POUND_DASH] = ACTIONS(117), + [anon_sym_POUNDC] = ACTIONS(119), + [anon_sym_POUNDc] = ACTIONS(119), }, [24] = { - [sym__gap] = STATE(69), - [sym_dis_expr] = STATE(69), - [sym__form] = STATE(1961), - [sym_num_lit] = STATE(1961), - [sym_kwd_lit] = STATE(1961), - [sym_str_lit] = STATE(1961), - [sym_char_lit] = STATE(1961), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1961), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1961), - [sym_set_lit] = STATE(1961), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1961), - [sym_splicing_read_cond_lit] = STATE(1961), - [sym_var_quoting_lit] = STATE(1961), - [sym_quoting_lit] = STATE(1961), - [sym_syn_quoting_lit] = STATE(1961), - [sym_unquote_splicing_lit] = STATE(1961), - [sym_unquoting_lit] = STATE(1961), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1961), - [sym_package_lit] = STATE(1961), - [sym_include_reader_macro] = STATE(1961), - [sym_complex_num_lit] = STATE(1961), - [aux_sym_dis_expr_repeat1] = STATE(69), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(945), - [sym_comment] = ACTIONS(945), - [anon_sym_POUND_] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(953), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(953), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(955), - [anon_sym_POUND_CARET] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(967), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(11), + [sym_dis_expr] = STATE(11), + [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(840), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(12), + [sym__bare_list_lit] = STATE(841), + [sym_vec_lit] = STATE(12), + [sym_set_lit] = STATE(12), + [sym__bare_set_lit] = STATE(842), + [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(841), + [sym_loop_macro] = STATE(841), + [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(11), + [aux_sym_list_lit_repeat1] = STATE(2335), + [sym__ws] = ACTIONS(877), + [sym_comment] = ACTIONS(877), + [anon_sym_POUND_] = ACTIONS(880), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(883), + [aux_sym_num_lit_token1] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_nil_lit] = ACTIONS(883), + [aux_sym_sym_lit_token1] = ACTIONS(77), + [anon_sym_CARET] = ACTIONS(885), + [anon_sym_POUND_CARET] = ACTIONS(888), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(894), + [anon_sym_POUND0A] = ACTIONS(90), + [anon_sym_POUND0a] = ACTIONS(90), + [anon_sym_POUND_QMARK] = ACTIONS(92), + [anon_sym_POUND_QMARK_AT] = ACTIONS(94), + [anon_sym_POUND_SQUOTE] = ACTIONS(96), + [anon_sym_SQUOTE] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_COMMA_AT] = ACTIONS(102), + [anon_sym_COMMA] = ACTIONS(104), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(953), - [anon_sym_cl] = ACTIONS(970), - [aux_sym_accumulation_verb_token1] = ACTIONS(974), - [anon_sym_for] = ACTIONS(974), - [anon_sym_and] = ACTIONS(974), - [anon_sym_as] = ACTIONS(974), - [anon_sym_with] = ACTIONS(974), - [anon_sym_do] = ACTIONS(974), - [anon_sym_while] = ACTIONS(974), - [anon_sym_until] = ACTIONS(974), - [anon_sym_repeat] = ACTIONS(974), - [anon_sym_when] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_unless] = ACTIONS(974), - [anon_sym_always] = ACTIONS(974), - [anon_sym_thereis] = ACTIONS(974), - [anon_sym_never] = ACTIONS(974), - [anon_sym_else] = ACTIONS(974), - [anon_sym_finally] = ACTIONS(974), - [anon_sym_return] = ACTIONS(974), - [anon_sym_initially] = ACTIONS(974), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(977), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(883), + [anon_sym_cl] = ACTIONS(896), + [anon_sym_EQ] = ACTIONS(899), + [aux_sym_accumulation_verb_token1] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_with] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_until] = ACTIONS(901), + [anon_sym_repeat] = ACTIONS(901), + [anon_sym_when] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_unless] = ACTIONS(901), + [anon_sym_always] = ACTIONS(901), + [anon_sym_thereis] = ACTIONS(901), + [anon_sym_never] = ACTIONS(901), + [anon_sym_else] = ACTIONS(901), + [anon_sym_finally] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_initially] = ACTIONS(901), + [anon_sym_POUNDP] = ACTIONS(113), + [anon_sym_POUNDp] = ACTIONS(113), + [sym_self_referential_reader_macro] = ACTIONS(903), + [anon_sym_POUND_PLUS] = ACTIONS(117), + [anon_sym_POUND_DASH] = ACTIONS(117), + [anon_sym_POUNDC] = ACTIONS(119), + [anon_sym_POUNDc] = ACTIONS(119), }, [25] = { - [sym__gap] = STATE(23), - [sym_dis_expr] = STATE(23), - [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(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2040), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2040), - [sym_set_lit] = STATE(2040), - [sym__bare_set_lit] = STATE(1853), - [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(1852), - [sym_loop_macro] = STATE(1852), - [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(23), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(979), - [sym_comment] = ACTIONS(979), - [anon_sym_POUND_] = ACTIONS(982), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(985), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(985), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_POUND_CARET] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(993), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(364), + [sym_dis_expr] = STATE(364), + [sym__form] = STATE(830), + [sym_num_lit] = STATE(830), + [sym_kwd_lit] = STATE(830), + [sym_str_lit] = STATE(830), + [sym_char_lit] = STATE(830), + [sym_sym_lit] = STATE(976), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(830), + [sym__bare_list_lit] = STATE(983), + [sym_vec_lit] = STATE(830), + [sym_set_lit] = STATE(830), + [sym__bare_set_lit] = STATE(986), + [sym_read_cond_lit] = STATE(830), + [sym_splicing_read_cond_lit] = STATE(830), + [sym_var_quoting_lit] = STATE(830), + [sym_quoting_lit] = STATE(830), + [sym_syn_quoting_lit] = STATE(830), + [sym_unquote_splicing_lit] = STATE(830), + [sym_unquoting_lit] = STATE(830), + [sym_defun] = STATE(983), + [sym_loop_macro] = STATE(983), + [sym_path_lit] = STATE(830), + [sym_package_lit] = STATE(830), + [sym_include_reader_macro] = STATE(830), + [sym_complex_num_lit] = STATE(830), + [aux_sym_dis_expr_repeat1] = STATE(364), + [aux_sym_list_lit_repeat1] = STATE(2347), + [aux_sym_do_clause_repeat1] = STATE(28), + [sym__ws] = ACTIONS(905), + [sym_comment] = ACTIONS(905), + [anon_sym_POUND_] = ACTIONS(905), + [anon_sym_POUND] = ACTIONS(773), + [anon_sym_DOT] = ACTIONS(775), + [aux_sym_num_lit_token1] = ACTIONS(777), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_COLON_COLON] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(783), + [sym_nil_lit] = ACTIONS(775), + [aux_sym_sym_lit_token1] = ACTIONS(785), + [anon_sym_CARET] = ACTIONS(905), + [anon_sym_POUND_CARET] = ACTIONS(905), + [anon_sym_LPAREN] = ACTIONS(905), + [anon_sym_RPAREN] = ACTIONS(905), + [anon_sym_POUND0A] = ACTIONS(787), + [anon_sym_POUND0a] = ACTIONS(787), + [anon_sym_POUND_QMARK] = ACTIONS(789), + [anon_sym_POUND_QMARK_AT] = ACTIONS(791), + [anon_sym_POUND_SQUOTE] = ACTIONS(793), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(797), + [anon_sym_COMMA_AT] = ACTIONS(799), + [anon_sym_COMMA] = ACTIONS(801), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(985), - [anon_sym_cl] = ACTIONS(998), - [aux_sym_accumulation_verb_token1] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_and] = ACTIONS(1001), - [anon_sym_as] = ACTIONS(1001), - [anon_sym_with] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_until] = ACTIONS(1001), - [anon_sym_repeat] = ACTIONS(1001), - [anon_sym_when] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_unless] = ACTIONS(1001), - [anon_sym_always] = ACTIONS(1001), - [anon_sym_thereis] = ACTIONS(1001), - [anon_sym_never] = ACTIONS(1001), - [anon_sym_else] = ACTIONS(1001), - [anon_sym_finally] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_initially] = ACTIONS(1001), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1003), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(775), + [anon_sym_cl] = ACTIONS(907), + [aux_sym_accumulation_verb_token1] = ACTIONS(907), + [anon_sym_for] = ACTIONS(907), + [anon_sym_and] = ACTIONS(907), + [anon_sym_as] = ACTIONS(907), + [anon_sym_with] = ACTIONS(907), + [anon_sym_do] = ACTIONS(907), + [anon_sym_while] = ACTIONS(907), + [anon_sym_until] = ACTIONS(907), + [anon_sym_repeat] = ACTIONS(907), + [anon_sym_when] = ACTIONS(907), + [anon_sym_if] = ACTIONS(907), + [anon_sym_unless] = ACTIONS(907), + [anon_sym_always] = ACTIONS(907), + [anon_sym_thereis] = ACTIONS(907), + [anon_sym_never] = ACTIONS(907), + [anon_sym_else] = ACTIONS(907), + [anon_sym_finally] = ACTIONS(907), + [anon_sym_return] = ACTIONS(907), + [anon_sym_initially] = ACTIONS(907), + [anon_sym_POUNDP] = ACTIONS(805), + [anon_sym_POUNDp] = ACTIONS(805), + [sym_self_referential_reader_macro] = ACTIONS(807), + [anon_sym_POUND_PLUS] = ACTIONS(809), + [anon_sym_POUND_DASH] = ACTIONS(809), + [anon_sym_POUNDC] = ACTIONS(811), + [anon_sym_POUNDc] = ACTIONS(811), }, [26] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [sym__form] = STATE(2038), - [sym_num_lit] = STATE(2038), - [sym_kwd_lit] = STATE(2038), - [sym_str_lit] = STATE(2038), - [sym_char_lit] = STATE(2038), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2038), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2038), - [sym_set_lit] = STATE(2038), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2038), - [sym_splicing_read_cond_lit] = STATE(2038), - [sym_var_quoting_lit] = STATE(2038), - [sym_quoting_lit] = STATE(2038), - [sym_syn_quoting_lit] = STATE(2038), - [sym_unquote_splicing_lit] = STATE(2038), - [sym_unquoting_lit] = STATE(2038), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2038), - [sym_package_lit] = STATE(2038), - [sym_include_reader_macro] = STATE(2038), - [sym_complex_num_lit] = STATE(2038), - [aux_sym_dis_expr_repeat1] = STATE(775), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1005), - [sym_comment] = ACTIONS(1005), - [anon_sym_POUND_] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1013), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1013), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1015), - [anon_sym_POUND_CARET] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(829), + [sym_dis_expr] = STATE(829), + [sym__form] = STATE(1918), + [sym_num_lit] = STATE(1918), + [sym_kwd_lit] = STATE(1918), + [sym_str_lit] = STATE(1918), + [sym_char_lit] = STATE(1918), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1918), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1918), + [sym_set_lit] = STATE(1918), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1918), + [sym_splicing_read_cond_lit] = STATE(1918), + [sym_var_quoting_lit] = STATE(1918), + [sym_quoting_lit] = STATE(1918), + [sym_syn_quoting_lit] = STATE(1918), + [sym_unquote_splicing_lit] = STATE(1918), + [sym_unquoting_lit] = STATE(1918), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1918), + [sym_package_lit] = STATE(1918), + [sym_include_reader_macro] = STATE(1918), + [sym_complex_num_lit] = STATE(1918), + [aux_sym_dis_expr_repeat1] = STATE(829), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(909), + [sym_comment] = ACTIONS(909), + [anon_sym_POUND_] = ACTIONS(913), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(917), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(917), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(919), + [anon_sym_POUND_CARET] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(927), + [anon_sym_RPAREN] = ACTIONS(931), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1013), - [anon_sym_cl] = ACTIONS(1030), - [aux_sym_accumulation_verb_token1] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_and] = ACTIONS(1034), - [anon_sym_as] = ACTIONS(1034), - [anon_sym_with] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_until] = ACTIONS(1034), - [anon_sym_repeat] = ACTIONS(1034), - [anon_sym_when] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_unless] = ACTIONS(1034), - [anon_sym_always] = ACTIONS(1034), - [anon_sym_thereis] = ACTIONS(1034), - [anon_sym_never] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_finally] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_initially] = ACTIONS(1034), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1037), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(917), + [anon_sym_cl] = ACTIONS(934), + [anon_sym_EQ] = ACTIONS(938), + [aux_sym_accumulation_verb_token1] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_and] = ACTIONS(940), + [anon_sym_as] = ACTIONS(940), + [anon_sym_with] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_until] = ACTIONS(940), + [anon_sym_repeat] = ACTIONS(940), + [anon_sym_when] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_unless] = ACTIONS(940), + [anon_sym_always] = ACTIONS(940), + [anon_sym_thereis] = ACTIONS(940), + [anon_sym_never] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_finally] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_initially] = ACTIONS(940), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(943), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [27] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [sym__form] = STATE(1980), - [sym_num_lit] = STATE(1980), - [sym_kwd_lit] = STATE(1980), - [sym_str_lit] = STATE(1980), - [sym_char_lit] = STATE(1980), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1980), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1980), - [sym_set_lit] = STATE(1980), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1980), - [sym_splicing_read_cond_lit] = STATE(1980), - [sym_var_quoting_lit] = STATE(1980), - [sym_quoting_lit] = STATE(1980), - [sym_syn_quoting_lit] = STATE(1980), - [sym_unquote_splicing_lit] = STATE(1980), - [sym_unquoting_lit] = STATE(1980), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1980), - [sym_package_lit] = STATE(1980), - [sym_include_reader_macro] = STATE(1980), - [sym_complex_num_lit] = STATE(1980), - [aux_sym_dis_expr_repeat1] = STATE(775), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1039), - [sym_comment] = ACTIONS(1039), - [anon_sym_POUND_] = ACTIONS(1042), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1045), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1045), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1047), - [anon_sym_POUND_CARET] = ACTIONS(1050), - [anon_sym_LPAREN] = ACTIONS(1053), - [anon_sym_RPAREN] = ACTIONS(1056), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(23), + [sym_dis_expr] = STATE(23), + [sym__form] = STATE(22), + [sym_num_lit] = STATE(22), + [sym_kwd_lit] = STATE(22), + [sym_str_lit] = STATE(22), + [sym_char_lit] = STATE(22), + [sym_sym_lit] = STATE(840), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(22), + [sym__bare_list_lit] = STATE(841), + [sym_vec_lit] = STATE(22), + [sym_set_lit] = STATE(22), + [sym__bare_set_lit] = STATE(842), + [sym_read_cond_lit] = STATE(22), + [sym_splicing_read_cond_lit] = STATE(22), + [sym_var_quoting_lit] = STATE(22), + [sym_quoting_lit] = STATE(22), + [sym_syn_quoting_lit] = STATE(22), + [sym_unquote_splicing_lit] = STATE(22), + [sym_unquoting_lit] = STATE(22), + [sym_defun] = STATE(841), + [sym_loop_macro] = STATE(841), + [sym_path_lit] = STATE(22), + [sym_package_lit] = STATE(22), + [sym_include_reader_macro] = STATE(22), + [sym_complex_num_lit] = STATE(22), + [aux_sym_dis_expr_repeat1] = STATE(23), + [aux_sym_list_lit_repeat1] = STATE(2335), + [sym__ws] = ACTIONS(945), + [sym_comment] = ACTIONS(945), + [anon_sym_POUND_] = ACTIONS(948), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(951), + [aux_sym_num_lit_token1] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(71), + [anon_sym_COLON_COLON] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_nil_lit] = ACTIONS(951), + [aux_sym_sym_lit_token1] = ACTIONS(77), + [anon_sym_CARET] = ACTIONS(953), + [anon_sym_POUND_CARET] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(959), + [anon_sym_RPAREN] = ACTIONS(962), + [anon_sym_POUND0A] = ACTIONS(90), + [anon_sym_POUND0a] = ACTIONS(90), + [anon_sym_POUND_QMARK] = ACTIONS(92), + [anon_sym_POUND_QMARK_AT] = ACTIONS(94), + [anon_sym_POUND_SQUOTE] = ACTIONS(96), + [anon_sym_SQUOTE] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_COMMA_AT] = ACTIONS(102), + [anon_sym_COMMA] = ACTIONS(104), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1045), - [anon_sym_cl] = ACTIONS(1058), - [aux_sym_accumulation_verb_token1] = ACTIONS(1061), - [anon_sym_for] = ACTIONS(1061), - [anon_sym_and] = ACTIONS(1061), - [anon_sym_as] = ACTIONS(1061), - [anon_sym_with] = ACTIONS(1061), - [anon_sym_do] = ACTIONS(1061), - [anon_sym_while] = ACTIONS(1061), - [anon_sym_until] = ACTIONS(1061), - [anon_sym_repeat] = ACTIONS(1061), - [anon_sym_when] = ACTIONS(1061), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_unless] = ACTIONS(1061), - [anon_sym_always] = ACTIONS(1061), - [anon_sym_thereis] = ACTIONS(1061), - [anon_sym_never] = ACTIONS(1061), - [anon_sym_else] = ACTIONS(1061), - [anon_sym_finally] = ACTIONS(1061), - [anon_sym_return] = ACTIONS(1061), - [anon_sym_initially] = ACTIONS(1061), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1063), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(951), + [anon_sym_cl] = ACTIONS(964), + [anon_sym_EQ] = ACTIONS(967), + [aux_sym_accumulation_verb_token1] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_and] = ACTIONS(969), + [anon_sym_as] = ACTIONS(969), + [anon_sym_with] = ACTIONS(969), + [anon_sym_do] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_until] = ACTIONS(969), + [anon_sym_repeat] = ACTIONS(969), + [anon_sym_when] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_unless] = ACTIONS(969), + [anon_sym_always] = ACTIONS(969), + [anon_sym_thereis] = ACTIONS(969), + [anon_sym_never] = ACTIONS(969), + [anon_sym_else] = ACTIONS(969), + [anon_sym_finally] = ACTIONS(969), + [anon_sym_return] = ACTIONS(969), + [anon_sym_initially] = ACTIONS(969), + [anon_sym_POUNDP] = ACTIONS(113), + [anon_sym_POUNDp] = ACTIONS(113), + [sym_self_referential_reader_macro] = ACTIONS(971), + [anon_sym_POUND_PLUS] = ACTIONS(117), + [anon_sym_POUND_DASH] = ACTIONS(117), + [anon_sym_POUNDC] = ACTIONS(119), + [anon_sym_POUNDc] = ACTIONS(119), }, [28] = { - [sym__gap] = STATE(67), - [sym_dis_expr] = STATE(67), - [sym__form] = STATE(1949), - [sym_num_lit] = STATE(1949), - [sym_kwd_lit] = STATE(1949), - [sym_str_lit] = STATE(1949), - [sym_char_lit] = STATE(1949), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1949), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1949), - [sym_set_lit] = STATE(1949), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1949), - [sym_splicing_read_cond_lit] = STATE(1949), - [sym_var_quoting_lit] = STATE(1949), - [sym_quoting_lit] = STATE(1949), - [sym_syn_quoting_lit] = STATE(1949), - [sym_unquote_splicing_lit] = STATE(1949), - [sym_unquoting_lit] = STATE(1949), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1949), - [sym_package_lit] = STATE(1949), - [sym_include_reader_macro] = STATE(1949), - [sym_complex_num_lit] = STATE(1949), - [aux_sym_dis_expr_repeat1] = STATE(67), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1065), - [sym_comment] = ACTIONS(1065), - [anon_sym_POUND_] = ACTIONS(1068), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1071), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1071), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1073), - [anon_sym_POUND_CARET] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_RPAREN] = ACTIONS(1082), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(364), + [sym_dis_expr] = STATE(364), + [sym__form] = STATE(830), + [sym_num_lit] = STATE(830), + [sym_kwd_lit] = STATE(830), + [sym_str_lit] = STATE(830), + [sym_char_lit] = STATE(830), + [sym_sym_lit] = STATE(976), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(830), + [sym__bare_list_lit] = STATE(983), + [sym_vec_lit] = STATE(830), + [sym_set_lit] = STATE(830), + [sym__bare_set_lit] = STATE(986), + [sym_read_cond_lit] = STATE(830), + [sym_splicing_read_cond_lit] = STATE(830), + [sym_var_quoting_lit] = STATE(830), + [sym_quoting_lit] = STATE(830), + [sym_syn_quoting_lit] = STATE(830), + [sym_unquote_splicing_lit] = STATE(830), + [sym_unquoting_lit] = STATE(830), + [sym_defun] = STATE(983), + [sym_loop_macro] = STATE(983), + [sym_path_lit] = STATE(830), + [sym_package_lit] = STATE(830), + [sym_include_reader_macro] = STATE(830), + [sym_complex_num_lit] = STATE(830), + [aux_sym_dis_expr_repeat1] = STATE(364), + [aux_sym_list_lit_repeat1] = STATE(2347), + [aux_sym_do_clause_repeat1] = STATE(28), + [sym__ws] = ACTIONS(973), + [sym_comment] = ACTIONS(973), + [anon_sym_POUND_] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(979), + [anon_sym_DOT] = ACTIONS(982), + [aux_sym_num_lit_token1] = ACTIONS(985), + [anon_sym_COLON] = ACTIONS(988), + [anon_sym_COLON_COLON] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_nil_lit] = ACTIONS(982), + [aux_sym_sym_lit_token1] = ACTIONS(997), + [anon_sym_CARET] = ACTIONS(1000), + [anon_sym_POUND_CARET] = ACTIONS(1003), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_RPAREN] = ACTIONS(1009), + [anon_sym_POUND0A] = ACTIONS(1011), + [anon_sym_POUND0a] = ACTIONS(1011), + [anon_sym_POUND_QMARK] = ACTIONS(1014), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1017), + [anon_sym_POUND_SQUOTE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1023), + [anon_sym_BQUOTE] = ACTIONS(1026), + [anon_sym_COMMA_AT] = ACTIONS(1029), + [anon_sym_COMMA] = ACTIONS(1032), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1071), - [anon_sym_cl] = ACTIONS(1084), - [aux_sym_accumulation_verb_token1] = ACTIONS(1087), - [anon_sym_for] = ACTIONS(1087), - [anon_sym_and] = ACTIONS(1087), - [anon_sym_as] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1087), - [anon_sym_do] = ACTIONS(1087), - [anon_sym_while] = ACTIONS(1087), - [anon_sym_until] = ACTIONS(1087), - [anon_sym_repeat] = ACTIONS(1087), - [anon_sym_when] = ACTIONS(1087), - [anon_sym_if] = ACTIONS(1087), - [anon_sym_unless] = ACTIONS(1087), - [anon_sym_always] = ACTIONS(1087), - [anon_sym_thereis] = ACTIONS(1087), - [anon_sym_never] = ACTIONS(1087), - [anon_sym_else] = ACTIONS(1087), - [anon_sym_finally] = ACTIONS(1087), - [anon_sym_return] = ACTIONS(1087), - [anon_sym_initially] = ACTIONS(1087), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1089), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(982), + [anon_sym_cl] = ACTIONS(1035), + [aux_sym_accumulation_verb_token1] = ACTIONS(1038), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_and] = ACTIONS(1038), + [anon_sym_as] = ACTIONS(1038), + [anon_sym_with] = ACTIONS(1038), + [anon_sym_do] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [anon_sym_until] = ACTIONS(1038), + [anon_sym_repeat] = ACTIONS(1038), + [anon_sym_when] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_unless] = ACTIONS(1038), + [anon_sym_always] = ACTIONS(1038), + [anon_sym_thereis] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_else] = ACTIONS(1038), + [anon_sym_finally] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_initially] = ACTIONS(1038), + [anon_sym_POUNDP] = ACTIONS(1040), + [anon_sym_POUNDp] = ACTIONS(1040), + [sym_self_referential_reader_macro] = ACTIONS(1043), + [anon_sym_POUND_PLUS] = ACTIONS(1046), + [anon_sym_POUND_DASH] = ACTIONS(1046), + [anon_sym_POUNDC] = ACTIONS(1049), + [anon_sym_POUNDc] = ACTIONS(1049), }, [29] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [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(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2037), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2037), - [sym_set_lit] = STATE(2037), - [sym__bare_set_lit] = STATE(1853), - [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(1852), - [sym_loop_macro] = STATE(1852), - [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(775), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1091), - [sym_comment] = ACTIONS(1091), - [anon_sym_POUND_] = ACTIONS(1094), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1097), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1097), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_POUND_CARET] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1108), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2088), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2088), + [sym_set_lit] = STATE(2088), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1052), + [sym_comment] = ACTIONS(1052), + [anon_sym_POUND_] = ACTIONS(1055), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1058), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1058), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1060), + [anon_sym_POUND_CARET] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_RPAREN] = ACTIONS(1069), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1097), - [anon_sym_cl] = ACTIONS(1110), - [aux_sym_accumulation_verb_token1] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_and] = ACTIONS(1113), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_with] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_until] = ACTIONS(1113), - [anon_sym_repeat] = ACTIONS(1113), - [anon_sym_when] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_unless] = ACTIONS(1113), - [anon_sym_always] = ACTIONS(1113), - [anon_sym_thereis] = ACTIONS(1113), - [anon_sym_never] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_finally] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_initially] = ACTIONS(1113), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1115), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1058), + [anon_sym_cl] = ACTIONS(1071), + [aux_sym_accumulation_verb_token1] = ACTIONS(1074), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_and] = ACTIONS(1074), + [anon_sym_as] = ACTIONS(1074), + [anon_sym_with] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_until] = ACTIONS(1074), + [anon_sym_repeat] = ACTIONS(1074), + [anon_sym_when] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_unless] = ACTIONS(1074), + [anon_sym_always] = ACTIONS(1074), + [anon_sym_thereis] = ACTIONS(1074), + [anon_sym_never] = ACTIONS(1074), + [anon_sym_else] = ACTIONS(1074), + [anon_sym_finally] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_initially] = ACTIONS(1074), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1076), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [30] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [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(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2036), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2036), - [sym_set_lit] = STATE(2036), - [sym__bare_set_lit] = STATE(1853), - [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(1852), - [sym_loop_macro] = STATE(1852), - [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(775), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1117), - [sym_comment] = ACTIONS(1117), - [anon_sym_POUND_] = ACTIONS(1120), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1123), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1123), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1125), - [anon_sym_POUND_CARET] = ACTIONS(1128), - [anon_sym_LPAREN] = ACTIONS(1131), - [anon_sym_RPAREN] = ACTIONS(1134), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(51), + [sym_dis_expr] = STATE(51), + [sym__form] = STATE(1993), + [sym_num_lit] = STATE(1993), + [sym_kwd_lit] = STATE(1993), + [sym_str_lit] = STATE(1993), + [sym_char_lit] = STATE(1993), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1993), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1993), + [sym_set_lit] = STATE(1993), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1993), + [sym_splicing_read_cond_lit] = STATE(1993), + [sym_var_quoting_lit] = STATE(1993), + [sym_quoting_lit] = STATE(1993), + [sym_syn_quoting_lit] = STATE(1993), + [sym_unquote_splicing_lit] = STATE(1993), + [sym_unquoting_lit] = STATE(1993), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1993), + [sym_package_lit] = STATE(1993), + [sym_include_reader_macro] = STATE(1993), + [sym_complex_num_lit] = STATE(1993), + [aux_sym_dis_expr_repeat1] = STATE(51), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1078), + [sym_comment] = ACTIONS(1078), + [anon_sym_POUND_] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1084), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1084), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1086), + [anon_sym_POUND_CARET] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1092), + [anon_sym_RPAREN] = ACTIONS(1095), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1123), - [anon_sym_cl] = ACTIONS(1136), - [aux_sym_accumulation_verb_token1] = ACTIONS(1139), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_and] = ACTIONS(1139), - [anon_sym_as] = ACTIONS(1139), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_do] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1139), - [anon_sym_until] = ACTIONS(1139), - [anon_sym_repeat] = ACTIONS(1139), - [anon_sym_when] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_unless] = ACTIONS(1139), - [anon_sym_always] = ACTIONS(1139), - [anon_sym_thereis] = ACTIONS(1139), - [anon_sym_never] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(1139), - [anon_sym_finally] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1139), - [anon_sym_initially] = ACTIONS(1139), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1141), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1084), + [anon_sym_cl] = ACTIONS(1097), + [aux_sym_accumulation_verb_token1] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_and] = ACTIONS(1100), + [anon_sym_as] = ACTIONS(1100), + [anon_sym_with] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_until] = ACTIONS(1100), + [anon_sym_repeat] = ACTIONS(1100), + [anon_sym_when] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_unless] = ACTIONS(1100), + [anon_sym_always] = ACTIONS(1100), + [anon_sym_thereis] = ACTIONS(1100), + [anon_sym_never] = ACTIONS(1100), + [anon_sym_else] = ACTIONS(1100), + [anon_sym_finally] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_initially] = ACTIONS(1100), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1102), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [31] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), + [sym__gap] = STATE(115), + [sym_dis_expr] = STATE(115), + [sym__form] = STATE(1997), + [sym_num_lit] = STATE(1997), + [sym_kwd_lit] = STATE(1997), + [sym_str_lit] = STATE(1997), + [sym_char_lit] = STATE(1997), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1997), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1997), + [sym_set_lit] = STATE(1997), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1997), + [sym_splicing_read_cond_lit] = STATE(1997), + [sym_var_quoting_lit] = STATE(1997), + [sym_quoting_lit] = STATE(1997), + [sym_syn_quoting_lit] = STATE(1997), + [sym_unquote_splicing_lit] = STATE(1997), + [sym_unquoting_lit] = STATE(1997), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1997), + [sym_package_lit] = STATE(1997), + [sym_include_reader_macro] = STATE(1997), + [sym_complex_num_lit] = STATE(1997), + [aux_sym_dis_expr_repeat1] = STATE(115), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1104), + [sym_comment] = ACTIONS(1104), + [anon_sym_POUND_] = ACTIONS(1107), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1110), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1110), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [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(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1110), + [anon_sym_cl] = ACTIONS(1123), + [aux_sym_accumulation_verb_token1] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_and] = ACTIONS(1126), + [anon_sym_as] = ACTIONS(1126), + [anon_sym_with] = ACTIONS(1126), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_until] = ACTIONS(1126), + [anon_sym_repeat] = ACTIONS(1126), + [anon_sym_when] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_unless] = ACTIONS(1126), + [anon_sym_always] = ACTIONS(1126), + [anon_sym_thereis] = ACTIONS(1126), + [anon_sym_never] = ACTIONS(1126), + [anon_sym_else] = ACTIONS(1126), + [anon_sym_finally] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_initially] = ACTIONS(1126), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1128), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [32] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(2000), + [sym_num_lit] = STATE(2000), + [sym_kwd_lit] = STATE(2000), + [sym_str_lit] = STATE(2000), + [sym_char_lit] = STATE(2000), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2000), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2000), + [sym_set_lit] = STATE(2000), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2000), + [sym_splicing_read_cond_lit] = STATE(2000), + [sym_var_quoting_lit] = STATE(2000), + [sym_quoting_lit] = STATE(2000), + [sym_syn_quoting_lit] = STATE(2000), + [sym_unquote_splicing_lit] = STATE(2000), + [sym_unquoting_lit] = STATE(2000), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2000), + [sym_package_lit] = STATE(2000), + [sym_include_reader_macro] = STATE(2000), + [sym_complex_num_lit] = STATE(2000), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1130), + [sym_comment] = ACTIONS(1130), + [anon_sym_POUND_] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1136), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1136), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1138), + [anon_sym_POUND_CARET] = ACTIONS(1141), + [anon_sym_LPAREN] = ACTIONS(1144), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1136), + [anon_sym_cl] = ACTIONS(1149), + [aux_sym_accumulation_verb_token1] = ACTIONS(1152), + [anon_sym_for] = ACTIONS(1152), + [anon_sym_and] = ACTIONS(1152), + [anon_sym_as] = ACTIONS(1152), + [anon_sym_with] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(1152), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_until] = ACTIONS(1152), + [anon_sym_repeat] = ACTIONS(1152), + [anon_sym_when] = ACTIONS(1152), + [anon_sym_if] = ACTIONS(1152), + [anon_sym_unless] = ACTIONS(1152), + [anon_sym_always] = ACTIONS(1152), + [anon_sym_thereis] = ACTIONS(1152), + [anon_sym_never] = ACTIONS(1152), + [anon_sym_else] = ACTIONS(1152), + [anon_sym_finally] = ACTIONS(1152), + [anon_sym_return] = ACTIONS(1152), + [anon_sym_initially] = ACTIONS(1152), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1154), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [33] = { + [sym__gap] = STATE(111), + [sym_dis_expr] = STATE(111), + [sym__form] = STATE(2011), + [sym_num_lit] = STATE(2011), + [sym_kwd_lit] = STATE(2011), + [sym_str_lit] = STATE(2011), + [sym_char_lit] = STATE(2011), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2011), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2011), + [sym_set_lit] = STATE(2011), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2011), + [sym_splicing_read_cond_lit] = STATE(2011), + [sym_var_quoting_lit] = STATE(2011), + [sym_quoting_lit] = STATE(2011), + [sym_syn_quoting_lit] = STATE(2011), + [sym_unquote_splicing_lit] = STATE(2011), + [sym_unquoting_lit] = STATE(2011), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2011), + [sym_package_lit] = STATE(2011), + [sym_include_reader_macro] = STATE(2011), + [sym_complex_num_lit] = STATE(2011), + [aux_sym_dis_expr_repeat1] = STATE(111), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1156), + [sym_comment] = ACTIONS(1156), + [anon_sym_POUND_] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1159), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1159), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1138), + [anon_sym_POUND_CARET] = ACTIONS(1141), + [anon_sym_LPAREN] = ACTIONS(1144), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1159), + [anon_sym_cl] = ACTIONS(1149), + [aux_sym_accumulation_verb_token1] = ACTIONS(1152), + [anon_sym_for] = ACTIONS(1152), + [anon_sym_and] = ACTIONS(1152), + [anon_sym_as] = ACTIONS(1152), + [anon_sym_with] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(1152), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_until] = ACTIONS(1152), + [anon_sym_repeat] = ACTIONS(1152), + [anon_sym_when] = ACTIONS(1152), + [anon_sym_if] = ACTIONS(1152), + [anon_sym_unless] = ACTIONS(1152), + [anon_sym_always] = ACTIONS(1152), + [anon_sym_thereis] = ACTIONS(1152), + [anon_sym_never] = ACTIONS(1152), + [anon_sym_else] = ACTIONS(1152), + [anon_sym_finally] = ACTIONS(1152), + [anon_sym_return] = ACTIONS(1152), + [anon_sym_initially] = ACTIONS(1152), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1161), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [34] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(2012), + [sym_num_lit] = STATE(2012), + [sym_kwd_lit] = STATE(2012), + [sym_str_lit] = STATE(2012), + [sym_char_lit] = STATE(2012), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2012), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2012), + [sym_set_lit] = STATE(2012), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2012), + [sym_splicing_read_cond_lit] = STATE(2012), + [sym_var_quoting_lit] = STATE(2012), + [sym_quoting_lit] = STATE(2012), + [sym_syn_quoting_lit] = STATE(2012), + [sym_unquote_splicing_lit] = STATE(2012), + [sym_unquoting_lit] = STATE(2012), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2012), + [sym_package_lit] = STATE(2012), + [sym_include_reader_macro] = STATE(2012), + [sym_complex_num_lit] = STATE(2012), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1163), + [sym_comment] = ACTIONS(1163), + [anon_sym_POUND_] = ACTIONS(1107), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1166), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1166), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [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(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1166), + [anon_sym_cl] = ACTIONS(1123), + [aux_sym_accumulation_verb_token1] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_and] = ACTIONS(1126), + [anon_sym_as] = ACTIONS(1126), + [anon_sym_with] = ACTIONS(1126), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_until] = ACTIONS(1126), + [anon_sym_repeat] = ACTIONS(1126), + [anon_sym_when] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_unless] = ACTIONS(1126), + [anon_sym_always] = ACTIONS(1126), + [anon_sym_thereis] = ACTIONS(1126), + [anon_sym_never] = ACTIONS(1126), + [anon_sym_else] = ACTIONS(1126), + [anon_sym_finally] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_initially] = ACTIONS(1126), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1168), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [35] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(2014), + [sym_num_lit] = STATE(2014), + [sym_kwd_lit] = STATE(2014), + [sym_str_lit] = STATE(2014), + [sym_char_lit] = STATE(2014), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2014), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2014), + [sym_set_lit] = STATE(2014), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2014), + [sym_splicing_read_cond_lit] = STATE(2014), + [sym_var_quoting_lit] = STATE(2014), + [sym_quoting_lit] = STATE(2014), + [sym_syn_quoting_lit] = STATE(2014), + [sym_unquote_splicing_lit] = STATE(2014), + [sym_unquoting_lit] = STATE(2014), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2014), + [sym_package_lit] = STATE(2014), + [sym_include_reader_macro] = STATE(2014), + [sym_complex_num_lit] = STATE(2014), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1170), + [sym_comment] = ACTIONS(1170), + [anon_sym_POUND_] = ACTIONS(1173), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1176), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1176), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1178), + [anon_sym_POUND_CARET] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_RPAREN] = ACTIONS(1187), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1176), + [anon_sym_cl] = ACTIONS(1189), + [aux_sym_accumulation_verb_token1] = ACTIONS(1192), + [anon_sym_for] = ACTIONS(1192), + [anon_sym_and] = ACTIONS(1192), + [anon_sym_as] = ACTIONS(1192), + [anon_sym_with] = ACTIONS(1192), + [anon_sym_do] = ACTIONS(1192), + [anon_sym_while] = ACTIONS(1192), + [anon_sym_until] = ACTIONS(1192), + [anon_sym_repeat] = ACTIONS(1192), + [anon_sym_when] = ACTIONS(1192), + [anon_sym_if] = ACTIONS(1192), + [anon_sym_unless] = ACTIONS(1192), + [anon_sym_always] = ACTIONS(1192), + [anon_sym_thereis] = ACTIONS(1192), + [anon_sym_never] = ACTIONS(1192), + [anon_sym_else] = ACTIONS(1192), + [anon_sym_finally] = ACTIONS(1192), + [anon_sym_return] = ACTIONS(1192), + [anon_sym_initially] = ACTIONS(1192), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1194), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [36] = { + [sym__gap] = STATE(103), + [sym_dis_expr] = STATE(103), + [sym__form] = STATE(2024), + [sym_num_lit] = STATE(2024), + [sym_kwd_lit] = STATE(2024), + [sym_str_lit] = STATE(2024), + [sym_char_lit] = STATE(2024), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2024), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2024), + [sym_set_lit] = STATE(2024), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2024), + [sym_splicing_read_cond_lit] = STATE(2024), + [sym_var_quoting_lit] = STATE(2024), + [sym_quoting_lit] = STATE(2024), + [sym_syn_quoting_lit] = STATE(2024), + [sym_unquote_splicing_lit] = STATE(2024), + [sym_unquoting_lit] = STATE(2024), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2024), + [sym_package_lit] = STATE(2024), + [sym_include_reader_macro] = STATE(2024), + [sym_complex_num_lit] = STATE(2024), + [aux_sym_dis_expr_repeat1] = STATE(103), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1196), + [sym_comment] = ACTIONS(1196), + [anon_sym_POUND_] = ACTIONS(1173), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1199), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1199), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1178), + [anon_sym_POUND_CARET] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_RPAREN] = ACTIONS(1187), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1199), + [anon_sym_cl] = ACTIONS(1189), + [aux_sym_accumulation_verb_token1] = ACTIONS(1192), + [anon_sym_for] = ACTIONS(1192), + [anon_sym_and] = ACTIONS(1192), + [anon_sym_as] = ACTIONS(1192), + [anon_sym_with] = ACTIONS(1192), + [anon_sym_do] = ACTIONS(1192), + [anon_sym_while] = ACTIONS(1192), + [anon_sym_until] = ACTIONS(1192), + [anon_sym_repeat] = ACTIONS(1192), + [anon_sym_when] = ACTIONS(1192), + [anon_sym_if] = ACTIONS(1192), + [anon_sym_unless] = ACTIONS(1192), + [anon_sym_always] = ACTIONS(1192), + [anon_sym_thereis] = ACTIONS(1192), + [anon_sym_never] = ACTIONS(1192), + [anon_sym_else] = ACTIONS(1192), + [anon_sym_finally] = ACTIONS(1192), + [anon_sym_return] = ACTIONS(1192), + [anon_sym_initially] = ACTIONS(1192), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1201), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [37] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), [sym__form] = STATE(2025), [sym_num_lit] = STATE(2025), [sym_kwd_lit] = STATE(2025), [sym_str_lit] = STATE(2025), [sym_char_lit] = STATE(2025), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), [sym_list_lit] = STATE(2025), - [sym__bare_list_lit] = STATE(1852), + [sym__bare_list_lit] = STATE(2169), [sym_vec_lit] = STATE(2025), [sym_set_lit] = STATE(2025), - [sym__bare_set_lit] = STATE(1853), + [sym__bare_set_lit] = STATE(2168), [sym_read_cond_lit] = STATE(2025), [sym_splicing_read_cond_lit] = STATE(2025), [sym_var_quoting_lit] = STATE(2025), @@ -12142,210 +13099,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(2025), [sym_unquote_splicing_lit] = STATE(2025), [sym_unquoting_lit] = STATE(2025), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), [sym_path_lit] = STATE(2025), [sym_package_lit] = STATE(2025), [sym_include_reader_macro] = STATE(2025), [sym_complex_num_lit] = STATE(2025), - [aux_sym_dis_expr_repeat1] = STATE(775), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1143), - [sym_comment] = ACTIONS(1143), - [anon_sym_POUND_] = ACTIONS(1146), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1149), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1149), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1151), - [anon_sym_POUND_CARET] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_RPAREN] = ACTIONS(1160), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1149), - [anon_sym_cl] = ACTIONS(1162), - [aux_sym_accumulation_verb_token1] = ACTIONS(1165), - [anon_sym_for] = ACTIONS(1165), - [anon_sym_and] = ACTIONS(1165), - [anon_sym_as] = ACTIONS(1165), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_until] = ACTIONS(1165), - [anon_sym_repeat] = ACTIONS(1165), - [anon_sym_when] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1165), - [anon_sym_unless] = ACTIONS(1165), - [anon_sym_always] = ACTIONS(1165), - [anon_sym_thereis] = ACTIONS(1165), - [anon_sym_never] = ACTIONS(1165), - [anon_sym_else] = ACTIONS(1165), - [anon_sym_finally] = ACTIONS(1165), - [anon_sym_return] = ACTIONS(1165), - [anon_sym_initially] = ACTIONS(1165), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1167), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), - }, - [32] = { - [sym__gap] = STATE(60), - [sym_dis_expr] = STATE(60), - [sym__form] = STATE(2027), - [sym_num_lit] = STATE(2027), - [sym_kwd_lit] = STATE(2027), - [sym_str_lit] = STATE(2027), - [sym_char_lit] = STATE(2027), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2027), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2027), - [sym_set_lit] = STATE(2027), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2027), - [sym_splicing_read_cond_lit] = STATE(2027), - [sym_var_quoting_lit] = STATE(2027), - [sym_quoting_lit] = STATE(2027), - [sym_syn_quoting_lit] = STATE(2027), - [sym_unquote_splicing_lit] = STATE(2027), - [sym_unquoting_lit] = STATE(2027), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2027), - [sym_package_lit] = STATE(2027), - [sym_include_reader_macro] = STATE(2027), - [sym_complex_num_lit] = STATE(2027), - [aux_sym_dis_expr_repeat1] = STATE(60), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1169), - [sym_comment] = ACTIONS(1169), - [anon_sym_POUND_] = ACTIONS(1173), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1177), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1177), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1179), - [anon_sym_POUND_CARET] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1187), - [anon_sym_RPAREN] = ACTIONS(1191), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1177), - [anon_sym_cl] = ACTIONS(1194), - [aux_sym_accumulation_verb_token1] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_as] = ACTIONS(1198), - [anon_sym_with] = ACTIONS(1198), - [anon_sym_do] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1198), - [anon_sym_until] = ACTIONS(1198), - [anon_sym_repeat] = ACTIONS(1198), - [anon_sym_when] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1198), - [anon_sym_unless] = ACTIONS(1198), - [anon_sym_always] = ACTIONS(1198), - [anon_sym_thereis] = ACTIONS(1198), - [anon_sym_never] = ACTIONS(1198), - [anon_sym_else] = ACTIONS(1198), - [anon_sym_finally] = ACTIONS(1198), - [anon_sym_return] = ACTIONS(1198), - [anon_sym_initially] = ACTIONS(1198), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1201), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), - }, - [33] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [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(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2035), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2035), - [sym_set_lit] = STATE(2035), - [sym__bare_set_lit] = STATE(1853), - [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(1852), - [sym_loop_macro] = STATE(1852), - [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(775), - [aux_sym_list_lit_repeat1] = STATE(2102), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), [sym__ws] = ACTIONS(1203), [sym_comment] = ACTIONS(1203), [anon_sym_POUND_] = ACTIONS(1206), - [anon_sym_POUND] = ACTIONS(154), + [anon_sym_POUND] = ACTIONS(129), [anon_sym_DOT] = ACTIONS(1209), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), [sym_nil_lit] = ACTIONS(1209), - [aux_sym_sym_lit_token1] = ACTIONS(166), + [aux_sym_sym_lit_token1] = ACTIONS(141), [anon_sym_CARET] = ACTIONS(1211), [anon_sym_POUND_CARET] = ACTIONS(1214), [anon_sym_LPAREN] = ACTIONS(1217), [anon_sym_RPAREN] = ACTIONS(1220), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(1209), [anon_sym_cl] = ACTIONS(1222), @@ -12368,70 +13153,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(1225), [anon_sym_return] = ACTIONS(1225), [anon_sym_initially] = ACTIONS(1225), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), [sym_self_referential_reader_macro] = ACTIONS(1227), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, - [34] = { - [sym__gap] = STATE(64), - [sym_dis_expr] = STATE(64), - [sym__form] = STATE(2029), - [sym_num_lit] = STATE(2029), - [sym_kwd_lit] = STATE(2029), - [sym_str_lit] = STATE(2029), - [sym_char_lit] = STATE(2029), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2029), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2029), - [sym_set_lit] = STATE(2029), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2029), - [sym_splicing_read_cond_lit] = STATE(2029), - [sym_var_quoting_lit] = STATE(2029), - [sym_quoting_lit] = STATE(2029), - [sym_syn_quoting_lit] = STATE(2029), - [sym_unquote_splicing_lit] = STATE(2029), - [sym_unquoting_lit] = STATE(2029), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2029), - [sym_package_lit] = STATE(2029), - [sym_include_reader_macro] = STATE(2029), - [sym_complex_num_lit] = STATE(2029), - [aux_sym_dis_expr_repeat1] = STATE(64), - [aux_sym_list_lit_repeat1] = STATE(2102), + [38] = { + [sym__gap] = STATE(102), + [sym_dis_expr] = STATE(102), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2080), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2080), + [sym_set_lit] = STATE(2080), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(102), + [aux_sym_list_lit_repeat1] = STATE(2328), [sym__ws] = ACTIONS(1229), [sym_comment] = ACTIONS(1229), [anon_sym_POUND_] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(154), + [anon_sym_POUND] = ACTIONS(129), [anon_sym_DOT] = ACTIONS(1235), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), [sym_nil_lit] = ACTIONS(1235), - [aux_sym_sym_lit_token1] = ACTIONS(166), + [aux_sym_sym_lit_token1] = ACTIONS(141), [anon_sym_CARET] = ACTIONS(1237), [anon_sym_POUND_CARET] = ACTIONS(1240), [anon_sym_LPAREN] = ACTIONS(1243), [anon_sym_RPAREN] = ACTIONS(1246), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(1235), [anon_sym_cl] = ACTIONS(1248), @@ -12454,1016 +13239,1532 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(1251), [anon_sym_return] = ACTIONS(1251), [anon_sym_initially] = ACTIONS(1251), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), [sym_self_referential_reader_macro] = ACTIONS(1253), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, - [35] = { - [sym__gap] = STATE(26), - [sym_dis_expr] = STATE(26), - [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(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2034), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2034), - [sym_set_lit] = STATE(2034), - [sym__bare_set_lit] = STATE(1853), - [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(1852), - [sym_loop_macro] = STATE(1852), - [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(26), - [aux_sym_list_lit_repeat1] = STATE(2102), + [39] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2100), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2100), + [sym_set_lit] = STATE(2100), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(834), + [aux_sym_list_lit_repeat1] = STATE(2328), [sym__ws] = ACTIONS(1255), [sym_comment] = ACTIONS(1255), - [anon_sym_POUND_] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1263), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1263), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1265), - [anon_sym_POUND_CARET] = ACTIONS(1269), - [anon_sym_LPAREN] = ACTIONS(1273), - [anon_sym_RPAREN] = ACTIONS(1277), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_POUND_] = ACTIONS(1258), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1261), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1261), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_POUND_CARET] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1272), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1263), - [anon_sym_cl] = ACTIONS(1280), - [aux_sym_accumulation_verb_token1] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_and] = ACTIONS(1284), - [anon_sym_as] = ACTIONS(1284), - [anon_sym_with] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_until] = ACTIONS(1284), - [anon_sym_repeat] = ACTIONS(1284), - [anon_sym_when] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_unless] = ACTIONS(1284), - [anon_sym_always] = ACTIONS(1284), - [anon_sym_thereis] = ACTIONS(1284), - [anon_sym_never] = ACTIONS(1284), - [anon_sym_else] = ACTIONS(1284), - [anon_sym_finally] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_initially] = ACTIONS(1284), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1287), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1261), + [anon_sym_cl] = ACTIONS(1274), + [aux_sym_accumulation_verb_token1] = ACTIONS(1277), + [anon_sym_for] = ACTIONS(1277), + [anon_sym_and] = ACTIONS(1277), + [anon_sym_as] = ACTIONS(1277), + [anon_sym_with] = ACTIONS(1277), + [anon_sym_do] = ACTIONS(1277), + [anon_sym_while] = ACTIONS(1277), + [anon_sym_until] = ACTIONS(1277), + [anon_sym_repeat] = ACTIONS(1277), + [anon_sym_when] = ACTIONS(1277), + [anon_sym_if] = ACTIONS(1277), + [anon_sym_unless] = ACTIONS(1277), + [anon_sym_always] = ACTIONS(1277), + [anon_sym_thereis] = ACTIONS(1277), + [anon_sym_never] = ACTIONS(1277), + [anon_sym_else] = ACTIONS(1277), + [anon_sym_finally] = ACTIONS(1277), + [anon_sym_return] = ACTIONS(1277), + [anon_sym_initially] = ACTIONS(1277), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1279), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, - [36] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [sym__form] = STATE(2022), - [sym_num_lit] = STATE(2022), - [sym_kwd_lit] = STATE(2022), - [sym_str_lit] = STATE(2022), - [sym_char_lit] = STATE(2022), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2022), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2022), - [sym_set_lit] = STATE(2022), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2022), - [sym_splicing_read_cond_lit] = STATE(2022), - [sym_var_quoting_lit] = STATE(2022), - [sym_quoting_lit] = STATE(2022), - [sym_syn_quoting_lit] = STATE(2022), - [sym_unquote_splicing_lit] = STATE(2022), - [sym_unquoting_lit] = STATE(2022), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2022), - [sym_package_lit] = STATE(2022), - [sym_include_reader_macro] = STATE(2022), - [sym_complex_num_lit] = STATE(2022), - [aux_sym_dis_expr_repeat1] = STATE(775), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1289), - [sym_comment] = ACTIONS(1289), - [anon_sym_POUND_] = ACTIONS(1292), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1295), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1295), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1297), - [anon_sym_POUND_CARET] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1303), - [anon_sym_RPAREN] = ACTIONS(1306), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [40] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2090), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2090), + [sym_set_lit] = STATE(2090), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1281), + [sym_comment] = ACTIONS(1281), + [anon_sym_POUND_] = ACTIONS(1232), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1284), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1284), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1237), + [anon_sym_POUND_CARET] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(1243), + [anon_sym_RPAREN] = ACTIONS(1246), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1295), - [anon_sym_cl] = ACTIONS(1308), - [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(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1313), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1284), + [anon_sym_cl] = ACTIONS(1248), + [aux_sym_accumulation_verb_token1] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_and] = ACTIONS(1251), + [anon_sym_as] = ACTIONS(1251), + [anon_sym_with] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_until] = ACTIONS(1251), + [anon_sym_repeat] = ACTIONS(1251), + [anon_sym_when] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_unless] = ACTIONS(1251), + [anon_sym_always] = ACTIONS(1251), + [anon_sym_thereis] = ACTIONS(1251), + [anon_sym_never] = ACTIONS(1251), + [anon_sym_else] = ACTIONS(1251), + [anon_sym_finally] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_initially] = ACTIONS(1251), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1286), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, - [37] = { - [sym__gap] = STATE(29), - [sym_dis_expr] = STATE(29), - [sym__form] = STATE(2009), - [sym_num_lit] = STATE(2009), - [sym_kwd_lit] = STATE(2009), - [sym_str_lit] = STATE(2009), - [sym_char_lit] = STATE(2009), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2009), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2009), - [sym_set_lit] = STATE(2009), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2009), - [sym_splicing_read_cond_lit] = STATE(2009), - [sym_var_quoting_lit] = STATE(2009), - [sym_quoting_lit] = STATE(2009), - [sym_syn_quoting_lit] = STATE(2009), - [sym_unquote_splicing_lit] = STATE(2009), - [sym_unquoting_lit] = STATE(2009), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2009), - [sym_package_lit] = STATE(2009), - [sym_include_reader_macro] = STATE(2009), - [sym_complex_num_lit] = STATE(2009), - [aux_sym_dis_expr_repeat1] = STATE(29), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1315), - [sym_comment] = ACTIONS(1315), - [anon_sym_POUND_] = ACTIONS(1318), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1321), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1321), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_POUND_CARET] = ACTIONS(1326), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_RPAREN] = ACTIONS(1332), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [41] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(2103), + [sym_num_lit] = STATE(2103), + [sym_kwd_lit] = STATE(2103), + [sym_str_lit] = STATE(2103), + [sym_char_lit] = STATE(2103), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2103), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2103), + [sym_set_lit] = STATE(2103), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2103), + [sym_splicing_read_cond_lit] = STATE(2103), + [sym_var_quoting_lit] = STATE(2103), + [sym_quoting_lit] = STATE(2103), + [sym_syn_quoting_lit] = STATE(2103), + [sym_unquote_splicing_lit] = STATE(2103), + [sym_unquoting_lit] = STATE(2103), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2103), + [sym_package_lit] = STATE(2103), + [sym_include_reader_macro] = STATE(2103), + [sym_complex_num_lit] = STATE(2103), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1288), + [sym_comment] = ACTIONS(1288), + [anon_sym_POUND_] = ACTIONS(1291), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1294), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1294), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1296), + [anon_sym_POUND_CARET] = ACTIONS(1299), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_RPAREN] = ACTIONS(1305), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1321), - [anon_sym_cl] = ACTIONS(1334), - [aux_sym_accumulation_verb_token1] = ACTIONS(1337), - [anon_sym_for] = ACTIONS(1337), - [anon_sym_and] = ACTIONS(1337), - [anon_sym_as] = ACTIONS(1337), - [anon_sym_with] = ACTIONS(1337), - [anon_sym_do] = ACTIONS(1337), - [anon_sym_while] = ACTIONS(1337), - [anon_sym_until] = ACTIONS(1337), - [anon_sym_repeat] = ACTIONS(1337), - [anon_sym_when] = ACTIONS(1337), - [anon_sym_if] = ACTIONS(1337), - [anon_sym_unless] = ACTIONS(1337), - [anon_sym_always] = ACTIONS(1337), - [anon_sym_thereis] = ACTIONS(1337), - [anon_sym_never] = ACTIONS(1337), - [anon_sym_else] = ACTIONS(1337), - [anon_sym_finally] = ACTIONS(1337), - [anon_sym_return] = ACTIONS(1337), - [anon_sym_initially] = ACTIONS(1337), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1339), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1294), + [anon_sym_cl] = ACTIONS(1307), + [aux_sym_accumulation_verb_token1] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_and] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_with] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_until] = ACTIONS(1310), + [anon_sym_repeat] = ACTIONS(1310), + [anon_sym_when] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_unless] = ACTIONS(1310), + [anon_sym_always] = ACTIONS(1310), + [anon_sym_thereis] = ACTIONS(1310), + [anon_sym_never] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_finally] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_initially] = ACTIONS(1310), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1312), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, - [38] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [sym__form] = STATE(2006), - [sym_num_lit] = STATE(2006), - [sym_kwd_lit] = STATE(2006), - [sym_str_lit] = STATE(2006), - [sym_char_lit] = STATE(2006), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2006), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2006), - [sym_set_lit] = STATE(2006), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2006), - [sym_splicing_read_cond_lit] = STATE(2006), - [sym_var_quoting_lit] = STATE(2006), - [sym_quoting_lit] = STATE(2006), - [sym_syn_quoting_lit] = STATE(2006), - [sym_unquote_splicing_lit] = STATE(2006), - [sym_unquoting_lit] = STATE(2006), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2006), - [sym_package_lit] = STATE(2006), - [sym_include_reader_macro] = STATE(2006), - [sym_complex_num_lit] = STATE(2006), - [aux_sym_dis_expr_repeat1] = STATE(775), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1341), - [sym_comment] = ACTIONS(1341), - [anon_sym_POUND_] = ACTIONS(1345), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1349), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1349), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1351), - [anon_sym_POUND_CARET] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [42] = { + [sym__gap] = STATE(96), + [sym_dis_expr] = STATE(96), + [sym__form] = STATE(2112), + [sym_num_lit] = STATE(2112), + [sym_kwd_lit] = STATE(2112), + [sym_str_lit] = STATE(2112), + [sym_char_lit] = STATE(2112), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2112), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2112), + [sym_set_lit] = STATE(2112), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2112), + [sym_splicing_read_cond_lit] = STATE(2112), + [sym_var_quoting_lit] = STATE(2112), + [sym_quoting_lit] = STATE(2112), + [sym_syn_quoting_lit] = STATE(2112), + [sym_unquote_splicing_lit] = STATE(2112), + [sym_unquoting_lit] = STATE(2112), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2112), + [sym_package_lit] = STATE(2112), + [sym_include_reader_macro] = STATE(2112), + [sym_complex_num_lit] = STATE(2112), + [aux_sym_dis_expr_repeat1] = STATE(96), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1314), + [sym_comment] = ACTIONS(1314), + [anon_sym_POUND_] = ACTIONS(1291), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1317), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1317), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1296), + [anon_sym_POUND_CARET] = ACTIONS(1299), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_RPAREN] = ACTIONS(1305), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1349), - [anon_sym_cl] = ACTIONS(1366), - [aux_sym_accumulation_verb_token1] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_as] = ACTIONS(1370), - [anon_sym_with] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_until] = ACTIONS(1370), - [anon_sym_repeat] = ACTIONS(1370), - [anon_sym_when] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_unless] = ACTIONS(1370), - [anon_sym_always] = ACTIONS(1370), - [anon_sym_thereis] = ACTIONS(1370), - [anon_sym_never] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1370), - [anon_sym_finally] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_initially] = ACTIONS(1370), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1373), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1317), + [anon_sym_cl] = ACTIONS(1307), + [aux_sym_accumulation_verb_token1] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_and] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_with] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_until] = ACTIONS(1310), + [anon_sym_repeat] = ACTIONS(1310), + [anon_sym_when] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_unless] = ACTIONS(1310), + [anon_sym_always] = ACTIONS(1310), + [anon_sym_thereis] = ACTIONS(1310), + [anon_sym_never] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_finally] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_initially] = ACTIONS(1310), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1319), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, - [39] = { - [sym__gap] = STATE(62), - [sym_dis_expr] = STATE(62), - [sym__form] = STATE(1996), - [sym_num_lit] = STATE(1996), - [sym_kwd_lit] = STATE(1996), - [sym_str_lit] = STATE(1996), - [sym_char_lit] = STATE(1996), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1996), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1996), - [sym_set_lit] = STATE(1996), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1996), - [sym_splicing_read_cond_lit] = STATE(1996), - [sym_var_quoting_lit] = STATE(1996), - [sym_quoting_lit] = STATE(1996), - [sym_syn_quoting_lit] = STATE(1996), - [sym_unquote_splicing_lit] = STATE(1996), - [sym_unquoting_lit] = STATE(1996), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1996), - [sym_package_lit] = STATE(1996), - [sym_include_reader_macro] = STATE(1996), - [sym_complex_num_lit] = STATE(1996), - [aux_sym_dis_expr_repeat1] = STATE(62), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1375), - [sym_comment] = ACTIONS(1375), - [anon_sym_POUND_] = ACTIONS(1378), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1381), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1381), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1383), - [anon_sym_POUND_CARET] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_RPAREN] = ACTIONS(1392), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [43] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(2015), + [sym_num_lit] = STATE(2015), + [sym_kwd_lit] = STATE(2015), + [sym_str_lit] = STATE(2015), + [sym_char_lit] = STATE(2015), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2015), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2015), + [sym_set_lit] = STATE(2015), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2015), + [sym_splicing_read_cond_lit] = STATE(2015), + [sym_var_quoting_lit] = STATE(2015), + [sym_quoting_lit] = STATE(2015), + [sym_syn_quoting_lit] = STATE(2015), + [sym_unquote_splicing_lit] = STATE(2015), + [sym_unquoting_lit] = STATE(2015), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2015), + [sym_package_lit] = STATE(2015), + [sym_include_reader_macro] = STATE(2015), + [sym_complex_num_lit] = STATE(2015), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1321), + [sym_comment] = ACTIONS(1321), + [anon_sym_POUND_] = ACTIONS(1324), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1327), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1327), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1329), + [anon_sym_POUND_CARET] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1335), + [anon_sym_RPAREN] = ACTIONS(1338), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1381), - [anon_sym_cl] = ACTIONS(1394), - [aux_sym_accumulation_verb_token1] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_and] = ACTIONS(1397), - [anon_sym_as] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_until] = ACTIONS(1397), - [anon_sym_repeat] = ACTIONS(1397), - [anon_sym_when] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_unless] = ACTIONS(1397), - [anon_sym_always] = ACTIONS(1397), - [anon_sym_thereis] = ACTIONS(1397), - [anon_sym_never] = ACTIONS(1397), - [anon_sym_else] = ACTIONS(1397), - [anon_sym_finally] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_initially] = ACTIONS(1397), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1399), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1327), + [anon_sym_cl] = ACTIONS(1340), + [aux_sym_accumulation_verb_token1] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_and] = ACTIONS(1343), + [anon_sym_as] = ACTIONS(1343), + [anon_sym_with] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_until] = ACTIONS(1343), + [anon_sym_repeat] = ACTIONS(1343), + [anon_sym_when] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_unless] = ACTIONS(1343), + [anon_sym_always] = ACTIONS(1343), + [anon_sym_thereis] = ACTIONS(1343), + [anon_sym_never] = ACTIONS(1343), + [anon_sym_else] = ACTIONS(1343), + [anon_sym_finally] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_initially] = ACTIONS(1343), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1345), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, - [40] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [sym__form] = STATE(1951), - [sym_num_lit] = STATE(1951), - [sym_kwd_lit] = STATE(1951), - [sym_str_lit] = STATE(1951), - [sym_char_lit] = STATE(1951), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1951), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1951), - [sym_set_lit] = STATE(1951), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1951), - [sym_splicing_read_cond_lit] = STATE(1951), - [sym_var_quoting_lit] = STATE(1951), - [sym_quoting_lit] = STATE(1951), - [sym_syn_quoting_lit] = STATE(1951), - [sym_unquote_splicing_lit] = STATE(1951), - [sym_unquoting_lit] = STATE(1951), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1951), - [sym_package_lit] = STATE(1951), - [sym_include_reader_macro] = STATE(1951), - [sym_complex_num_lit] = STATE(1951), - [aux_sym_dis_expr_repeat1] = STATE(775), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1401), - [sym_comment] = ACTIONS(1401), - [anon_sym_POUND_] = ACTIONS(1405), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1409), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1409), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_POUND_CARET] = ACTIONS(1415), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_RPAREN] = ACTIONS(1423), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [44] = { + [sym__gap] = STATE(93), + [sym_dis_expr] = STATE(93), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2094), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2094), + [sym_set_lit] = STATE(2094), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(93), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1347), + [sym_comment] = ACTIONS(1347), + [anon_sym_POUND_] = ACTIONS(1055), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1350), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1350), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1060), + [anon_sym_POUND_CARET] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_RPAREN] = ACTIONS(1069), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1409), - [anon_sym_cl] = ACTIONS(1426), - [aux_sym_accumulation_verb_token1] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_and] = ACTIONS(1430), - [anon_sym_as] = ACTIONS(1430), - [anon_sym_with] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_until] = ACTIONS(1430), - [anon_sym_repeat] = ACTIONS(1430), - [anon_sym_when] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_unless] = ACTIONS(1430), - [anon_sym_always] = ACTIONS(1430), - [anon_sym_thereis] = ACTIONS(1430), - [anon_sym_never] = ACTIONS(1430), - [anon_sym_else] = ACTIONS(1430), - [anon_sym_finally] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_initially] = ACTIONS(1430), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1433), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1350), + [anon_sym_cl] = ACTIONS(1071), + [aux_sym_accumulation_verb_token1] = ACTIONS(1074), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_and] = ACTIONS(1074), + [anon_sym_as] = ACTIONS(1074), + [anon_sym_with] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_until] = ACTIONS(1074), + [anon_sym_repeat] = ACTIONS(1074), + [anon_sym_when] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_unless] = ACTIONS(1074), + [anon_sym_always] = ACTIONS(1074), + [anon_sym_thereis] = ACTIONS(1074), + [anon_sym_never] = ACTIONS(1074), + [anon_sym_else] = ACTIONS(1074), + [anon_sym_finally] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_initially] = ACTIONS(1074), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1352), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, - [41] = { - [sym__gap] = STATE(226), - [sym_dis_expr] = STATE(226), - [sym__form] = STATE(74), - [sym_num_lit] = STATE(74), - [sym_kwd_lit] = STATE(74), - [sym_str_lit] = STATE(74), - [sym_char_lit] = STATE(74), - [sym_sym_lit] = STATE(1225), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(74), - [sym__bare_list_lit] = STATE(1226), - [sym_vec_lit] = STATE(74), - [sym_set_lit] = STATE(74), - [sym__bare_set_lit] = STATE(1227), - [sym_read_cond_lit] = STATE(74), - [sym_splicing_read_cond_lit] = STATE(74), - [sym_var_quoting_lit] = STATE(74), - [sym_quoting_lit] = STATE(74), - [sym_syn_quoting_lit] = STATE(74), - [sym_unquote_splicing_lit] = STATE(74), - [sym_unquoting_lit] = STATE(74), - [sym_defun] = STATE(1226), - [sym_loop_macro] = STATE(1226), - [sym_path_lit] = STATE(74), - [sym_package_lit] = STATE(74), - [sym_include_reader_macro] = STATE(74), - [sym_complex_num_lit] = STATE(74), - [aux_sym_dis_expr_repeat1] = STATE(226), - [aux_sym_list_lit_repeat1] = STATE(2098), - [sym__ws] = ACTIONS(1435), - [sym_comment] = ACTIONS(1435), - [anon_sym_POUND_] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(1441), - [anon_sym_DOT] = ACTIONS(1443), - [aux_sym_num_lit_token1] = ACTIONS(1445), - [anon_sym_COLON] = ACTIONS(1447), - [anon_sym_COLON_COLON] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_nil_lit] = ACTIONS(1443), - [aux_sym_sym_lit_token1] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_POUND_CARET] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_POUND0A] = ACTIONS(1466), - [anon_sym_POUND0a] = ACTIONS(1466), - [anon_sym_POUND_QMARK] = ACTIONS(1468), - [anon_sym_POUND_QMARK_AT] = ACTIONS(1470), - [anon_sym_POUND_SQUOTE] = ACTIONS(1472), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_BQUOTE] = ACTIONS(1476), - [anon_sym_COMMA_AT] = ACTIONS(1478), - [anon_sym_COMMA] = ACTIONS(1480), + [45] = { + [sym__gap] = STATE(104), + [sym_dis_expr] = STATE(104), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2102), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2102), + [sym_set_lit] = STATE(2102), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(104), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1354), + [sym_comment] = ACTIONS(1354), + [anon_sym_POUND_] = ACTIONS(1357), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1360), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1360), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1362), + [anon_sym_POUND_CARET] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1443), - [anon_sym_cl] = ACTIONS(1482), - [aux_sym_accumulation_verb_token1] = ACTIONS(1485), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_and] = ACTIONS(1485), - [anon_sym_as] = ACTIONS(1485), - [anon_sym_with] = ACTIONS(1485), - [anon_sym_do] = ACTIONS(1485), - [anon_sym_while] = ACTIONS(1485), - [anon_sym_until] = ACTIONS(1485), - [anon_sym_repeat] = ACTIONS(1485), - [anon_sym_when] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1485), - [anon_sym_unless] = ACTIONS(1485), - [anon_sym_always] = ACTIONS(1485), - [anon_sym_thereis] = ACTIONS(1485), - [anon_sym_never] = ACTIONS(1485), - [anon_sym_else] = ACTIONS(1485), - [anon_sym_finally] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1485), - [anon_sym_initially] = ACTIONS(1485), - [anon_sym_POUNDP] = ACTIONS(1487), - [anon_sym_POUNDp] = ACTIONS(1487), - [sym_self_referential_reader_macro] = ACTIONS(1489), - [anon_sym_POUND_PLUS] = ACTIONS(1491), - [anon_sym_POUND_DASH] = ACTIONS(1491), - [anon_sym_POUNDC] = ACTIONS(1493), - [anon_sym_POUNDc] = ACTIONS(1493), + [sym_fancy_literal] = ACTIONS(1360), + [anon_sym_cl] = ACTIONS(1373), + [aux_sym_accumulation_verb_token1] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_and] = ACTIONS(1376), + [anon_sym_as] = ACTIONS(1376), + [anon_sym_with] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_until] = ACTIONS(1376), + [anon_sym_repeat] = ACTIONS(1376), + [anon_sym_when] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_unless] = ACTIONS(1376), + [anon_sym_always] = ACTIONS(1376), + [anon_sym_thereis] = ACTIONS(1376), + [anon_sym_never] = ACTIONS(1376), + [anon_sym_else] = ACTIONS(1376), + [anon_sym_finally] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_initially] = ACTIONS(1376), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1378), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, - [42] = { - [sym__gap] = STATE(30), - [sym_dis_expr] = STATE(30), - [sym__form] = STATE(1985), - [sym_num_lit] = STATE(1985), - [sym_kwd_lit] = STATE(1985), - [sym_str_lit] = STATE(1985), - [sym_char_lit] = STATE(1985), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1985), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1985), - [sym_set_lit] = STATE(1985), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1985), - [sym_splicing_read_cond_lit] = STATE(1985), - [sym_var_quoting_lit] = STATE(1985), - [sym_quoting_lit] = STATE(1985), - [sym_syn_quoting_lit] = STATE(1985), - [sym_unquote_splicing_lit] = STATE(1985), - [sym_unquoting_lit] = STATE(1985), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1985), - [sym_package_lit] = STATE(1985), - [sym_include_reader_macro] = STATE(1985), - [sym_complex_num_lit] = STATE(1985), - [aux_sym_dis_expr_repeat1] = STATE(30), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1495), - [sym_comment] = ACTIONS(1495), - [anon_sym_POUND_] = ACTIONS(1498), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1501), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1501), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_POUND_CARET] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_RPAREN] = ACTIONS(1512), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [46] = { + [sym__gap] = STATE(88), + [sym_dis_expr] = STATE(88), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2081), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2081), + [sym_set_lit] = STATE(2081), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(88), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1380), + [sym_comment] = ACTIONS(1380), + [anon_sym_POUND_] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1386), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1386), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1388), + [anon_sym_POUND_CARET] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_RPAREN] = ACTIONS(1397), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1501), - [anon_sym_cl] = ACTIONS(1514), - [aux_sym_accumulation_verb_token1] = ACTIONS(1517), - [anon_sym_for] = ACTIONS(1517), - [anon_sym_and] = ACTIONS(1517), - [anon_sym_as] = ACTIONS(1517), - [anon_sym_with] = ACTIONS(1517), - [anon_sym_do] = ACTIONS(1517), - [anon_sym_while] = ACTIONS(1517), - [anon_sym_until] = ACTIONS(1517), - [anon_sym_repeat] = ACTIONS(1517), - [anon_sym_when] = ACTIONS(1517), - [anon_sym_if] = ACTIONS(1517), - [anon_sym_unless] = ACTIONS(1517), - [anon_sym_always] = ACTIONS(1517), - [anon_sym_thereis] = ACTIONS(1517), - [anon_sym_never] = ACTIONS(1517), - [anon_sym_else] = ACTIONS(1517), - [anon_sym_finally] = ACTIONS(1517), - [anon_sym_return] = ACTIONS(1517), - [anon_sym_initially] = ACTIONS(1517), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1519), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1386), + [anon_sym_cl] = ACTIONS(1399), + [aux_sym_accumulation_verb_token1] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_and] = ACTIONS(1402), + [anon_sym_as] = ACTIONS(1402), + [anon_sym_with] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_until] = ACTIONS(1402), + [anon_sym_repeat] = ACTIONS(1402), + [anon_sym_when] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_unless] = ACTIONS(1402), + [anon_sym_always] = ACTIONS(1402), + [anon_sym_thereis] = ACTIONS(1402), + [anon_sym_never] = ACTIONS(1402), + [anon_sym_else] = ACTIONS(1402), + [anon_sym_finally] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_initially] = ACTIONS(1402), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1404), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, - [43] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [sym__form] = STATE(1987), - [sym_num_lit] = STATE(1987), - [sym_kwd_lit] = STATE(1987), - [sym_str_lit] = STATE(1987), - [sym_char_lit] = STATE(1987), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1987), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1987), - [sym_set_lit] = STATE(1987), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1987), - [sym_splicing_read_cond_lit] = STATE(1987), - [sym_var_quoting_lit] = STATE(1987), - [sym_quoting_lit] = STATE(1987), - [sym_syn_quoting_lit] = STATE(1987), - [sym_unquote_splicing_lit] = STATE(1987), - [sym_unquoting_lit] = STATE(1987), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1987), - [sym_package_lit] = STATE(1987), - [sym_include_reader_macro] = STATE(1987), - [sym_complex_num_lit] = STATE(1987), - [aux_sym_dis_expr_repeat1] = STATE(775), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1521), - [sym_comment] = ACTIONS(1521), - [anon_sym_POUND_] = ACTIONS(1525), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1529), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1529), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1531), - [anon_sym_POUND_CARET] = ACTIONS(1535), + [47] = { + [sym__gap] = STATE(363), + [sym_dis_expr] = STATE(363), + [sym__form] = STATE(132), + [sym_num_lit] = STATE(132), + [sym_kwd_lit] = STATE(132), + [sym_str_lit] = STATE(132), + [sym_char_lit] = STATE(132), + [sym_sym_lit] = STATE(1237), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(132), + [sym__bare_list_lit] = STATE(1236), + [sym_vec_lit] = STATE(132), + [sym_set_lit] = STATE(132), + [sym__bare_set_lit] = STATE(1235), + [sym_read_cond_lit] = STATE(132), + [sym_splicing_read_cond_lit] = STATE(132), + [sym_var_quoting_lit] = STATE(132), + [sym_quoting_lit] = STATE(132), + [sym_syn_quoting_lit] = STATE(132), + [sym_unquote_splicing_lit] = STATE(132), + [sym_unquoting_lit] = STATE(132), + [sym_defun] = STATE(1236), + [sym_loop_macro] = STATE(1236), + [sym_path_lit] = STATE(132), + [sym_package_lit] = STATE(132), + [sym_include_reader_macro] = STATE(132), + [sym_complex_num_lit] = STATE(132), + [aux_sym_dis_expr_repeat1] = STATE(363), + [aux_sym_list_lit_repeat1] = STATE(2334), + [sym__ws] = ACTIONS(1406), + [sym_comment] = ACTIONS(1406), + [anon_sym_POUND_] = ACTIONS(1409), + [anon_sym_POUND] = ACTIONS(1412), + [anon_sym_DOT] = ACTIONS(1414), + [aux_sym_num_lit_token1] = ACTIONS(1416), + [anon_sym_COLON] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1422), + [sym_nil_lit] = ACTIONS(1414), + [aux_sym_sym_lit_token1] = ACTIONS(1424), + [anon_sym_CARET] = ACTIONS(1426), + [anon_sym_POUND_CARET] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1432), + [anon_sym_RPAREN] = ACTIONS(1435), + [anon_sym_POUND0A] = ACTIONS(1437), + [anon_sym_POUND0a] = ACTIONS(1437), + [anon_sym_POUND_QMARK] = ACTIONS(1439), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1441), + [anon_sym_POUND_SQUOTE] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_BQUOTE] = ACTIONS(1447), + [anon_sym_COMMA_AT] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(1451), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1414), + [anon_sym_cl] = ACTIONS(1453), + [aux_sym_accumulation_verb_token1] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_and] = ACTIONS(1456), + [anon_sym_as] = ACTIONS(1456), + [anon_sym_with] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_until] = ACTIONS(1456), + [anon_sym_repeat] = ACTIONS(1456), + [anon_sym_when] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_unless] = ACTIONS(1456), + [anon_sym_always] = ACTIONS(1456), + [anon_sym_thereis] = ACTIONS(1456), + [anon_sym_never] = ACTIONS(1456), + [anon_sym_else] = ACTIONS(1456), + [anon_sym_finally] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_initially] = ACTIONS(1456), + [anon_sym_POUNDP] = ACTIONS(1458), + [anon_sym_POUNDp] = ACTIONS(1458), + [sym_self_referential_reader_macro] = ACTIONS(1460), + [anon_sym_POUND_PLUS] = ACTIONS(1462), + [anon_sym_POUND_DASH] = ACTIONS(1462), + [anon_sym_POUNDC] = ACTIONS(1464), + [anon_sym_POUNDc] = ACTIONS(1464), + }, + [48] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(2008), + [sym_num_lit] = STATE(2008), + [sym_kwd_lit] = STATE(2008), + [sym_str_lit] = STATE(2008), + [sym_char_lit] = STATE(2008), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2008), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2008), + [sym_set_lit] = STATE(2008), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2008), + [sym_splicing_read_cond_lit] = STATE(2008), + [sym_var_quoting_lit] = STATE(2008), + [sym_quoting_lit] = STATE(2008), + [sym_syn_quoting_lit] = STATE(2008), + [sym_unquote_splicing_lit] = STATE(2008), + [sym_unquoting_lit] = STATE(2008), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2008), + [sym_package_lit] = STATE(2008), + [sym_include_reader_macro] = STATE(2008), + [sym_complex_num_lit] = STATE(2008), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1466), + [sym_comment] = ACTIONS(1466), + [anon_sym_POUND_] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1469), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1469), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1388), + [anon_sym_POUND_CARET] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_RPAREN] = ACTIONS(1397), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1469), + [anon_sym_cl] = ACTIONS(1399), + [aux_sym_accumulation_verb_token1] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_and] = ACTIONS(1402), + [anon_sym_as] = ACTIONS(1402), + [anon_sym_with] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_until] = ACTIONS(1402), + [anon_sym_repeat] = ACTIONS(1402), + [anon_sym_when] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_unless] = ACTIONS(1402), + [anon_sym_always] = ACTIONS(1402), + [anon_sym_thereis] = ACTIONS(1402), + [anon_sym_never] = ACTIONS(1402), + [anon_sym_else] = ACTIONS(1402), + [anon_sym_finally] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_initially] = ACTIONS(1402), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1471), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [49] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1958), + [sym_num_lit] = STATE(1958), + [sym_kwd_lit] = STATE(1958), + [sym_str_lit] = STATE(1958), + [sym_char_lit] = STATE(1958), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1958), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1958), + [sym_set_lit] = STATE(1958), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1958), + [sym_splicing_read_cond_lit] = STATE(1958), + [sym_var_quoting_lit] = STATE(1958), + [sym_quoting_lit] = STATE(1958), + [sym_syn_quoting_lit] = STATE(1958), + [sym_unquote_splicing_lit] = STATE(1958), + [sym_unquoting_lit] = STATE(1958), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1958), + [sym_package_lit] = STATE(1958), + [sym_include_reader_macro] = STATE(1958), + [sym_complex_num_lit] = STATE(1958), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1473), + [sym_comment] = ACTIONS(1473), + [anon_sym_POUND_] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1479), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1479), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1481), + [anon_sym_POUND_CARET] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_RPAREN] = ACTIONS(1490), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1479), + [anon_sym_cl] = ACTIONS(1492), + [aux_sym_accumulation_verb_token1] = ACTIONS(1495), + [anon_sym_for] = ACTIONS(1495), + [anon_sym_and] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1495), + [anon_sym_with] = ACTIONS(1495), + [anon_sym_do] = ACTIONS(1495), + [anon_sym_while] = ACTIONS(1495), + [anon_sym_until] = ACTIONS(1495), + [anon_sym_repeat] = ACTIONS(1495), + [anon_sym_when] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1495), + [anon_sym_unless] = ACTIONS(1495), + [anon_sym_always] = ACTIONS(1495), + [anon_sym_thereis] = ACTIONS(1495), + [anon_sym_never] = ACTIONS(1495), + [anon_sym_else] = ACTIONS(1495), + [anon_sym_finally] = ACTIONS(1495), + [anon_sym_return] = ACTIONS(1495), + [anon_sym_initially] = ACTIONS(1495), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1497), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [50] = { + [sym__gap] = STATE(91), + [sym_dis_expr] = STATE(91), + [sym__form] = STATE(1881), + [sym_num_lit] = STATE(1881), + [sym_kwd_lit] = STATE(1881), + [sym_str_lit] = STATE(1881), + [sym_char_lit] = STATE(1881), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1881), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1881), + [sym_set_lit] = STATE(1881), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1881), + [sym_splicing_read_cond_lit] = STATE(1881), + [sym_var_quoting_lit] = STATE(1881), + [sym_quoting_lit] = STATE(1881), + [sym_syn_quoting_lit] = STATE(1881), + [sym_unquote_splicing_lit] = STATE(1881), + [sym_unquoting_lit] = STATE(1881), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1881), + [sym_package_lit] = STATE(1881), + [sym_include_reader_macro] = STATE(1881), + [sym_complex_num_lit] = STATE(1881), + [aux_sym_dis_expr_repeat1] = STATE(91), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1499), + [sym_comment] = ACTIONS(1499), + [anon_sym_POUND_] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1505), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1505), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_POUND_CARET] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_RPAREN] = ACTIONS(1516), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1505), + [anon_sym_cl] = ACTIONS(1518), + [aux_sym_accumulation_verb_token1] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_and] = ACTIONS(1521), + [anon_sym_as] = ACTIONS(1521), + [anon_sym_with] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_until] = ACTIONS(1521), + [anon_sym_repeat] = ACTIONS(1521), + [anon_sym_when] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_unless] = ACTIONS(1521), + [anon_sym_always] = ACTIONS(1521), + [anon_sym_thereis] = ACTIONS(1521), + [anon_sym_never] = ACTIONS(1521), + [anon_sym_else] = ACTIONS(1521), + [anon_sym_finally] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_initially] = ACTIONS(1521), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1523), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [51] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1880), + [sym_num_lit] = STATE(1880), + [sym_kwd_lit] = STATE(1880), + [sym_str_lit] = STATE(1880), + [sym_char_lit] = STATE(1880), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1880), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1880), + [sym_set_lit] = STATE(1880), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1880), + [sym_splicing_read_cond_lit] = STATE(1880), + [sym_var_quoting_lit] = STATE(1880), + [sym_quoting_lit] = STATE(1880), + [sym_syn_quoting_lit] = STATE(1880), + [sym_unquote_splicing_lit] = STATE(1880), + [sym_unquoting_lit] = STATE(1880), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1880), + [sym_package_lit] = STATE(1880), + [sym_include_reader_macro] = STATE(1880), + [sym_complex_num_lit] = STATE(1880), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1525), + [sym_comment] = ACTIONS(1525), + [anon_sym_POUND_] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1531), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1531), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_POUND_CARET] = ACTIONS(1536), [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_RPAREN] = ACTIONS(1543), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1529), - [anon_sym_cl] = ACTIONS(1546), - [aux_sym_accumulation_verb_token1] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(1550), - [anon_sym_as] = ACTIONS(1550), - [anon_sym_with] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1550), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_until] = ACTIONS(1550), - [anon_sym_repeat] = ACTIONS(1550), - [anon_sym_when] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_unless] = ACTIONS(1550), - [anon_sym_always] = ACTIONS(1550), - [anon_sym_thereis] = ACTIONS(1550), - [anon_sym_never] = ACTIONS(1550), - [anon_sym_else] = ACTIONS(1550), - [anon_sym_finally] = ACTIONS(1550), - [anon_sym_return] = ACTIONS(1550), - [anon_sym_initially] = ACTIONS(1550), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1553), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1531), + [anon_sym_cl] = ACTIONS(1544), + [aux_sym_accumulation_verb_token1] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1547), + [anon_sym_and] = ACTIONS(1547), + [anon_sym_as] = ACTIONS(1547), + [anon_sym_with] = ACTIONS(1547), + [anon_sym_do] = ACTIONS(1547), + [anon_sym_while] = ACTIONS(1547), + [anon_sym_until] = ACTIONS(1547), + [anon_sym_repeat] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_unless] = ACTIONS(1547), + [anon_sym_always] = ACTIONS(1547), + [anon_sym_thereis] = ACTIONS(1547), + [anon_sym_never] = ACTIONS(1547), + [anon_sym_else] = ACTIONS(1547), + [anon_sym_finally] = ACTIONS(1547), + [anon_sym_return] = ACTIONS(1547), + [anon_sym_initially] = ACTIONS(1547), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1549), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, - [44] = { - [sym__gap] = STATE(63), - [sym_dis_expr] = STATE(63), - [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(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2045), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2045), - [sym_set_lit] = STATE(2045), - [sym__bare_set_lit] = STATE(1853), - [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(1852), - [sym_loop_macro] = STATE(1852), - [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(63), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1555), - [sym_comment] = ACTIONS(1555), - [anon_sym_POUND_] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1561), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1561), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_POUND_CARET] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_RPAREN] = ACTIONS(1572), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [52] = { + [sym__gap] = STATE(74), + [sym_dis_expr] = STATE(74), + [sym__form] = STATE(1935), + [sym_num_lit] = STATE(1935), + [sym_kwd_lit] = STATE(1935), + [sym_str_lit] = STATE(1935), + [sym_char_lit] = STATE(1935), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1935), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1935), + [sym_set_lit] = STATE(1935), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1935), + [sym_splicing_read_cond_lit] = STATE(1935), + [sym_var_quoting_lit] = STATE(1935), + [sym_quoting_lit] = STATE(1935), + [sym_syn_quoting_lit] = STATE(1935), + [sym_unquote_splicing_lit] = STATE(1935), + [sym_unquoting_lit] = STATE(1935), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1935), + [sym_package_lit] = STATE(1935), + [sym_include_reader_macro] = STATE(1935), + [sym_complex_num_lit] = STATE(1935), + [aux_sym_dis_expr_repeat1] = STATE(74), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1551), + [sym_comment] = ACTIONS(1551), + [anon_sym_POUND_] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1557), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1557), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_POUND_CARET] = ACTIONS(1562), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_RPAREN] = ACTIONS(1568), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1561), - [anon_sym_cl] = ACTIONS(1574), - [aux_sym_accumulation_verb_token1] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_as] = ACTIONS(1577), - [anon_sym_with] = ACTIONS(1577), - [anon_sym_do] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1577), - [anon_sym_until] = ACTIONS(1577), - [anon_sym_repeat] = ACTIONS(1577), - [anon_sym_when] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_unless] = ACTIONS(1577), - [anon_sym_always] = ACTIONS(1577), - [anon_sym_thereis] = ACTIONS(1577), - [anon_sym_never] = ACTIONS(1577), - [anon_sym_else] = ACTIONS(1577), - [anon_sym_finally] = ACTIONS(1577), - [anon_sym_return] = ACTIONS(1577), - [anon_sym_initially] = ACTIONS(1577), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1579), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1557), + [anon_sym_cl] = ACTIONS(1570), + [aux_sym_accumulation_verb_token1] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1573), + [anon_sym_as] = ACTIONS(1573), + [anon_sym_with] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_until] = ACTIONS(1573), + [anon_sym_repeat] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1573), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_unless] = ACTIONS(1573), + [anon_sym_always] = ACTIONS(1573), + [anon_sym_thereis] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_else] = ACTIONS(1573), + [anon_sym_finally] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_initially] = ACTIONS(1573), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1575), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, - [45] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [sym__form] = STATE(1992), - [sym_num_lit] = STATE(1992), - [sym_kwd_lit] = STATE(1992), - [sym_str_lit] = STATE(1992), - [sym_char_lit] = STATE(1992), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1992), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1992), - [sym_set_lit] = STATE(1992), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1992), - [sym_splicing_read_cond_lit] = STATE(1992), - [sym_var_quoting_lit] = STATE(1992), - [sym_quoting_lit] = STATE(1992), - [sym_syn_quoting_lit] = STATE(1992), - [sym_unquote_splicing_lit] = STATE(1992), - [sym_unquoting_lit] = STATE(1992), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1992), - [sym_package_lit] = STATE(1992), - [sym_include_reader_macro] = STATE(1992), - [sym_complex_num_lit] = STATE(1992), - [aux_sym_dis_expr_repeat1] = STATE(775), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1581), - [sym_comment] = ACTIONS(1581), - [anon_sym_POUND_] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(154), + [53] = { + [sym__gap] = STATE(98), + [sym_dis_expr] = STATE(98), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2108), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2108), + [sym_set_lit] = STATE(2108), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(98), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1577), + [sym_comment] = ACTIONS(1577), + [anon_sym_POUND_] = ACTIONS(1258), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1580), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1580), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_POUND_CARET] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1272), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1580), + [anon_sym_cl] = ACTIONS(1274), + [aux_sym_accumulation_verb_token1] = ACTIONS(1277), + [anon_sym_for] = ACTIONS(1277), + [anon_sym_and] = ACTIONS(1277), + [anon_sym_as] = ACTIONS(1277), + [anon_sym_with] = ACTIONS(1277), + [anon_sym_do] = ACTIONS(1277), + [anon_sym_while] = ACTIONS(1277), + [anon_sym_until] = ACTIONS(1277), + [anon_sym_repeat] = ACTIONS(1277), + [anon_sym_when] = ACTIONS(1277), + [anon_sym_if] = ACTIONS(1277), + [anon_sym_unless] = ACTIONS(1277), + [anon_sym_always] = ACTIONS(1277), + [anon_sym_thereis] = ACTIONS(1277), + [anon_sym_never] = ACTIONS(1277), + [anon_sym_else] = ACTIONS(1277), + [anon_sym_finally] = ACTIONS(1277), + [anon_sym_return] = ACTIONS(1277), + [anon_sym_initially] = ACTIONS(1277), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1582), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [54] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1940), + [sym_num_lit] = STATE(1940), + [sym_kwd_lit] = STATE(1940), + [sym_str_lit] = STATE(1940), + [sym_char_lit] = STATE(1940), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1940), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1940), + [sym_set_lit] = STATE(1940), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1940), + [sym_splicing_read_cond_lit] = STATE(1940), + [sym_var_quoting_lit] = STATE(1940), + [sym_quoting_lit] = STATE(1940), + [sym_syn_quoting_lit] = STATE(1940), + [sym_unquote_splicing_lit] = STATE(1940), + [sym_unquoting_lit] = STATE(1940), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1940), + [sym_package_lit] = STATE(1940), + [sym_include_reader_macro] = STATE(1940), + [sym_complex_num_lit] = STATE(1940), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1584), + [sym_comment] = ACTIONS(1584), + [anon_sym_POUND_] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(129), [anon_sym_DOT] = ACTIONS(1587), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), [sym_nil_lit] = ACTIONS(1587), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1589), - [anon_sym_POUND_CARET] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_RPAREN] = ACTIONS(1598), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_POUND_CARET] = ACTIONS(1562), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_RPAREN] = ACTIONS(1568), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(1587), - [anon_sym_cl] = ACTIONS(1600), - [aux_sym_accumulation_verb_token1] = ACTIONS(1603), - [anon_sym_for] = ACTIONS(1603), - [anon_sym_and] = ACTIONS(1603), - [anon_sym_as] = ACTIONS(1603), - [anon_sym_with] = ACTIONS(1603), - [anon_sym_do] = ACTIONS(1603), - [anon_sym_while] = ACTIONS(1603), - [anon_sym_until] = ACTIONS(1603), - [anon_sym_repeat] = ACTIONS(1603), - [anon_sym_when] = ACTIONS(1603), - [anon_sym_if] = ACTIONS(1603), - [anon_sym_unless] = ACTIONS(1603), - [anon_sym_always] = ACTIONS(1603), - [anon_sym_thereis] = ACTIONS(1603), - [anon_sym_never] = ACTIONS(1603), - [anon_sym_else] = ACTIONS(1603), - [anon_sym_finally] = ACTIONS(1603), - [anon_sym_return] = ACTIONS(1603), - [anon_sym_initially] = ACTIONS(1603), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), + [anon_sym_cl] = ACTIONS(1570), + [aux_sym_accumulation_verb_token1] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1573), + [anon_sym_as] = ACTIONS(1573), + [anon_sym_with] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_until] = ACTIONS(1573), + [anon_sym_repeat] = ACTIONS(1573), + [anon_sym_when] = ACTIONS(1573), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_unless] = ACTIONS(1573), + [anon_sym_always] = ACTIONS(1573), + [anon_sym_thereis] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_else] = ACTIONS(1573), + [anon_sym_finally] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_initially] = ACTIONS(1573), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1589), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [55] = { + [sym__gap] = STATE(95), + [sym_dis_expr] = STATE(95), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1983), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1983), + [sym_set_lit] = STATE(1983), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1983), + [sym_package_lit] = STATE(1983), + [sym_include_reader_macro] = STATE(1983), + [sym_complex_num_lit] = STATE(1983), + [aux_sym_dis_expr_repeat1] = STATE(95), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1591), + [sym_comment] = ACTIONS(1591), + [anon_sym_POUND_] = ACTIONS(1594), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1597), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1597), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(235), + [anon_sym_POUND_CARET] = ACTIONS(238), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(244), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1597), + [anon_sym_cl] = ACTIONS(1602), + [aux_sym_accumulation_verb_token1] = ACTIONS(251), + [anon_sym_for] = ACTIONS(251), + [anon_sym_and] = ACTIONS(251), + [anon_sym_as] = ACTIONS(251), + [anon_sym_with] = ACTIONS(251), + [anon_sym_do] = ACTIONS(251), + [anon_sym_while] = ACTIONS(251), + [anon_sym_until] = ACTIONS(251), + [anon_sym_repeat] = ACTIONS(251), + [anon_sym_when] = ACTIONS(251), + [anon_sym_if] = ACTIONS(251), + [anon_sym_unless] = ACTIONS(251), + [anon_sym_always] = ACTIONS(251), + [anon_sym_thereis] = ACTIONS(251), + [anon_sym_never] = ACTIONS(251), + [anon_sym_else] = ACTIONS(251), + [anon_sym_finally] = ACTIONS(251), + [anon_sym_return] = ACTIONS(251), + [anon_sym_initially] = ACTIONS(251), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), [sym_self_referential_reader_macro] = ACTIONS(1605), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, - [46] = { - [sym__gap] = STATE(363), - [sym_dis_expr] = STATE(363), - [sym__form] = STATE(72), - [sym_num_lit] = STATE(72), - [sym_kwd_lit] = STATE(72), - [sym_str_lit] = STATE(72), - [sym_char_lit] = STATE(72), - [sym_sym_lit] = STATE(1225), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(72), - [sym__bare_list_lit] = STATE(1226), - [sym_vec_lit] = STATE(72), - [sym_set_lit] = STATE(72), - [sym__bare_set_lit] = STATE(1227), - [sym_read_cond_lit] = STATE(72), - [sym_splicing_read_cond_lit] = STATE(72), - [sym_var_quoting_lit] = STATE(72), - [sym_quoting_lit] = STATE(72), - [sym_syn_quoting_lit] = STATE(72), - [sym_unquote_splicing_lit] = STATE(72), - [sym_unquoting_lit] = STATE(72), - [sym_defun] = STATE(1226), - [sym_loop_macro] = STATE(1226), - [sym_path_lit] = STATE(72), - [sym_package_lit] = STATE(72), - [sym_include_reader_macro] = STATE(72), - [sym_complex_num_lit] = STATE(72), - [aux_sym_dis_expr_repeat1] = STATE(363), - [aux_sym_list_lit_repeat1] = STATE(2098), + [56] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2036), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2036), + [sym_set_lit] = STATE(2036), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(834), + [aux_sym_list_lit_repeat1] = STATE(2328), [sym__ws] = ACTIONS(1607), [sym_comment] = ACTIONS(1607), [anon_sym_POUND_] = ACTIONS(1610), - [anon_sym_POUND] = ACTIONS(1441), + [anon_sym_POUND] = ACTIONS(129), [anon_sym_DOT] = ACTIONS(1613), - [aux_sym_num_lit_token1] = ACTIONS(1445), - [anon_sym_COLON] = ACTIONS(1447), - [anon_sym_COLON_COLON] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1451), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), [sym_nil_lit] = ACTIONS(1613), - [aux_sym_sym_lit_token1] = ACTIONS(1453), + [aux_sym_sym_lit_token1] = ACTIONS(141), [anon_sym_CARET] = ACTIONS(1615), [anon_sym_POUND_CARET] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(1621), [anon_sym_RPAREN] = ACTIONS(1624), - [anon_sym_POUND0A] = ACTIONS(1466), - [anon_sym_POUND0a] = ACTIONS(1466), - [anon_sym_POUND_QMARK] = ACTIONS(1468), - [anon_sym_POUND_QMARK_AT] = ACTIONS(1470), - [anon_sym_POUND_SQUOTE] = ACTIONS(1472), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_BQUOTE] = ACTIONS(1476), - [anon_sym_COMMA_AT] = ACTIONS(1478), - [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(1613), [anon_sym_cl] = ACTIONS(1626), @@ -13486,70 +14787,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(1629), [anon_sym_return] = ACTIONS(1629), [anon_sym_initially] = ACTIONS(1629), - [anon_sym_POUNDP] = ACTIONS(1487), - [anon_sym_POUNDp] = ACTIONS(1487), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), [sym_self_referential_reader_macro] = ACTIONS(1631), - [anon_sym_POUND_PLUS] = ACTIONS(1491), - [anon_sym_POUND_DASH] = ACTIONS(1491), - [anon_sym_POUNDC] = ACTIONS(1493), - [anon_sym_POUNDc] = ACTIONS(1493), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, - [47] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [sym__form] = STATE(1978), - [sym_num_lit] = STATE(1978), - [sym_kwd_lit] = STATE(1978), - [sym_str_lit] = STATE(1978), - [sym_char_lit] = STATE(1978), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1978), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1978), - [sym_set_lit] = STATE(1978), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1978), - [sym_splicing_read_cond_lit] = STATE(1978), - [sym_var_quoting_lit] = STATE(1978), - [sym_quoting_lit] = STATE(1978), - [sym_syn_quoting_lit] = STATE(1978), - [sym_unquote_splicing_lit] = STATE(1978), - [sym_unquoting_lit] = STATE(1978), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1978), - [sym_package_lit] = STATE(1978), - [sym_include_reader_macro] = STATE(1978), - [sym_complex_num_lit] = STATE(1978), - [aux_sym_dis_expr_repeat1] = STATE(775), - [aux_sym_list_lit_repeat1] = STATE(2102), + [57] = { + [sym__gap] = STATE(32), + [sym_dis_expr] = STATE(32), + [sym__form] = STATE(1936), + [sym_num_lit] = STATE(1936), + [sym_kwd_lit] = STATE(1936), + [sym_str_lit] = STATE(1936), + [sym_char_lit] = STATE(1936), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1936), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1936), + [sym_set_lit] = STATE(1936), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1936), + [sym_splicing_read_cond_lit] = STATE(1936), + [sym_var_quoting_lit] = STATE(1936), + [sym_quoting_lit] = STATE(1936), + [sym_syn_quoting_lit] = STATE(1936), + [sym_unquote_splicing_lit] = STATE(1936), + [sym_unquoting_lit] = STATE(1936), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1936), + [sym_package_lit] = STATE(1936), + [sym_include_reader_macro] = STATE(1936), + [sym_complex_num_lit] = STATE(1936), + [aux_sym_dis_expr_repeat1] = STATE(32), + [aux_sym_list_lit_repeat1] = STATE(2328), [sym__ws] = ACTIONS(1633), [sym_comment] = ACTIONS(1633), [anon_sym_POUND_] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(154), + [anon_sym_POUND] = ACTIONS(129), [anon_sym_DOT] = ACTIONS(1639), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), [sym_nil_lit] = ACTIONS(1639), - [aux_sym_sym_lit_token1] = ACTIONS(166), + [aux_sym_sym_lit_token1] = ACTIONS(141), [anon_sym_CARET] = ACTIONS(1641), [anon_sym_POUND_CARET] = ACTIONS(1644), [anon_sym_LPAREN] = ACTIONS(1647), [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(1639), [anon_sym_cl] = ACTIONS(1652), @@ -13572,2519 +14873,1751 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(1655), [anon_sym_return] = ACTIONS(1655), [anon_sym_initially] = ACTIONS(1655), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), [sym_self_referential_reader_macro] = ACTIONS(1657), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, - [48] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [sym__form] = STATE(1948), - [sym_num_lit] = STATE(1948), - [sym_kwd_lit] = STATE(1948), - [sym_str_lit] = STATE(1948), - [sym_char_lit] = STATE(1948), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1948), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1948), - [sym_set_lit] = STATE(1948), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1948), - [sym_splicing_read_cond_lit] = STATE(1948), - [sym_var_quoting_lit] = STATE(1948), - [sym_quoting_lit] = STATE(1948), - [sym_syn_quoting_lit] = STATE(1948), - [sym_unquote_splicing_lit] = STATE(1948), - [sym_unquoting_lit] = STATE(1948), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1948), - [sym_package_lit] = STATE(1948), - [sym_include_reader_macro] = STATE(1948), - [sym_complex_num_lit] = STATE(1948), - [aux_sym_dis_expr_repeat1] = STATE(775), - [aux_sym_list_lit_repeat1] = STATE(2102), + [58] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1891), + [sym_num_lit] = STATE(1891), + [sym_kwd_lit] = STATE(1891), + [sym_str_lit] = STATE(1891), + [sym_char_lit] = STATE(1891), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1891), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1891), + [sym_set_lit] = STATE(1891), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1891), + [sym_splicing_read_cond_lit] = STATE(1891), + [sym_var_quoting_lit] = STATE(1891), + [sym_quoting_lit] = STATE(1891), + [sym_syn_quoting_lit] = STATE(1891), + [sym_unquote_splicing_lit] = STATE(1891), + [sym_unquoting_lit] = STATE(1891), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1891), + [sym_package_lit] = STATE(1891), + [sym_include_reader_macro] = STATE(1891), + [sym_complex_num_lit] = STATE(1891), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), [sym__ws] = ACTIONS(1659), [sym_comment] = ACTIONS(1659), - [anon_sym_POUND_] = ACTIONS(1662), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1665), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1665), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_POUND_CARET] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_RPAREN] = ACTIONS(1676), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1665), - [anon_sym_cl] = ACTIONS(1678), - [aux_sym_accumulation_verb_token1] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_and] = ACTIONS(1681), - [anon_sym_as] = ACTIONS(1681), - [anon_sym_with] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_until] = ACTIONS(1681), - [anon_sym_repeat] = ACTIONS(1681), - [anon_sym_when] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_unless] = ACTIONS(1681), - [anon_sym_always] = ACTIONS(1681), - [anon_sym_thereis] = ACTIONS(1681), - [anon_sym_never] = ACTIONS(1681), - [anon_sym_else] = ACTIONS(1681), - [anon_sym_finally] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_initially] = ACTIONS(1681), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1683), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), - }, - [49] = { - [sym__gap] = STATE(48), - [sym_dis_expr] = STATE(48), - [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(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2039), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2039), - [sym_set_lit] = STATE(2039), - [sym__bare_set_lit] = STATE(1853), - [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(1852), - [sym_loop_macro] = STATE(1852), - [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(48), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1685), - [sym_comment] = ACTIONS(1685), - [anon_sym_POUND_] = ACTIONS(1688), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1691), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1691), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1693), - [anon_sym_POUND_CARET] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_RPAREN] = ACTIONS(1702), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [anon_sym_POUND_] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1662), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1662), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1641), + [anon_sym_POUND_CARET] = ACTIONS(1644), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1691), - [anon_sym_cl] = ACTIONS(1704), - [aux_sym_accumulation_verb_token1] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1707), - [anon_sym_as] = ACTIONS(1707), - [anon_sym_with] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_until] = ACTIONS(1707), - [anon_sym_repeat] = ACTIONS(1707), - [anon_sym_when] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_unless] = ACTIONS(1707), - [anon_sym_always] = ACTIONS(1707), - [anon_sym_thereis] = ACTIONS(1707), - [anon_sym_never] = ACTIONS(1707), - [anon_sym_else] = ACTIONS(1707), - [anon_sym_finally] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_initially] = ACTIONS(1707), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1709), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), - }, - [50] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [sym__form] = STATE(2000), - [sym_num_lit] = STATE(2000), - [sym_kwd_lit] = STATE(2000), - [sym_str_lit] = STATE(2000), - [sym_char_lit] = STATE(2000), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2000), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2000), - [sym_set_lit] = STATE(2000), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2000), - [sym_splicing_read_cond_lit] = STATE(2000), - [sym_var_quoting_lit] = STATE(2000), - [sym_quoting_lit] = STATE(2000), - [sym_syn_quoting_lit] = STATE(2000), - [sym_unquote_splicing_lit] = STATE(2000), - [sym_unquoting_lit] = STATE(2000), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2000), - [sym_package_lit] = STATE(2000), - [sym_include_reader_macro] = STATE(2000), - [sym_complex_num_lit] = STATE(2000), - [aux_sym_dis_expr_repeat1] = STATE(775), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1711), - [sym_comment] = ACTIONS(1711), - [anon_sym_POUND_] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1719), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1719), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1721), - [anon_sym_POUND_CARET] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_RPAREN] = ACTIONS(1733), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1719), - [anon_sym_cl] = ACTIONS(1736), - [aux_sym_accumulation_verb_token1] = ACTIONS(1740), - [anon_sym_for] = ACTIONS(1740), - [anon_sym_and] = ACTIONS(1740), - [anon_sym_as] = ACTIONS(1740), - [anon_sym_with] = ACTIONS(1740), - [anon_sym_do] = ACTIONS(1740), - [anon_sym_while] = ACTIONS(1740), - [anon_sym_until] = ACTIONS(1740), - [anon_sym_repeat] = ACTIONS(1740), - [anon_sym_when] = ACTIONS(1740), - [anon_sym_if] = ACTIONS(1740), - [anon_sym_unless] = ACTIONS(1740), - [anon_sym_always] = ACTIONS(1740), - [anon_sym_thereis] = ACTIONS(1740), - [anon_sym_never] = ACTIONS(1740), - [anon_sym_else] = ACTIONS(1740), - [anon_sym_finally] = ACTIONS(1740), - [anon_sym_return] = ACTIONS(1740), - [anon_sym_initially] = ACTIONS(1740), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1743), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), - }, - [51] = { - [sym__gap] = STATE(36), - [sym_dis_expr] = STATE(36), - [sym__form] = STATE(2003), - [sym_num_lit] = STATE(2003), - [sym_kwd_lit] = STATE(2003), - [sym_str_lit] = STATE(2003), - [sym_char_lit] = STATE(2003), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2003), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2003), - [sym_set_lit] = STATE(2003), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2003), - [sym_splicing_read_cond_lit] = STATE(2003), - [sym_var_quoting_lit] = STATE(2003), - [sym_quoting_lit] = STATE(2003), - [sym_syn_quoting_lit] = STATE(2003), - [sym_unquote_splicing_lit] = STATE(2003), - [sym_unquoting_lit] = STATE(2003), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2003), - [sym_package_lit] = STATE(2003), - [sym_include_reader_macro] = STATE(2003), - [sym_complex_num_lit] = STATE(2003), - [aux_sym_dis_expr_repeat1] = STATE(36), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1745), - [sym_comment] = ACTIONS(1745), - [anon_sym_POUND_] = ACTIONS(1748), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1751), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1751), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1753), - [anon_sym_POUND_CARET] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_RPAREN] = ACTIONS(1762), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1751), - [anon_sym_cl] = ACTIONS(1764), - [aux_sym_accumulation_verb_token1] = ACTIONS(1767), - [anon_sym_for] = ACTIONS(1767), - [anon_sym_and] = ACTIONS(1767), - [anon_sym_as] = ACTIONS(1767), - [anon_sym_with] = ACTIONS(1767), - [anon_sym_do] = ACTIONS(1767), - [anon_sym_while] = ACTIONS(1767), - [anon_sym_until] = ACTIONS(1767), - [anon_sym_repeat] = ACTIONS(1767), - [anon_sym_when] = ACTIONS(1767), - [anon_sym_if] = ACTIONS(1767), - [anon_sym_unless] = ACTIONS(1767), - [anon_sym_always] = ACTIONS(1767), - [anon_sym_thereis] = ACTIONS(1767), - [anon_sym_never] = ACTIONS(1767), - [anon_sym_else] = ACTIONS(1767), - [anon_sym_finally] = ACTIONS(1767), - [anon_sym_return] = ACTIONS(1767), - [anon_sym_initially] = ACTIONS(1767), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1769), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), - }, - [52] = { - [sym__gap] = STATE(22), - [sym_dis_expr] = STATE(22), - [sym__form] = STATE(2002), - [sym_num_lit] = STATE(2002), - [sym_kwd_lit] = STATE(2002), - [sym_str_lit] = STATE(2002), - [sym_char_lit] = STATE(2002), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2002), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2002), - [sym_set_lit] = STATE(2002), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2002), - [sym_splicing_read_cond_lit] = STATE(2002), - [sym_var_quoting_lit] = STATE(2002), - [sym_quoting_lit] = STATE(2002), - [sym_syn_quoting_lit] = STATE(2002), - [sym_unquote_splicing_lit] = STATE(2002), - [sym_unquoting_lit] = STATE(2002), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2002), - [sym_package_lit] = STATE(2002), - [sym_include_reader_macro] = STATE(2002), - [sym_complex_num_lit] = STATE(2002), - [aux_sym_dis_expr_repeat1] = STATE(22), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1771), - [sym_comment] = ACTIONS(1771), - [anon_sym_POUND_] = ACTIONS(1775), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1779), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1779), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_POUND_CARET] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_RPAREN] = ACTIONS(1793), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1779), - [anon_sym_cl] = ACTIONS(1796), - [aux_sym_accumulation_verb_token1] = ACTIONS(1800), - [anon_sym_for] = ACTIONS(1800), - [anon_sym_and] = ACTIONS(1800), - [anon_sym_as] = ACTIONS(1800), - [anon_sym_with] = ACTIONS(1800), - [anon_sym_do] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_until] = ACTIONS(1800), - [anon_sym_repeat] = ACTIONS(1800), - [anon_sym_when] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_unless] = ACTIONS(1800), - [anon_sym_always] = ACTIONS(1800), - [anon_sym_thereis] = ACTIONS(1800), - [anon_sym_never] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1800), - [anon_sym_finally] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_initially] = ACTIONS(1800), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1803), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), - }, - [53] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [sym__form] = STATE(2007), - [sym_num_lit] = STATE(2007), - [sym_kwd_lit] = STATE(2007), - [sym_str_lit] = STATE(2007), - [sym_char_lit] = STATE(2007), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2007), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2007), - [sym_set_lit] = STATE(2007), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2007), - [sym_splicing_read_cond_lit] = STATE(2007), - [sym_var_quoting_lit] = STATE(2007), - [sym_quoting_lit] = STATE(2007), - [sym_syn_quoting_lit] = STATE(2007), - [sym_unquote_splicing_lit] = STATE(2007), - [sym_unquoting_lit] = STATE(2007), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2007), - [sym_package_lit] = STATE(2007), - [sym_include_reader_macro] = STATE(2007), - [sym_complex_num_lit] = STATE(2007), - [aux_sym_dis_expr_repeat1] = STATE(775), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1805), - [sym_comment] = ACTIONS(1805), - [anon_sym_POUND_] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1811), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1811), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_POUND_CARET] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_RPAREN] = ACTIONS(1822), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1811), - [anon_sym_cl] = ACTIONS(1824), - [aux_sym_accumulation_verb_token1] = ACTIONS(1827), - [anon_sym_for] = ACTIONS(1827), - [anon_sym_and] = ACTIONS(1827), - [anon_sym_as] = ACTIONS(1827), - [anon_sym_with] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_while] = ACTIONS(1827), - [anon_sym_until] = ACTIONS(1827), - [anon_sym_repeat] = ACTIONS(1827), - [anon_sym_when] = ACTIONS(1827), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_unless] = ACTIONS(1827), - [anon_sym_always] = ACTIONS(1827), - [anon_sym_thereis] = ACTIONS(1827), - [anon_sym_never] = ACTIONS(1827), - [anon_sym_else] = ACTIONS(1827), - [anon_sym_finally] = ACTIONS(1827), - [anon_sym_return] = ACTIONS(1827), - [anon_sym_initially] = ACTIONS(1827), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1829), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), - }, - [54] = { - [sym__gap] = STATE(56), - [sym_dis_expr] = STATE(56), - [sym__form] = STATE(2016), - [sym_num_lit] = STATE(2016), - [sym_kwd_lit] = STATE(2016), - [sym_str_lit] = STATE(2016), - [sym_char_lit] = STATE(2016), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2016), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2016), - [sym_set_lit] = STATE(2016), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2016), - [sym_splicing_read_cond_lit] = STATE(2016), - [sym_var_quoting_lit] = STATE(2016), - [sym_quoting_lit] = STATE(2016), - [sym_syn_quoting_lit] = STATE(2016), - [sym_unquote_splicing_lit] = STATE(2016), - [sym_unquoting_lit] = STATE(2016), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2016), - [sym_package_lit] = STATE(2016), - [sym_include_reader_macro] = STATE(2016), - [sym_complex_num_lit] = STATE(2016), - [aux_sym_dis_expr_repeat1] = STATE(56), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1831), - [sym_comment] = ACTIONS(1831), - [anon_sym_POUND_] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1837), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1837), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1839), - [anon_sym_POUND_CARET] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_RPAREN] = ACTIONS(1848), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1837), - [anon_sym_cl] = ACTIONS(1850), - [aux_sym_accumulation_verb_token1] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1853), - [anon_sym_and] = ACTIONS(1853), - [anon_sym_as] = ACTIONS(1853), - [anon_sym_with] = ACTIONS(1853), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_while] = ACTIONS(1853), - [anon_sym_until] = ACTIONS(1853), - [anon_sym_repeat] = ACTIONS(1853), - [anon_sym_when] = ACTIONS(1853), - [anon_sym_if] = ACTIONS(1853), - [anon_sym_unless] = ACTIONS(1853), - [anon_sym_always] = ACTIONS(1853), - [anon_sym_thereis] = ACTIONS(1853), - [anon_sym_never] = ACTIONS(1853), - [anon_sym_else] = ACTIONS(1853), - [anon_sym_finally] = ACTIONS(1853), - [anon_sym_return] = ACTIONS(1853), - [anon_sym_initially] = ACTIONS(1853), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1855), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), - }, - [55] = { - [sym__gap] = STATE(38), - [sym_dis_expr] = STATE(38), - [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(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2042), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2042), - [sym_set_lit] = STATE(2042), - [sym__bare_set_lit] = STATE(1853), - [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(1852), - [sym_loop_macro] = STATE(1852), - [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(38), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1857), - [sym_comment] = ACTIONS(1857), - [anon_sym_POUND_] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1865), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1865), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_POUND_CARET] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1875), - [anon_sym_RPAREN] = ACTIONS(1879), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1865), - [anon_sym_cl] = ACTIONS(1882), - [aux_sym_accumulation_verb_token1] = ACTIONS(1886), - [anon_sym_for] = ACTIONS(1886), - [anon_sym_and] = ACTIONS(1886), - [anon_sym_as] = ACTIONS(1886), - [anon_sym_with] = ACTIONS(1886), - [anon_sym_do] = ACTIONS(1886), - [anon_sym_while] = ACTIONS(1886), - [anon_sym_until] = ACTIONS(1886), - [anon_sym_repeat] = ACTIONS(1886), - [anon_sym_when] = ACTIONS(1886), - [anon_sym_if] = ACTIONS(1886), - [anon_sym_unless] = ACTIONS(1886), - [anon_sym_always] = ACTIONS(1886), - [anon_sym_thereis] = ACTIONS(1886), - [anon_sym_never] = ACTIONS(1886), - [anon_sym_else] = ACTIONS(1886), - [anon_sym_finally] = ACTIONS(1886), - [anon_sym_return] = ACTIONS(1886), - [anon_sym_initially] = ACTIONS(1886), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1889), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), - }, - [56] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [sym__form] = STATE(1953), - [sym_num_lit] = STATE(1953), - [sym_kwd_lit] = STATE(1953), - [sym_str_lit] = STATE(1953), - [sym_char_lit] = STATE(1953), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1953), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1953), - [sym_set_lit] = STATE(1953), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1953), - [sym_splicing_read_cond_lit] = STATE(1953), - [sym_var_quoting_lit] = STATE(1953), - [sym_quoting_lit] = STATE(1953), - [sym_syn_quoting_lit] = STATE(1953), - [sym_unquote_splicing_lit] = STATE(1953), - [sym_unquoting_lit] = STATE(1953), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1953), - [sym_package_lit] = STATE(1953), - [sym_include_reader_macro] = STATE(1953), - [sym_complex_num_lit] = STATE(1953), - [aux_sym_dis_expr_repeat1] = STATE(775), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1891), - [sym_comment] = ACTIONS(1891), - [anon_sym_POUND_] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1897), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1897), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_POUND_CARET] = ACTIONS(1902), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_RPAREN] = ACTIONS(1908), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1897), - [anon_sym_cl] = ACTIONS(1910), - [aux_sym_accumulation_verb_token1] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_and] = ACTIONS(1913), - [anon_sym_as] = ACTIONS(1913), - [anon_sym_with] = ACTIONS(1913), - [anon_sym_do] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1913), - [anon_sym_until] = ACTIONS(1913), - [anon_sym_repeat] = ACTIONS(1913), - [anon_sym_when] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_unless] = ACTIONS(1913), - [anon_sym_always] = ACTIONS(1913), - [anon_sym_thereis] = ACTIONS(1913), - [anon_sym_never] = ACTIONS(1913), - [anon_sym_else] = ACTIONS(1913), - [anon_sym_finally] = ACTIONS(1913), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_initially] = ACTIONS(1913), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1915), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), - }, - [57] = { - [sym__gap] = STATE(53), - [sym_dis_expr] = STATE(53), - [sym__form] = STATE(2020), - [sym_num_lit] = STATE(2020), - [sym_kwd_lit] = STATE(2020), - [sym_str_lit] = STATE(2020), - [sym_char_lit] = STATE(2020), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2020), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2020), - [sym_set_lit] = STATE(2020), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2020), - [sym_splicing_read_cond_lit] = STATE(2020), - [sym_var_quoting_lit] = STATE(2020), - [sym_quoting_lit] = STATE(2020), - [sym_syn_quoting_lit] = STATE(2020), - [sym_unquote_splicing_lit] = STATE(2020), - [sym_unquoting_lit] = STATE(2020), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2020), - [sym_package_lit] = STATE(2020), - [sym_include_reader_macro] = STATE(2020), - [sym_complex_num_lit] = STATE(2020), - [aux_sym_dis_expr_repeat1] = STATE(53), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1917), - [sym_comment] = ACTIONS(1917), - [anon_sym_POUND_] = ACTIONS(1920), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1923), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1923), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_POUND_CARET] = ACTIONS(1928), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_RPAREN] = ACTIONS(1934), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1923), - [anon_sym_cl] = ACTIONS(1936), - [aux_sym_accumulation_verb_token1] = ACTIONS(1939), - [anon_sym_for] = ACTIONS(1939), - [anon_sym_and] = ACTIONS(1939), - [anon_sym_as] = ACTIONS(1939), - [anon_sym_with] = ACTIONS(1939), - [anon_sym_do] = ACTIONS(1939), - [anon_sym_while] = ACTIONS(1939), - [anon_sym_until] = ACTIONS(1939), - [anon_sym_repeat] = ACTIONS(1939), - [anon_sym_when] = ACTIONS(1939), - [anon_sym_if] = ACTIONS(1939), - [anon_sym_unless] = ACTIONS(1939), - [anon_sym_always] = ACTIONS(1939), - [anon_sym_thereis] = ACTIONS(1939), - [anon_sym_never] = ACTIONS(1939), - [anon_sym_else] = ACTIONS(1939), - [anon_sym_finally] = ACTIONS(1939), - [anon_sym_return] = ACTIONS(1939), - [anon_sym_initially] = ACTIONS(1939), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1941), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), - }, - [58] = { - [sym__gap] = STATE(31), - [sym_dis_expr] = STATE(31), - [sym__form] = STATE(1979), - [sym_num_lit] = STATE(1979), - [sym_kwd_lit] = STATE(1979), - [sym_str_lit] = STATE(1979), - [sym_char_lit] = STATE(1979), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1979), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1979), - [sym_set_lit] = STATE(1979), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1979), - [sym_splicing_read_cond_lit] = STATE(1979), - [sym_var_quoting_lit] = STATE(1979), - [sym_quoting_lit] = STATE(1979), - [sym_syn_quoting_lit] = STATE(1979), - [sym_unquote_splicing_lit] = STATE(1979), - [sym_unquoting_lit] = STATE(1979), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1979), - [sym_package_lit] = STATE(1979), - [sym_include_reader_macro] = STATE(1979), - [sym_complex_num_lit] = STATE(1979), - [aux_sym_dis_expr_repeat1] = STATE(31), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1943), - [sym_comment] = ACTIONS(1943), - [anon_sym_POUND_] = ACTIONS(1946), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1949), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1949), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_POUND_CARET] = ACTIONS(1954), - [anon_sym_LPAREN] = ACTIONS(1957), - [anon_sym_RPAREN] = ACTIONS(1960), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1949), - [anon_sym_cl] = ACTIONS(1962), - [aux_sym_accumulation_verb_token1] = ACTIONS(1965), - [anon_sym_for] = ACTIONS(1965), - [anon_sym_and] = ACTIONS(1965), - [anon_sym_as] = ACTIONS(1965), - [anon_sym_with] = ACTIONS(1965), - [anon_sym_do] = ACTIONS(1965), - [anon_sym_while] = ACTIONS(1965), - [anon_sym_until] = ACTIONS(1965), - [anon_sym_repeat] = ACTIONS(1965), - [anon_sym_when] = ACTIONS(1965), - [anon_sym_if] = ACTIONS(1965), - [anon_sym_unless] = ACTIONS(1965), - [anon_sym_always] = ACTIONS(1965), - [anon_sym_thereis] = ACTIONS(1965), - [anon_sym_never] = ACTIONS(1965), - [anon_sym_else] = ACTIONS(1965), - [anon_sym_finally] = ACTIONS(1965), - [anon_sym_return] = ACTIONS(1965), - [anon_sym_initially] = ACTIONS(1965), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1967), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1662), + [anon_sym_cl] = ACTIONS(1652), + [aux_sym_accumulation_verb_token1] = ACTIONS(1655), + [anon_sym_for] = ACTIONS(1655), + [anon_sym_and] = ACTIONS(1655), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_with] = ACTIONS(1655), + [anon_sym_do] = ACTIONS(1655), + [anon_sym_while] = ACTIONS(1655), + [anon_sym_until] = ACTIONS(1655), + [anon_sym_repeat] = ACTIONS(1655), + [anon_sym_when] = ACTIONS(1655), + [anon_sym_if] = ACTIONS(1655), + [anon_sym_unless] = ACTIONS(1655), + [anon_sym_always] = ACTIONS(1655), + [anon_sym_thereis] = ACTIONS(1655), + [anon_sym_never] = ACTIONS(1655), + [anon_sym_else] = ACTIONS(1655), + [anon_sym_finally] = ACTIONS(1655), + [anon_sym_return] = ACTIONS(1655), + [anon_sym_initially] = ACTIONS(1655), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1664), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [59] = { - [sym__gap] = STATE(47), - [sym_dis_expr] = STATE(47), - [sym__form] = STATE(2011), - [sym_num_lit] = STATE(2011), - [sym_kwd_lit] = STATE(2011), - [sym_str_lit] = STATE(2011), - [sym_char_lit] = STATE(2011), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2011), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2011), - [sym_set_lit] = STATE(2011), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2011), - [sym_splicing_read_cond_lit] = STATE(2011), - [sym_var_quoting_lit] = STATE(2011), - [sym_quoting_lit] = STATE(2011), - [sym_syn_quoting_lit] = STATE(2011), - [sym_unquote_splicing_lit] = STATE(2011), - [sym_unquoting_lit] = STATE(2011), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2011), - [sym_package_lit] = STATE(2011), - [sym_include_reader_macro] = STATE(2011), - [sym_complex_num_lit] = STATE(2011), - [aux_sym_dis_expr_repeat1] = STATE(47), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1969), - [sym_comment] = ACTIONS(1969), - [anon_sym_POUND_] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(1975), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(1975), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(1977), - [anon_sym_POUND_CARET] = ACTIONS(1980), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_RPAREN] = ACTIONS(1986), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(80), + [sym_dis_expr] = STATE(80), + [sym__form] = STATE(1883), + [sym_num_lit] = STATE(1883), + [sym_kwd_lit] = STATE(1883), + [sym_str_lit] = STATE(1883), + [sym_char_lit] = STATE(1883), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1883), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1883), + [sym_set_lit] = STATE(1883), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1883), + [sym_splicing_read_cond_lit] = STATE(1883), + [sym_var_quoting_lit] = STATE(1883), + [sym_quoting_lit] = STATE(1883), + [sym_syn_quoting_lit] = STATE(1883), + [sym_unquote_splicing_lit] = STATE(1883), + [sym_unquoting_lit] = STATE(1883), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1883), + [sym_package_lit] = STATE(1883), + [sym_include_reader_macro] = STATE(1883), + [sym_complex_num_lit] = STATE(1883), + [aux_sym_dis_expr_repeat1] = STATE(80), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1666), + [sym_comment] = ACTIONS(1666), + [anon_sym_POUND_] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1672), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1672), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_POUND_CARET] = ACTIONS(860), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(866), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1975), - [anon_sym_cl] = ACTIONS(1988), - [aux_sym_accumulation_verb_token1] = ACTIONS(1991), - [anon_sym_for] = ACTIONS(1991), - [anon_sym_and] = ACTIONS(1991), - [anon_sym_as] = ACTIONS(1991), - [anon_sym_with] = ACTIONS(1991), - [anon_sym_do] = ACTIONS(1991), - [anon_sym_while] = ACTIONS(1991), - [anon_sym_until] = ACTIONS(1991), - [anon_sym_repeat] = ACTIONS(1991), - [anon_sym_when] = ACTIONS(1991), - [anon_sym_if] = ACTIONS(1991), - [anon_sym_unless] = ACTIONS(1991), - [anon_sym_always] = ACTIONS(1991), - [anon_sym_thereis] = ACTIONS(1991), - [anon_sym_never] = ACTIONS(1991), - [anon_sym_else] = ACTIONS(1991), - [anon_sym_finally] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1991), - [anon_sym_initially] = ACTIONS(1991), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(1993), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1672), + [anon_sym_cl] = ACTIONS(1677), + [aux_sym_accumulation_verb_token1] = ACTIONS(873), + [anon_sym_for] = ACTIONS(873), + [anon_sym_and] = ACTIONS(873), + [anon_sym_as] = ACTIONS(873), + [anon_sym_with] = ACTIONS(873), + [anon_sym_do] = ACTIONS(873), + [anon_sym_while] = ACTIONS(873), + [anon_sym_until] = ACTIONS(873), + [anon_sym_repeat] = ACTIONS(873), + [anon_sym_when] = ACTIONS(873), + [anon_sym_if] = ACTIONS(873), + [anon_sym_unless] = ACTIONS(873), + [anon_sym_always] = ACTIONS(873), + [anon_sym_thereis] = ACTIONS(873), + [anon_sym_never] = ACTIONS(873), + [anon_sym_else] = ACTIONS(873), + [anon_sym_finally] = ACTIONS(873), + [anon_sym_return] = ACTIONS(873), + [anon_sym_initially] = ACTIONS(873), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1680), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [60] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [sym__form] = STATE(2010), - [sym_num_lit] = STATE(2010), - [sym_kwd_lit] = STATE(2010), - [sym_str_lit] = STATE(2010), - [sym_char_lit] = STATE(2010), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2010), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2010), - [sym_set_lit] = STATE(2010), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2010), - [sym_splicing_read_cond_lit] = STATE(2010), - [sym_var_quoting_lit] = STATE(2010), - [sym_quoting_lit] = STATE(2010), - [sym_syn_quoting_lit] = STATE(2010), - [sym_unquote_splicing_lit] = STATE(2010), - [sym_unquoting_lit] = STATE(2010), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2010), - [sym_package_lit] = STATE(2010), - [sym_include_reader_macro] = STATE(2010), - [sym_complex_num_lit] = STATE(2010), - [aux_sym_dis_expr_repeat1] = STATE(775), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(1995), - [sym_comment] = ACTIONS(1995), - [anon_sym_POUND_] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(2003), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(2003), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(2005), - [anon_sym_POUND_CARET] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_RPAREN] = ACTIONS(2017), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(34), + [sym_dis_expr] = STATE(34), + [sym__form] = STATE(1897), + [sym_num_lit] = STATE(1897), + [sym_kwd_lit] = STATE(1897), + [sym_str_lit] = STATE(1897), + [sym_char_lit] = STATE(1897), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1897), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1897), + [sym_set_lit] = STATE(1897), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1897), + [sym_splicing_read_cond_lit] = STATE(1897), + [sym_var_quoting_lit] = STATE(1897), + [sym_quoting_lit] = STATE(1897), + [sym_syn_quoting_lit] = STATE(1897), + [sym_unquote_splicing_lit] = STATE(1897), + [sym_unquoting_lit] = STATE(1897), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1897), + [sym_package_lit] = STATE(1897), + [sym_include_reader_macro] = STATE(1897), + [sym_complex_num_lit] = STATE(1897), + [aux_sym_dis_expr_repeat1] = STATE(34), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1682), + [sym_comment] = ACTIONS(1682), + [anon_sym_POUND_] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1685), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1685), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_POUND_CARET] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2003), - [anon_sym_cl] = ACTIONS(2020), - [aux_sym_accumulation_verb_token1] = ACTIONS(2024), - [anon_sym_for] = ACTIONS(2024), - [anon_sym_and] = ACTIONS(2024), - [anon_sym_as] = ACTIONS(2024), - [anon_sym_with] = ACTIONS(2024), - [anon_sym_do] = ACTIONS(2024), - [anon_sym_while] = ACTIONS(2024), - [anon_sym_until] = ACTIONS(2024), - [anon_sym_repeat] = ACTIONS(2024), - [anon_sym_when] = ACTIONS(2024), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_unless] = ACTIONS(2024), - [anon_sym_always] = ACTIONS(2024), - [anon_sym_thereis] = ACTIONS(2024), - [anon_sym_never] = ACTIONS(2024), - [anon_sym_else] = ACTIONS(2024), - [anon_sym_finally] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2024), - [anon_sym_initially] = ACTIONS(2024), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(2027), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1685), + [anon_sym_cl] = ACTIONS(1544), + [aux_sym_accumulation_verb_token1] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1547), + [anon_sym_and] = ACTIONS(1547), + [anon_sym_as] = ACTIONS(1547), + [anon_sym_with] = ACTIONS(1547), + [anon_sym_do] = ACTIONS(1547), + [anon_sym_while] = ACTIONS(1547), + [anon_sym_until] = ACTIONS(1547), + [anon_sym_repeat] = ACTIONS(1547), + [anon_sym_when] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_unless] = ACTIONS(1547), + [anon_sym_always] = ACTIONS(1547), + [anon_sym_thereis] = ACTIONS(1547), + [anon_sym_never] = ACTIONS(1547), + [anon_sym_else] = ACTIONS(1547), + [anon_sym_finally] = ACTIONS(1547), + [anon_sym_return] = ACTIONS(1547), + [anon_sym_initially] = ACTIONS(1547), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1687), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [61] = { - [sym__gap] = STATE(27), - [sym_dis_expr] = STATE(27), - [sym__form] = STATE(2005), - [sym_num_lit] = STATE(2005), - [sym_kwd_lit] = STATE(2005), - [sym_str_lit] = STATE(2005), - [sym_char_lit] = STATE(2005), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2005), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2005), - [sym_set_lit] = STATE(2005), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2005), - [sym_splicing_read_cond_lit] = STATE(2005), - [sym_var_quoting_lit] = STATE(2005), - [sym_quoting_lit] = STATE(2005), - [sym_syn_quoting_lit] = STATE(2005), - [sym_unquote_splicing_lit] = STATE(2005), - [sym_unquoting_lit] = STATE(2005), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2005), - [sym_package_lit] = STATE(2005), - [sym_include_reader_macro] = STATE(2005), - [sym_complex_num_lit] = STATE(2005), - [aux_sym_dis_expr_repeat1] = STATE(27), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(2029), - [sym_comment] = ACTIONS(2029), - [anon_sym_POUND_] = ACTIONS(2032), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(2035), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(2035), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(2037), - [anon_sym_POUND_CARET] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_RPAREN] = ACTIONS(2046), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(35), + [sym_dis_expr] = STATE(35), + [sym__form] = STATE(1903), + [sym_num_lit] = STATE(1903), + [sym_kwd_lit] = STATE(1903), + [sym_str_lit] = STATE(1903), + [sym_char_lit] = STATE(1903), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1903), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1903), + [sym_set_lit] = STATE(1903), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1903), + [sym_splicing_read_cond_lit] = STATE(1903), + [sym_var_quoting_lit] = STATE(1903), + [sym_quoting_lit] = STATE(1903), + [sym_syn_quoting_lit] = STATE(1903), + [sym_unquote_splicing_lit] = STATE(1903), + [sym_unquoting_lit] = STATE(1903), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1903), + [sym_package_lit] = STATE(1903), + [sym_include_reader_macro] = STATE(1903), + [sym_complex_num_lit] = STATE(1903), + [aux_sym_dis_expr_repeat1] = STATE(35), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1689), + [sym_comment] = ACTIONS(1689), + [anon_sym_POUND_] = ACTIONS(1692), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1695), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1695), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1697), + [anon_sym_POUND_CARET] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1706), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2035), - [anon_sym_cl] = ACTIONS(2048), - [aux_sym_accumulation_verb_token1] = ACTIONS(2051), - [anon_sym_for] = ACTIONS(2051), - [anon_sym_and] = ACTIONS(2051), - [anon_sym_as] = ACTIONS(2051), - [anon_sym_with] = ACTIONS(2051), - [anon_sym_do] = ACTIONS(2051), - [anon_sym_while] = ACTIONS(2051), - [anon_sym_until] = ACTIONS(2051), - [anon_sym_repeat] = ACTIONS(2051), - [anon_sym_when] = ACTIONS(2051), - [anon_sym_if] = ACTIONS(2051), - [anon_sym_unless] = ACTIONS(2051), - [anon_sym_always] = ACTIONS(2051), - [anon_sym_thereis] = ACTIONS(2051), - [anon_sym_never] = ACTIONS(2051), - [anon_sym_else] = ACTIONS(2051), - [anon_sym_finally] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2051), - [anon_sym_initially] = ACTIONS(2051), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(2053), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1695), + [anon_sym_cl] = ACTIONS(1708), + [aux_sym_accumulation_verb_token1] = ACTIONS(1711), + [anon_sym_for] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_as] = ACTIONS(1711), + [anon_sym_with] = ACTIONS(1711), + [anon_sym_do] = ACTIONS(1711), + [anon_sym_while] = ACTIONS(1711), + [anon_sym_until] = ACTIONS(1711), + [anon_sym_repeat] = ACTIONS(1711), + [anon_sym_when] = ACTIONS(1711), + [anon_sym_if] = ACTIONS(1711), + [anon_sym_unless] = ACTIONS(1711), + [anon_sym_always] = ACTIONS(1711), + [anon_sym_thereis] = ACTIONS(1711), + [anon_sym_never] = ACTIONS(1711), + [anon_sym_else] = ACTIONS(1711), + [anon_sym_finally] = ACTIONS(1711), + [anon_sym_return] = ACTIONS(1711), + [anon_sym_initially] = ACTIONS(1711), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1713), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [62] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [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(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2043), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2043), - [sym_set_lit] = STATE(2043), - [sym__bare_set_lit] = STATE(1853), - [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(1852), - [sym_loop_macro] = STATE(1852), - [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(775), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(2055), - [sym_comment] = ACTIONS(2055), - [anon_sym_POUND_] = ACTIONS(2058), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(2061), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(2061), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(2063), - [anon_sym_POUND_CARET] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2069), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1904), + [sym_num_lit] = STATE(1904), + [sym_kwd_lit] = STATE(1904), + [sym_str_lit] = STATE(1904), + [sym_char_lit] = STATE(1904), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1904), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1904), + [sym_set_lit] = STATE(1904), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1904), + [sym_splicing_read_cond_lit] = STATE(1904), + [sym_var_quoting_lit] = STATE(1904), + [sym_quoting_lit] = STATE(1904), + [sym_syn_quoting_lit] = STATE(1904), + [sym_unquote_splicing_lit] = STATE(1904), + [sym_unquoting_lit] = STATE(1904), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1904), + [sym_package_lit] = STATE(1904), + [sym_include_reader_macro] = STATE(1904), + [sym_complex_num_lit] = STATE(1904), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1715), + [sym_comment] = ACTIONS(1715), + [anon_sym_POUND_] = ACTIONS(1692), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1718), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1718), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1697), + [anon_sym_POUND_CARET] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1706), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2061), - [anon_sym_cl] = ACTIONS(2074), - [aux_sym_accumulation_verb_token1] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_and] = ACTIONS(2077), - [anon_sym_as] = ACTIONS(2077), - [anon_sym_with] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_until] = ACTIONS(2077), - [anon_sym_repeat] = ACTIONS(2077), - [anon_sym_when] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_unless] = ACTIONS(2077), - [anon_sym_always] = ACTIONS(2077), - [anon_sym_thereis] = ACTIONS(2077), - [anon_sym_never] = ACTIONS(2077), - [anon_sym_else] = ACTIONS(2077), - [anon_sym_finally] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_initially] = ACTIONS(2077), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(2079), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1718), + [anon_sym_cl] = ACTIONS(1708), + [aux_sym_accumulation_verb_token1] = ACTIONS(1711), + [anon_sym_for] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_as] = ACTIONS(1711), + [anon_sym_with] = ACTIONS(1711), + [anon_sym_do] = ACTIONS(1711), + [anon_sym_while] = ACTIONS(1711), + [anon_sym_until] = ACTIONS(1711), + [anon_sym_repeat] = ACTIONS(1711), + [anon_sym_when] = ACTIONS(1711), + [anon_sym_if] = ACTIONS(1711), + [anon_sym_unless] = ACTIONS(1711), + [anon_sym_always] = ACTIONS(1711), + [anon_sym_thereis] = ACTIONS(1711), + [anon_sym_never] = ACTIONS(1711), + [anon_sym_else] = ACTIONS(1711), + [anon_sym_finally] = ACTIONS(1711), + [anon_sym_return] = ACTIONS(1711), + [anon_sym_initially] = ACTIONS(1711), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1720), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [63] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [sym__form] = STATE(1974), - [sym_num_lit] = STATE(1974), - [sym_kwd_lit] = STATE(1974), - [sym_str_lit] = STATE(1974), - [sym_char_lit] = STATE(1974), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1974), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1974), - [sym_set_lit] = STATE(1974), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1974), - [sym_splicing_read_cond_lit] = STATE(1974), - [sym_var_quoting_lit] = STATE(1974), - [sym_quoting_lit] = STATE(1974), - [sym_syn_quoting_lit] = STATE(1974), - [sym_unquote_splicing_lit] = STATE(1974), - [sym_unquoting_lit] = STATE(1974), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1974), - [sym_package_lit] = STATE(1974), - [sym_include_reader_macro] = STATE(1974), - [sym_complex_num_lit] = STATE(1974), - [aux_sym_dis_expr_repeat1] = STATE(775), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(2081), - [sym_comment] = ACTIONS(2081), - [anon_sym_POUND_] = ACTIONS(2084), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(2087), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(2087), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(2089), - [anon_sym_POUND_CARET] = ACTIONS(2092), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_RPAREN] = ACTIONS(2098), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(37), + [sym_dis_expr] = STATE(37), + [sym__form] = STATE(1896), + [sym_num_lit] = STATE(1896), + [sym_kwd_lit] = STATE(1896), + [sym_str_lit] = STATE(1896), + [sym_char_lit] = STATE(1896), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1896), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1896), + [sym_set_lit] = STATE(1896), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1896), + [sym_splicing_read_cond_lit] = STATE(1896), + [sym_var_quoting_lit] = STATE(1896), + [sym_quoting_lit] = STATE(1896), + [sym_syn_quoting_lit] = STATE(1896), + [sym_unquote_splicing_lit] = STATE(1896), + [sym_unquoting_lit] = STATE(1896), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1896), + [sym_package_lit] = STATE(1896), + [sym_include_reader_macro] = STATE(1896), + [sym_complex_num_lit] = STATE(1896), + [aux_sym_dis_expr_repeat1] = STATE(37), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1722), + [sym_comment] = ACTIONS(1722), + [anon_sym_POUND_] = ACTIONS(1725), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1728), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1728), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1730), + [anon_sym_POUND_CARET] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1739), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2087), - [anon_sym_cl] = ACTIONS(2100), - [aux_sym_accumulation_verb_token1] = ACTIONS(2103), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_and] = ACTIONS(2103), - [anon_sym_as] = ACTIONS(2103), - [anon_sym_with] = ACTIONS(2103), - [anon_sym_do] = ACTIONS(2103), - [anon_sym_while] = ACTIONS(2103), - [anon_sym_until] = ACTIONS(2103), - [anon_sym_repeat] = ACTIONS(2103), - [anon_sym_when] = ACTIONS(2103), - [anon_sym_if] = ACTIONS(2103), - [anon_sym_unless] = ACTIONS(2103), - [anon_sym_always] = ACTIONS(2103), - [anon_sym_thereis] = ACTIONS(2103), - [anon_sym_never] = ACTIONS(2103), - [anon_sym_else] = ACTIONS(2103), - [anon_sym_finally] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2103), - [anon_sym_initially] = ACTIONS(2103), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(2105), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1728), + [anon_sym_cl] = ACTIONS(1741), + [aux_sym_accumulation_verb_token1] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_and] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_with] = ACTIONS(1744), + [anon_sym_do] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_until] = ACTIONS(1744), + [anon_sym_repeat] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_unless] = ACTIONS(1744), + [anon_sym_always] = ACTIONS(1744), + [anon_sym_thereis] = ACTIONS(1744), + [anon_sym_never] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_finally] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_initially] = ACTIONS(1744), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1746), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [64] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [sym__form] = STATE(1977), - [sym_num_lit] = STATE(1977), - [sym_kwd_lit] = STATE(1977), - [sym_str_lit] = STATE(1977), - [sym_char_lit] = STATE(1977), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1977), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1977), - [sym_set_lit] = STATE(1977), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1977), - [sym_splicing_read_cond_lit] = STATE(1977), - [sym_var_quoting_lit] = STATE(1977), - [sym_quoting_lit] = STATE(1977), - [sym_syn_quoting_lit] = STATE(1977), - [sym_unquote_splicing_lit] = STATE(1977), - [sym_unquoting_lit] = STATE(1977), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1977), - [sym_package_lit] = STATE(1977), - [sym_include_reader_macro] = STATE(1977), - [sym_complex_num_lit] = STATE(1977), - [aux_sym_dis_expr_repeat1] = STATE(775), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(2107), - [sym_comment] = ACTIONS(2107), - [anon_sym_POUND_] = ACTIONS(2110), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(2113), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(2113), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_POUND_CARET] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(2121), - [anon_sym_RPAREN] = ACTIONS(2124), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2050), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2050), + [sym_set_lit] = STATE(2050), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2050), + [sym_splicing_read_cond_lit] = STATE(2050), + [sym_var_quoting_lit] = STATE(2050), + [sym_quoting_lit] = STATE(2050), + [sym_syn_quoting_lit] = STATE(2050), + [sym_unquote_splicing_lit] = STATE(2050), + [sym_unquoting_lit] = STATE(2050), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [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(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1748), + [sym_comment] = ACTIONS(1748), + [anon_sym_POUND_] = ACTIONS(1751), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1754), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1754), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1756), + [anon_sym_POUND_CARET] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1765), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2113), - [anon_sym_cl] = ACTIONS(2126), - [aux_sym_accumulation_verb_token1] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_and] = ACTIONS(2129), - [anon_sym_as] = ACTIONS(2129), - [anon_sym_with] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_until] = ACTIONS(2129), - [anon_sym_repeat] = ACTIONS(2129), - [anon_sym_when] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_unless] = ACTIONS(2129), - [anon_sym_always] = ACTIONS(2129), - [anon_sym_thereis] = ACTIONS(2129), - [anon_sym_never] = ACTIONS(2129), - [anon_sym_else] = ACTIONS(2129), - [anon_sym_finally] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_initially] = ACTIONS(2129), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(2131), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1754), + [anon_sym_cl] = ACTIONS(1767), + [aux_sym_accumulation_verb_token1] = ACTIONS(1770), + [anon_sym_for] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_with] = ACTIONS(1770), + [anon_sym_do] = ACTIONS(1770), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_until] = ACTIONS(1770), + [anon_sym_repeat] = ACTIONS(1770), + [anon_sym_when] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_unless] = ACTIONS(1770), + [anon_sym_always] = ACTIONS(1770), + [anon_sym_thereis] = ACTIONS(1770), + [anon_sym_never] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_finally] = ACTIONS(1770), + [anon_sym_return] = ACTIONS(1770), + [anon_sym_initially] = ACTIONS(1770), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1772), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [65] = { - [sym__gap] = STATE(40), - [sym_dis_expr] = STATE(40), - [sym__form] = STATE(1973), - [sym_num_lit] = STATE(1973), - [sym_kwd_lit] = STATE(1973), - [sym_str_lit] = STATE(1973), - [sym_char_lit] = STATE(1973), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1973), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1973), - [sym_set_lit] = STATE(1973), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1973), - [sym_splicing_read_cond_lit] = STATE(1973), - [sym_var_quoting_lit] = STATE(1973), - [sym_quoting_lit] = STATE(1973), - [sym_syn_quoting_lit] = STATE(1973), - [sym_unquote_splicing_lit] = STATE(1973), - [sym_unquoting_lit] = STATE(1973), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1973), - [sym_package_lit] = STATE(1973), - [sym_include_reader_macro] = STATE(1973), - [sym_complex_num_lit] = STATE(1973), - [aux_sym_dis_expr_repeat1] = STATE(40), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(2133), - [sym_comment] = ACTIONS(2133), - [anon_sym_POUND_] = ACTIONS(2137), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(2141), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(2141), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(2143), - [anon_sym_POUND_CARET] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_RPAREN] = ACTIONS(2155), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1920), + [sym_num_lit] = STATE(1920), + [sym_kwd_lit] = STATE(1920), + [sym_str_lit] = STATE(1920), + [sym_char_lit] = STATE(1920), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1920), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1920), + [sym_set_lit] = STATE(1920), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1920), + [sym_splicing_read_cond_lit] = STATE(1920), + [sym_var_quoting_lit] = STATE(1920), + [sym_quoting_lit] = STATE(1920), + [sym_syn_quoting_lit] = STATE(1920), + [sym_unquote_splicing_lit] = STATE(1920), + [sym_unquoting_lit] = STATE(1920), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1920), + [sym_package_lit] = STATE(1920), + [sym_include_reader_macro] = STATE(1920), + [sym_complex_num_lit] = STATE(1920), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1774), + [sym_comment] = ACTIONS(1774), + [anon_sym_POUND_] = ACTIONS(1777), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1780), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1780), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1782), + [anon_sym_POUND_CARET] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1791), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2141), - [anon_sym_cl] = ACTIONS(2158), - [aux_sym_accumulation_verb_token1] = ACTIONS(2162), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_and] = ACTIONS(2162), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_with] = ACTIONS(2162), - [anon_sym_do] = ACTIONS(2162), - [anon_sym_while] = ACTIONS(2162), - [anon_sym_until] = ACTIONS(2162), - [anon_sym_repeat] = ACTIONS(2162), - [anon_sym_when] = ACTIONS(2162), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_unless] = ACTIONS(2162), - [anon_sym_always] = ACTIONS(2162), - [anon_sym_thereis] = ACTIONS(2162), - [anon_sym_never] = ACTIONS(2162), - [anon_sym_else] = ACTIONS(2162), - [anon_sym_finally] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_initially] = ACTIONS(2162), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(2165), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1780), + [anon_sym_cl] = ACTIONS(1793), + [aux_sym_accumulation_verb_token1] = ACTIONS(1796), + [anon_sym_for] = ACTIONS(1796), + [anon_sym_and] = ACTIONS(1796), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_with] = ACTIONS(1796), + [anon_sym_do] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_until] = ACTIONS(1796), + [anon_sym_repeat] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_unless] = ACTIONS(1796), + [anon_sym_always] = ACTIONS(1796), + [anon_sym_thereis] = ACTIONS(1796), + [anon_sym_never] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_finally] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_initially] = ACTIONS(1796), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1798), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [66] = { - [sym__gap] = STATE(43), - [sym_dis_expr] = STATE(43), - [sym__form] = STATE(1975), - [sym_num_lit] = STATE(1975), - [sym_kwd_lit] = STATE(1975), - [sym_str_lit] = STATE(1975), - [sym_char_lit] = STATE(1975), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1975), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1975), - [sym_set_lit] = STATE(1975), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1975), - [sym_splicing_read_cond_lit] = STATE(1975), - [sym_var_quoting_lit] = STATE(1975), - [sym_quoting_lit] = STATE(1975), - [sym_syn_quoting_lit] = STATE(1975), - [sym_unquote_splicing_lit] = STATE(1975), - [sym_unquoting_lit] = STATE(1975), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1975), - [sym_package_lit] = STATE(1975), - [sym_include_reader_macro] = STATE(1975), - [sym_complex_num_lit] = STATE(1975), - [aux_sym_dis_expr_repeat1] = STATE(43), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(2167), - [sym_comment] = ACTIONS(2167), - [anon_sym_POUND_] = ACTIONS(2171), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(2175), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(2175), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_POUND_CARET] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_RPAREN] = ACTIONS(2189), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(40), + [sym_dis_expr] = STATE(40), + [sym__form] = STATE(1929), + [sym_num_lit] = STATE(1929), + [sym_kwd_lit] = STATE(1929), + [sym_str_lit] = STATE(1929), + [sym_char_lit] = STATE(1929), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1929), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1929), + [sym_set_lit] = STATE(1929), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1929), + [sym_splicing_read_cond_lit] = STATE(1929), + [sym_var_quoting_lit] = STATE(1929), + [sym_quoting_lit] = STATE(1929), + [sym_syn_quoting_lit] = STATE(1929), + [sym_unquote_splicing_lit] = STATE(1929), + [sym_unquoting_lit] = STATE(1929), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1929), + [sym_package_lit] = STATE(1929), + [sym_include_reader_macro] = STATE(1929), + [sym_complex_num_lit] = STATE(1929), + [aux_sym_dis_expr_repeat1] = STATE(40), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1800), + [sym_comment] = ACTIONS(1800), + [anon_sym_POUND_] = ACTIONS(1777), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1803), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1803), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1782), + [anon_sym_POUND_CARET] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1791), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2175), - [anon_sym_cl] = ACTIONS(2192), - [aux_sym_accumulation_verb_token1] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_and] = ACTIONS(2196), - [anon_sym_as] = ACTIONS(2196), - [anon_sym_with] = ACTIONS(2196), - [anon_sym_do] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_until] = ACTIONS(2196), - [anon_sym_repeat] = ACTIONS(2196), - [anon_sym_when] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_unless] = ACTIONS(2196), - [anon_sym_always] = ACTIONS(2196), - [anon_sym_thereis] = ACTIONS(2196), - [anon_sym_never] = ACTIONS(2196), - [anon_sym_else] = ACTIONS(2196), - [anon_sym_finally] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_initially] = ACTIONS(2196), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(2199), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1803), + [anon_sym_cl] = ACTIONS(1793), + [aux_sym_accumulation_verb_token1] = ACTIONS(1796), + [anon_sym_for] = ACTIONS(1796), + [anon_sym_and] = ACTIONS(1796), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_with] = ACTIONS(1796), + [anon_sym_do] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_until] = ACTIONS(1796), + [anon_sym_repeat] = ACTIONS(1796), + [anon_sym_when] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_unless] = ACTIONS(1796), + [anon_sym_always] = ACTIONS(1796), + [anon_sym_thereis] = ACTIONS(1796), + [anon_sym_never] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_finally] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_initially] = ACTIONS(1796), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1805), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [67] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [sym__form] = STATE(1981), - [sym_num_lit] = STATE(1981), - [sym_kwd_lit] = STATE(1981), - [sym_str_lit] = STATE(1981), - [sym_char_lit] = STATE(1981), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1981), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(1981), - [sym_set_lit] = STATE(1981), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(1981), - [sym_splicing_read_cond_lit] = STATE(1981), - [sym_var_quoting_lit] = STATE(1981), - [sym_quoting_lit] = STATE(1981), - [sym_syn_quoting_lit] = STATE(1981), - [sym_unquote_splicing_lit] = STATE(1981), - [sym_unquoting_lit] = STATE(1981), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(1981), - [sym_package_lit] = STATE(1981), - [sym_include_reader_macro] = STATE(1981), - [sym_complex_num_lit] = STATE(1981), - [aux_sym_dis_expr_repeat1] = STATE(775), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(2201), - [sym_comment] = ACTIONS(2201), - [anon_sym_POUND_] = ACTIONS(2204), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(2207), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(2207), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [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(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(2059), + [sym_num_lit] = STATE(2059), + [sym_kwd_lit] = STATE(2059), + [sym_str_lit] = STATE(2059), + [sym_char_lit] = STATE(2059), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2059), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2059), + [sym_set_lit] = STATE(2059), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2059), + [sym_splicing_read_cond_lit] = STATE(2059), + [sym_var_quoting_lit] = STATE(2059), + [sym_quoting_lit] = STATE(2059), + [sym_syn_quoting_lit] = STATE(2059), + [sym_unquote_splicing_lit] = STATE(2059), + [sym_unquoting_lit] = STATE(2059), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2059), + [sym_package_lit] = STATE(2059), + [sym_include_reader_macro] = STATE(2059), + [sym_complex_num_lit] = STATE(2059), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1807), + [sym_comment] = ACTIONS(1807), + [anon_sym_POUND_] = ACTIONS(1810), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1813), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1813), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1815), + [anon_sym_POUND_CARET] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2207), - [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(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(2225), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1813), + [anon_sym_cl] = ACTIONS(1826), + [aux_sym_accumulation_verb_token1] = ACTIONS(1829), + [anon_sym_for] = ACTIONS(1829), + [anon_sym_and] = ACTIONS(1829), + [anon_sym_as] = ACTIONS(1829), + [anon_sym_with] = ACTIONS(1829), + [anon_sym_do] = ACTIONS(1829), + [anon_sym_while] = ACTIONS(1829), + [anon_sym_until] = ACTIONS(1829), + [anon_sym_repeat] = ACTIONS(1829), + [anon_sym_when] = ACTIONS(1829), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_unless] = ACTIONS(1829), + [anon_sym_always] = ACTIONS(1829), + [anon_sym_thereis] = ACTIONS(1829), + [anon_sym_never] = ACTIONS(1829), + [anon_sym_else] = ACTIONS(1829), + [anon_sym_finally] = ACTIONS(1829), + [anon_sym_return] = ACTIONS(1829), + [anon_sym_initially] = ACTIONS(1829), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1831), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [68] = { - [sym__gap] = STATE(45), - [sym_dis_expr] = STATE(45), - [sym__form] = STATE(2001), - [sym_num_lit] = STATE(2001), - [sym_kwd_lit] = STATE(2001), - [sym_str_lit] = STATE(2001), - [sym_char_lit] = STATE(2001), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2001), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2001), - [sym_set_lit] = STATE(2001), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2001), - [sym_splicing_read_cond_lit] = STATE(2001), - [sym_var_quoting_lit] = STATE(2001), - [sym_quoting_lit] = STATE(2001), - [sym_syn_quoting_lit] = STATE(2001), - [sym_unquote_splicing_lit] = STATE(2001), - [sym_unquoting_lit] = STATE(2001), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2001), - [sym_package_lit] = STATE(2001), - [sym_include_reader_macro] = STATE(2001), - [sym_complex_num_lit] = STATE(2001), - [aux_sym_dis_expr_repeat1] = STATE(45), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(2227), - [sym_comment] = ACTIONS(2227), - [anon_sym_POUND_] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(2233), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(2233), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(2235), - [anon_sym_POUND_CARET] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_RPAREN] = ACTIONS(2244), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1932), + [sym_num_lit] = STATE(1932), + [sym_kwd_lit] = STATE(1932), + [sym_str_lit] = STATE(1932), + [sym_char_lit] = STATE(1932), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1932), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1932), + [sym_set_lit] = STATE(1932), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1932), + [sym_splicing_read_cond_lit] = STATE(1932), + [sym_var_quoting_lit] = STATE(1932), + [sym_quoting_lit] = STATE(1932), + [sym_syn_quoting_lit] = STATE(1932), + [sym_unquote_splicing_lit] = STATE(1932), + [sym_unquoting_lit] = STATE(1932), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1932), + [sym_package_lit] = STATE(1932), + [sym_include_reader_macro] = STATE(1932), + [sym_complex_num_lit] = STATE(1932), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1833), + [sym_comment] = ACTIONS(1833), + [anon_sym_POUND_] = ACTIONS(1725), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1836), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1836), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1730), + [anon_sym_POUND_CARET] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1739), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2233), - [anon_sym_cl] = ACTIONS(2246), - [aux_sym_accumulation_verb_token1] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_and] = ACTIONS(2249), - [anon_sym_as] = ACTIONS(2249), - [anon_sym_with] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_until] = ACTIONS(2249), - [anon_sym_repeat] = ACTIONS(2249), - [anon_sym_when] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_unless] = ACTIONS(2249), - [anon_sym_always] = ACTIONS(2249), - [anon_sym_thereis] = ACTIONS(2249), - [anon_sym_never] = ACTIONS(2249), - [anon_sym_else] = ACTIONS(2249), - [anon_sym_finally] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_initially] = ACTIONS(2249), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(2251), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1836), + [anon_sym_cl] = ACTIONS(1741), + [aux_sym_accumulation_verb_token1] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_and] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_with] = ACTIONS(1744), + [anon_sym_do] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_until] = ACTIONS(1744), + [anon_sym_repeat] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_unless] = ACTIONS(1744), + [anon_sym_always] = ACTIONS(1744), + [anon_sym_thereis] = ACTIONS(1744), + [anon_sym_never] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_finally] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_initially] = ACTIONS(1744), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1838), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [69] = { - [sym__gap] = STATE(775), - [sym_dis_expr] = STATE(775), - [sym__form] = STATE(2004), - [sym_num_lit] = STATE(2004), - [sym_kwd_lit] = STATE(2004), - [sym_str_lit] = STATE(2004), - [sym_char_lit] = STATE(2004), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2004), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2004), - [sym_set_lit] = STATE(2004), - [sym__bare_set_lit] = STATE(1853), - [sym_read_cond_lit] = STATE(2004), - [sym_splicing_read_cond_lit] = STATE(2004), - [sym_var_quoting_lit] = STATE(2004), - [sym_quoting_lit] = STATE(2004), - [sym_syn_quoting_lit] = STATE(2004), - [sym_unquote_splicing_lit] = STATE(2004), - [sym_unquoting_lit] = STATE(2004), - [sym_defun] = STATE(1852), - [sym_loop_macro] = STATE(1852), - [sym_path_lit] = STATE(2004), - [sym_package_lit] = STATE(2004), - [sym_include_reader_macro] = STATE(2004), - [sym_complex_num_lit] = STATE(2004), - [aux_sym_dis_expr_repeat1] = STATE(775), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(2253), - [sym_comment] = ACTIONS(2253), - [anon_sym_POUND_] = ACTIONS(2257), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(2261), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(2261), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_POUND_CARET] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2271), - [anon_sym_RPAREN] = ACTIONS(2275), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2077), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2077), + [sym_set_lit] = STATE(2077), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1840), + [sym_comment] = ACTIONS(1840), + [anon_sym_POUND_] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1846), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1846), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1848), + [anon_sym_POUND_CARET] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1854), + [anon_sym_RPAREN] = ACTIONS(1857), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2261), - [anon_sym_cl] = ACTIONS(2278), - [aux_sym_accumulation_verb_token1] = ACTIONS(2282), - [anon_sym_for] = ACTIONS(2282), - [anon_sym_and] = ACTIONS(2282), - [anon_sym_as] = ACTIONS(2282), - [anon_sym_with] = ACTIONS(2282), - [anon_sym_do] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2282), - [anon_sym_until] = ACTIONS(2282), - [anon_sym_repeat] = ACTIONS(2282), - [anon_sym_when] = ACTIONS(2282), - [anon_sym_if] = ACTIONS(2282), - [anon_sym_unless] = ACTIONS(2282), - [anon_sym_always] = ACTIONS(2282), - [anon_sym_thereis] = ACTIONS(2282), - [anon_sym_never] = ACTIONS(2282), - [anon_sym_else] = ACTIONS(2282), - [anon_sym_finally] = ACTIONS(2282), - [anon_sym_return] = ACTIONS(2282), - [anon_sym_initially] = ACTIONS(2282), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(2285), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1846), + [anon_sym_cl] = ACTIONS(1859), + [aux_sym_accumulation_verb_token1] = ACTIONS(1862), + [anon_sym_for] = ACTIONS(1862), + [anon_sym_and] = ACTIONS(1862), + [anon_sym_as] = ACTIONS(1862), + [anon_sym_with] = ACTIONS(1862), + [anon_sym_do] = ACTIONS(1862), + [anon_sym_while] = ACTIONS(1862), + [anon_sym_until] = ACTIONS(1862), + [anon_sym_repeat] = ACTIONS(1862), + [anon_sym_when] = ACTIONS(1862), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_unless] = ACTIONS(1862), + [anon_sym_always] = ACTIONS(1862), + [anon_sym_thereis] = ACTIONS(1862), + [anon_sym_never] = ACTIONS(1862), + [anon_sym_else] = ACTIONS(1862), + [anon_sym_finally] = ACTIONS(1862), + [anon_sym_return] = ACTIONS(1862), + [anon_sym_initially] = ACTIONS(1862), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1864), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [70] = { - [sym__gap] = STATE(50), - [sym_dis_expr] = STATE(50), - [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(1807), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2044), - [sym__bare_list_lit] = STATE(1852), - [sym_vec_lit] = STATE(2044), - [sym_set_lit] = STATE(2044), - [sym__bare_set_lit] = STATE(1853), - [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(1852), - [sym_loop_macro] = STATE(1852), - [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(50), - [aux_sym_list_lit_repeat1] = STATE(2102), - [sym__ws] = ACTIONS(2287), - [sym_comment] = ACTIONS(2287), - [anon_sym_POUND_] = ACTIONS(2291), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(2295), - [aux_sym_num_lit_token1] = ACTIONS(158), - [anon_sym_COLON] = ACTIONS(160), - [anon_sym_COLON_COLON] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_nil_lit] = ACTIONS(2295), - [aux_sym_sym_lit_token1] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_POUND_CARET] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_POUND0A] = ACTIONS(179), - [anon_sym_POUND0a] = ACTIONS(179), - [anon_sym_POUND_QMARK] = ACTIONS(181), - [anon_sym_POUND_QMARK_AT] = ACTIONS(183), - [anon_sym_POUND_SQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_COMMA_AT] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(193), + [sym__gap] = STATE(386), + [sym_dis_expr] = STATE(386), + [sym__form] = STATE(128), + [sym_num_lit] = STATE(128), + [sym_kwd_lit] = STATE(128), + [sym_str_lit] = STATE(128), + [sym_char_lit] = STATE(128), + [sym_sym_lit] = STATE(1237), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(128), + [sym__bare_list_lit] = STATE(1236), + [sym_vec_lit] = STATE(128), + [sym_set_lit] = STATE(128), + [sym__bare_set_lit] = STATE(1235), + [sym_read_cond_lit] = STATE(128), + [sym_splicing_read_cond_lit] = STATE(128), + [sym_var_quoting_lit] = STATE(128), + [sym_quoting_lit] = STATE(128), + [sym_syn_quoting_lit] = STATE(128), + [sym_unquote_splicing_lit] = STATE(128), + [sym_unquoting_lit] = STATE(128), + [sym_defun] = STATE(1236), + [sym_loop_macro] = STATE(1236), + [sym_path_lit] = STATE(128), + [sym_package_lit] = STATE(128), + [sym_include_reader_macro] = STATE(128), + [sym_complex_num_lit] = STATE(128), + [aux_sym_dis_expr_repeat1] = STATE(386), + [aux_sym_list_lit_repeat1] = STATE(2334), + [sym__ws] = ACTIONS(1866), + [sym_comment] = ACTIONS(1866), + [anon_sym_POUND_] = ACTIONS(1869), + [anon_sym_POUND] = ACTIONS(1412), + [anon_sym_DOT] = ACTIONS(1872), + [aux_sym_num_lit_token1] = ACTIONS(1416), + [anon_sym_COLON] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1422), + [sym_nil_lit] = ACTIONS(1872), + [aux_sym_sym_lit_token1] = ACTIONS(1424), + [anon_sym_CARET] = ACTIONS(1874), + [anon_sym_POUND_CARET] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_RPAREN] = ACTIONS(1883), + [anon_sym_POUND0A] = ACTIONS(1437), + [anon_sym_POUND0a] = ACTIONS(1437), + [anon_sym_POUND_QMARK] = ACTIONS(1439), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1441), + [anon_sym_POUND_SQUOTE] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_BQUOTE] = ACTIONS(1447), + [anon_sym_COMMA_AT] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(1451), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2295), - [anon_sym_cl] = ACTIONS(2312), - [aux_sym_accumulation_verb_token1] = ACTIONS(2316), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_and] = ACTIONS(2316), - [anon_sym_as] = ACTIONS(2316), - [anon_sym_with] = ACTIONS(2316), - [anon_sym_do] = ACTIONS(2316), - [anon_sym_while] = ACTIONS(2316), - [anon_sym_until] = ACTIONS(2316), - [anon_sym_repeat] = ACTIONS(2316), - [anon_sym_when] = ACTIONS(2316), - [anon_sym_if] = ACTIONS(2316), - [anon_sym_unless] = ACTIONS(2316), - [anon_sym_always] = ACTIONS(2316), - [anon_sym_thereis] = ACTIONS(2316), - [anon_sym_never] = ACTIONS(2316), - [anon_sym_else] = ACTIONS(2316), - [anon_sym_finally] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2316), - [anon_sym_initially] = ACTIONS(2316), - [anon_sym_POUNDP] = ACTIONS(202), - [anon_sym_POUNDp] = ACTIONS(202), - [sym_self_referential_reader_macro] = ACTIONS(2319), - [anon_sym_POUND_PLUS] = ACTIONS(206), - [anon_sym_POUND_DASH] = ACTIONS(206), - [anon_sym_POUNDC] = ACTIONS(208), - [anon_sym_POUNDc] = ACTIONS(208), + [sym_fancy_literal] = ACTIONS(1872), + [anon_sym_cl] = ACTIONS(1885), + [aux_sym_accumulation_verb_token1] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_and] = ACTIONS(1888), + [anon_sym_as] = ACTIONS(1888), + [anon_sym_with] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_until] = ACTIONS(1888), + [anon_sym_repeat] = ACTIONS(1888), + [anon_sym_when] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_unless] = ACTIONS(1888), + [anon_sym_always] = ACTIONS(1888), + [anon_sym_thereis] = ACTIONS(1888), + [anon_sym_never] = ACTIONS(1888), + [anon_sym_else] = ACTIONS(1888), + [anon_sym_finally] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_initially] = ACTIONS(1888), + [anon_sym_POUNDP] = ACTIONS(1458), + [anon_sym_POUNDp] = ACTIONS(1458), + [sym_self_referential_reader_macro] = ACTIONS(1890), + [anon_sym_POUND_PLUS] = ACTIONS(1462), + [anon_sym_POUND_DASH] = ACTIONS(1462), + [anon_sym_POUNDC] = ACTIONS(1464), + [anon_sym_POUNDc] = ACTIONS(1464), }, [71] = { - [sym__gap] = STATE(77), - [sym_dis_expr] = STATE(77), - [sym__form] = STATE(2047), - [sym_num_lit] = STATE(2047), - [sym_kwd_lit] = STATE(2047), - [sym_str_lit] = STATE(2047), - [sym_char_lit] = STATE(2047), - [sym_sym_lit] = STATE(2076), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2047), - [sym__bare_list_lit] = STATE(1688), - [sym_vec_lit] = STATE(2047), - [sym_set_lit] = STATE(2047), - [sym__bare_set_lit] = STATE(1689), - [sym_read_cond_lit] = STATE(2047), - [sym_splicing_read_cond_lit] = STATE(2047), - [sym_var_quoting_lit] = STATE(2047), - [sym_quoting_lit] = STATE(2047), - [sym_syn_quoting_lit] = STATE(2047), - [sym_unquote_splicing_lit] = STATE(2047), - [sym_unquoting_lit] = STATE(2047), - [sym_defun] = STATE(1688), - [sym_for_clause_word] = STATE(293), - [sym__for_part] = STATE(1307), - [sym_loop_macro] = STATE(1688), - [sym_path_lit] = STATE(2047), - [sym_package_lit] = STATE(2047), - [sym_include_reader_macro] = STATE(2047), - [sym_complex_num_lit] = STATE(2047), - [aux_sym_dis_expr_repeat1] = STATE(77), - [aux_sym_list_lit_repeat1] = STATE(2109), - [aux_sym_for_clause_repeat1] = STATE(1037), - [sym__ws] = ACTIONS(2321), - [sym_comment] = ACTIONS(2321), - [anon_sym_POUND_] = ACTIONS(2323), - [anon_sym_POUND] = ACTIONS(2325), - [anon_sym_DOT] = ACTIONS(2327), - [aux_sym_num_lit_token1] = ACTIONS(2329), - [anon_sym_COLON] = ACTIONS(2331), - [anon_sym_COLON_COLON] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_nil_lit] = ACTIONS(2327), - [aux_sym_sym_lit_token1] = ACTIONS(2337), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_POUND0A] = ACTIONS(2341), - [anon_sym_POUND0a] = ACTIONS(2341), - [anon_sym_POUND_QMARK] = ACTIONS(2343), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2345), - [anon_sym_POUND_SQUOTE] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_BQUOTE] = ACTIONS(2351), - [anon_sym_COMMA_AT] = ACTIONS(2353), - [anon_sym_COMMA] = ACTIONS(2355), + [sym__gap] = STATE(41), + [sym_dis_expr] = STATE(41), + [sym__form] = STATE(1944), + [sym_num_lit] = STATE(1944), + [sym_kwd_lit] = STATE(1944), + [sym_str_lit] = STATE(1944), + [sym_char_lit] = STATE(1944), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1944), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1944), + [sym_set_lit] = STATE(1944), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1944), + [sym_splicing_read_cond_lit] = STATE(1944), + [sym_var_quoting_lit] = STATE(1944), + [sym_quoting_lit] = STATE(1944), + [sym_syn_quoting_lit] = STATE(1944), + [sym_unquote_splicing_lit] = STATE(1944), + [sym_unquoting_lit] = STATE(1944), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1944), + [sym_package_lit] = STATE(1944), + [sym_include_reader_macro] = STATE(1944), + [sym_complex_num_lit] = STATE(1944), + [aux_sym_dis_expr_repeat1] = STATE(41), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1892), + [sym_comment] = ACTIONS(1892), + [anon_sym_POUND_] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1898), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1898), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1900), + [anon_sym_POUND_CARET] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2327), - [anon_sym_cl] = ACTIONS(2357), - [anon_sym_in] = ACTIONS(2359), - [anon_sym_across] = ACTIONS(2359), - [anon_sym_being] = ACTIONS(2359), - [anon_sym_using] = ACTIONS(2359), - [aux_sym_for_clause_word_token1] = ACTIONS(2361), - [anon_sym_below] = ACTIONS(2359), - [anon_sym_above] = ACTIONS(2359), - [anon_sym_from] = ACTIONS(2359), - [anon_sym_to] = ACTIONS(2359), - [anon_sym_upto] = ACTIONS(2359), - [anon_sym_downto] = ACTIONS(2359), - [anon_sym_downfrom] = ACTIONS(2359), - [anon_sym_on] = ACTIONS(2359), - [anon_sym_by] = ACTIONS(2359), - [anon_sym_then] = ACTIONS(2359), - [anon_sym_EQ] = ACTIONS(2359), - [anon_sym_POUNDP] = ACTIONS(2363), - [anon_sym_POUNDp] = ACTIONS(2363), - [sym_self_referential_reader_macro] = ACTIONS(2365), - [anon_sym_POUND_PLUS] = ACTIONS(2367), - [anon_sym_POUND_DASH] = ACTIONS(2367), - [anon_sym_POUNDC] = ACTIONS(2369), - [anon_sym_POUNDc] = ACTIONS(2369), + [sym_fancy_literal] = ACTIONS(1898), + [anon_sym_cl] = ACTIONS(1911), + [aux_sym_accumulation_verb_token1] = ACTIONS(1914), + [anon_sym_for] = ACTIONS(1914), + [anon_sym_and] = ACTIONS(1914), + [anon_sym_as] = ACTIONS(1914), + [anon_sym_with] = ACTIONS(1914), + [anon_sym_do] = ACTIONS(1914), + [anon_sym_while] = ACTIONS(1914), + [anon_sym_until] = ACTIONS(1914), + [anon_sym_repeat] = ACTIONS(1914), + [anon_sym_when] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(1914), + [anon_sym_unless] = ACTIONS(1914), + [anon_sym_always] = ACTIONS(1914), + [anon_sym_thereis] = ACTIONS(1914), + [anon_sym_never] = ACTIONS(1914), + [anon_sym_else] = ACTIONS(1914), + [anon_sym_finally] = ACTIONS(1914), + [anon_sym_return] = ACTIONS(1914), + [anon_sym_initially] = ACTIONS(1914), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1916), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [72] = { - [sym__gap] = STATE(78), - [sym_dis_expr] = STATE(78), - [sym__form] = STATE(2051), - [sym_num_lit] = STATE(2051), - [sym_kwd_lit] = STATE(2051), - [sym_str_lit] = STATE(2051), - [sym_char_lit] = STATE(2051), - [sym_sym_lit] = STATE(2076), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2051), - [sym__bare_list_lit] = STATE(1688), - [sym_vec_lit] = STATE(2051), - [sym_set_lit] = STATE(2051), - [sym__bare_set_lit] = STATE(1689), - [sym_read_cond_lit] = STATE(2051), - [sym_splicing_read_cond_lit] = STATE(2051), - [sym_var_quoting_lit] = STATE(2051), - [sym_quoting_lit] = STATE(2051), - [sym_syn_quoting_lit] = STATE(2051), - [sym_unquote_splicing_lit] = STATE(2051), - [sym_unquoting_lit] = STATE(2051), - [sym_defun] = STATE(1688), - [sym_for_clause_word] = STATE(293), - [sym__for_part] = STATE(1307), - [sym_loop_macro] = STATE(1688), - [sym_path_lit] = STATE(2051), - [sym_package_lit] = STATE(2051), - [sym_include_reader_macro] = STATE(2051), - [sym_complex_num_lit] = STATE(2051), - [aux_sym_dis_expr_repeat1] = STATE(78), - [aux_sym_list_lit_repeat1] = STATE(2109), - [aux_sym_for_clause_repeat1] = STATE(1032), - [sym__ws] = ACTIONS(2371), - [sym_comment] = ACTIONS(2371), - [anon_sym_POUND_] = ACTIONS(2323), - [anon_sym_POUND] = ACTIONS(2325), - [anon_sym_DOT] = ACTIONS(2373), - [aux_sym_num_lit_token1] = ACTIONS(2329), - [anon_sym_COLON] = ACTIONS(2331), - [anon_sym_COLON_COLON] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_nil_lit] = ACTIONS(2373), - [aux_sym_sym_lit_token1] = ACTIONS(2337), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_POUND0A] = ACTIONS(2341), - [anon_sym_POUND0a] = ACTIONS(2341), - [anon_sym_POUND_QMARK] = ACTIONS(2343), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2345), - [anon_sym_POUND_SQUOTE] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_BQUOTE] = ACTIONS(2351), - [anon_sym_COMMA_AT] = ACTIONS(2353), - [anon_sym_COMMA] = ACTIONS(2355), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1946), + [sym_num_lit] = STATE(1946), + [sym_kwd_lit] = STATE(1946), + [sym_str_lit] = STATE(1946), + [sym_char_lit] = STATE(1946), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1946), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1946), + [sym_set_lit] = STATE(1946), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1946), + [sym_splicing_read_cond_lit] = STATE(1946), + [sym_var_quoting_lit] = STATE(1946), + [sym_quoting_lit] = STATE(1946), + [sym_syn_quoting_lit] = STATE(1946), + [sym_unquote_splicing_lit] = STATE(1946), + [sym_unquoting_lit] = STATE(1946), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1946), + [sym_package_lit] = STATE(1946), + [sym_include_reader_macro] = STATE(1946), + [sym_complex_num_lit] = STATE(1946), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1918), + [sym_comment] = ACTIONS(1918), + [anon_sym_POUND_] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1921), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1921), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1900), + [anon_sym_POUND_CARET] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2373), - [anon_sym_cl] = ACTIONS(2357), - [anon_sym_in] = ACTIONS(2359), - [anon_sym_across] = ACTIONS(2359), - [anon_sym_being] = ACTIONS(2359), - [anon_sym_using] = ACTIONS(2359), - [aux_sym_for_clause_word_token1] = ACTIONS(2361), - [anon_sym_below] = ACTIONS(2359), - [anon_sym_above] = ACTIONS(2359), - [anon_sym_from] = ACTIONS(2359), - [anon_sym_to] = ACTIONS(2359), - [anon_sym_upto] = ACTIONS(2359), - [anon_sym_downto] = ACTIONS(2359), - [anon_sym_downfrom] = ACTIONS(2359), - [anon_sym_on] = ACTIONS(2359), - [anon_sym_by] = ACTIONS(2359), - [anon_sym_then] = ACTIONS(2359), - [anon_sym_EQ] = ACTIONS(2359), - [anon_sym_POUNDP] = ACTIONS(2363), - [anon_sym_POUNDp] = ACTIONS(2363), - [sym_self_referential_reader_macro] = ACTIONS(2375), - [anon_sym_POUND_PLUS] = ACTIONS(2367), - [anon_sym_POUND_DASH] = ACTIONS(2367), - [anon_sym_POUNDC] = ACTIONS(2369), - [anon_sym_POUNDc] = ACTIONS(2369), + [sym_fancy_literal] = ACTIONS(1921), + [anon_sym_cl] = ACTIONS(1911), + [aux_sym_accumulation_verb_token1] = ACTIONS(1914), + [anon_sym_for] = ACTIONS(1914), + [anon_sym_and] = ACTIONS(1914), + [anon_sym_as] = ACTIONS(1914), + [anon_sym_with] = ACTIONS(1914), + [anon_sym_do] = ACTIONS(1914), + [anon_sym_while] = ACTIONS(1914), + [anon_sym_until] = ACTIONS(1914), + [anon_sym_repeat] = ACTIONS(1914), + [anon_sym_when] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(1914), + [anon_sym_unless] = ACTIONS(1914), + [anon_sym_always] = ACTIONS(1914), + [anon_sym_thereis] = ACTIONS(1914), + [anon_sym_never] = ACTIONS(1914), + [anon_sym_else] = ACTIONS(1914), + [anon_sym_finally] = ACTIONS(1914), + [anon_sym_return] = ACTIONS(1914), + [anon_sym_initially] = ACTIONS(1914), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1923), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [73] = { - [sym__gap] = STATE(81), - [sym_dis_expr] = STATE(81), - [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(2076), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2054), - [sym__bare_list_lit] = STATE(1688), - [sym_vec_lit] = STATE(2054), - [sym_set_lit] = STATE(2054), - [sym__bare_set_lit] = STATE(1689), - [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(1688), - [sym_for_clause_word] = STATE(293), - [sym__for_part] = STATE(1307), - [sym_loop_macro] = STATE(1688), - [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(81), - [aux_sym_list_lit_repeat1] = STATE(2109), - [aux_sym_for_clause_repeat1] = STATE(1030), - [sym__ws] = ACTIONS(2377), - [sym_comment] = ACTIONS(2377), - [anon_sym_POUND_] = ACTIONS(2323), - [anon_sym_POUND] = ACTIONS(2325), - [anon_sym_DOT] = ACTIONS(2379), - [aux_sym_num_lit_token1] = ACTIONS(2329), - [anon_sym_COLON] = ACTIONS(2331), - [anon_sym_COLON_COLON] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_nil_lit] = ACTIONS(2379), - [aux_sym_sym_lit_token1] = ACTIONS(2337), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_POUND0A] = ACTIONS(2341), - [anon_sym_POUND0a] = ACTIONS(2341), - [anon_sym_POUND_QMARK] = ACTIONS(2343), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2345), - [anon_sym_POUND_SQUOTE] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_BQUOTE] = ACTIONS(2351), - [anon_sym_COMMA_AT] = ACTIONS(2353), - [anon_sym_COMMA] = ACTIONS(2355), + [sym__gap] = STATE(43), + [sym_dis_expr] = STATE(43), + [sym__form] = STATE(1952), + [sym_num_lit] = STATE(1952), + [sym_kwd_lit] = STATE(1952), + [sym_str_lit] = STATE(1952), + [sym_char_lit] = STATE(1952), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1952), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1952), + [sym_set_lit] = STATE(1952), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1952), + [sym_splicing_read_cond_lit] = STATE(1952), + [sym_var_quoting_lit] = STATE(1952), + [sym_quoting_lit] = STATE(1952), + [sym_syn_quoting_lit] = STATE(1952), + [sym_unquote_splicing_lit] = STATE(1952), + [sym_unquoting_lit] = STATE(1952), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1952), + [sym_package_lit] = STATE(1952), + [sym_include_reader_macro] = STATE(1952), + [sym_complex_num_lit] = STATE(1952), + [aux_sym_dis_expr_repeat1] = STATE(43), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1925), + [sym_comment] = ACTIONS(1925), + [anon_sym_POUND_] = ACTIONS(1928), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1931), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1931), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1933), + [anon_sym_POUND_CARET] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1939), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2379), - [anon_sym_cl] = ACTIONS(2357), - [anon_sym_in] = ACTIONS(2359), - [anon_sym_across] = ACTIONS(2359), - [anon_sym_being] = ACTIONS(2359), - [anon_sym_using] = ACTIONS(2359), - [aux_sym_for_clause_word_token1] = ACTIONS(2361), - [anon_sym_below] = ACTIONS(2359), - [anon_sym_above] = ACTIONS(2359), - [anon_sym_from] = ACTIONS(2359), - [anon_sym_to] = ACTIONS(2359), - [anon_sym_upto] = ACTIONS(2359), - [anon_sym_downto] = ACTIONS(2359), - [anon_sym_downfrom] = ACTIONS(2359), - [anon_sym_on] = ACTIONS(2359), - [anon_sym_by] = ACTIONS(2359), - [anon_sym_then] = ACTIONS(2359), - [anon_sym_EQ] = ACTIONS(2359), - [anon_sym_POUNDP] = ACTIONS(2363), - [anon_sym_POUNDp] = ACTIONS(2363), - [sym_self_referential_reader_macro] = ACTIONS(2381), - [anon_sym_POUND_PLUS] = ACTIONS(2367), - [anon_sym_POUND_DASH] = ACTIONS(2367), - [anon_sym_POUNDC] = ACTIONS(2369), - [anon_sym_POUNDc] = ACTIONS(2369), + [sym_fancy_literal] = ACTIONS(1931), + [anon_sym_cl] = ACTIONS(1944), + [aux_sym_accumulation_verb_token1] = ACTIONS(1947), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_and] = ACTIONS(1947), + [anon_sym_as] = ACTIONS(1947), + [anon_sym_with] = ACTIONS(1947), + [anon_sym_do] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1947), + [anon_sym_until] = ACTIONS(1947), + [anon_sym_repeat] = ACTIONS(1947), + [anon_sym_when] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_unless] = ACTIONS(1947), + [anon_sym_always] = ACTIONS(1947), + [anon_sym_thereis] = ACTIONS(1947), + [anon_sym_never] = ACTIONS(1947), + [anon_sym_else] = ACTIONS(1947), + [anon_sym_finally] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1947), + [anon_sym_initially] = ACTIONS(1947), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1949), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [74] = { - [sym__gap] = STATE(79), - [sym_dis_expr] = STATE(79), - [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(2076), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2057), - [sym__bare_list_lit] = STATE(1688), - [sym_vec_lit] = STATE(2057), - [sym_set_lit] = STATE(2057), - [sym__bare_set_lit] = STATE(1689), - [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(1688), - [sym_for_clause_word] = STATE(293), - [sym__for_part] = STATE(1307), - [sym_loop_macro] = STATE(1688), - [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(79), - [aux_sym_list_lit_repeat1] = STATE(2109), - [aux_sym_for_clause_repeat1] = STATE(1028), - [sym__ws] = ACTIONS(2383), - [sym_comment] = ACTIONS(2383), - [anon_sym_POUND_] = ACTIONS(2323), - [anon_sym_POUND] = ACTIONS(2325), - [anon_sym_DOT] = ACTIONS(2385), - [aux_sym_num_lit_token1] = ACTIONS(2329), - [anon_sym_COLON] = ACTIONS(2331), - [anon_sym_COLON_COLON] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_nil_lit] = ACTIONS(2385), - [aux_sym_sym_lit_token1] = ACTIONS(2337), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_POUND0A] = ACTIONS(2341), - [anon_sym_POUND0a] = ACTIONS(2341), - [anon_sym_POUND_QMARK] = ACTIONS(2343), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2345), - [anon_sym_POUND_SQUOTE] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_BQUOTE] = ACTIONS(2351), - [anon_sym_COMMA_AT] = ACTIONS(2353), - [anon_sym_COMMA] = ACTIONS(2355), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1890), + [sym_num_lit] = STATE(1890), + [sym_kwd_lit] = STATE(1890), + [sym_str_lit] = STATE(1890), + [sym_char_lit] = STATE(1890), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1890), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1890), + [sym_set_lit] = STATE(1890), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1890), + [sym_splicing_read_cond_lit] = STATE(1890), + [sym_var_quoting_lit] = STATE(1890), + [sym_quoting_lit] = STATE(1890), + [sym_syn_quoting_lit] = STATE(1890), + [sym_unquote_splicing_lit] = STATE(1890), + [sym_unquoting_lit] = STATE(1890), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1890), + [sym_package_lit] = STATE(1890), + [sym_include_reader_macro] = STATE(1890), + [sym_complex_num_lit] = STATE(1890), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1951), + [sym_comment] = ACTIONS(1951), + [anon_sym_POUND_] = ACTIONS(1954), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1957), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1957), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1959), + [anon_sym_POUND_CARET] = ACTIONS(1962), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_RPAREN] = ACTIONS(1968), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2385), - [anon_sym_cl] = ACTIONS(2357), - [anon_sym_in] = ACTIONS(2359), - [anon_sym_across] = ACTIONS(2359), - [anon_sym_being] = ACTIONS(2359), - [anon_sym_using] = ACTIONS(2359), - [aux_sym_for_clause_word_token1] = ACTIONS(2361), - [anon_sym_below] = ACTIONS(2359), - [anon_sym_above] = ACTIONS(2359), - [anon_sym_from] = ACTIONS(2359), - [anon_sym_to] = ACTIONS(2359), - [anon_sym_upto] = ACTIONS(2359), - [anon_sym_downto] = ACTIONS(2359), - [anon_sym_downfrom] = ACTIONS(2359), - [anon_sym_on] = ACTIONS(2359), - [anon_sym_by] = ACTIONS(2359), - [anon_sym_then] = ACTIONS(2359), - [anon_sym_EQ] = ACTIONS(2359), - [anon_sym_POUNDP] = ACTIONS(2363), - [anon_sym_POUNDp] = ACTIONS(2363), - [sym_self_referential_reader_macro] = ACTIONS(2387), - [anon_sym_POUND_PLUS] = ACTIONS(2367), - [anon_sym_POUND_DASH] = ACTIONS(2367), - [anon_sym_POUNDC] = ACTIONS(2369), - [anon_sym_POUNDc] = ACTIONS(2369), + [sym_fancy_literal] = ACTIONS(1957), + [anon_sym_cl] = ACTIONS(1970), + [aux_sym_accumulation_verb_token1] = ACTIONS(1973), + [anon_sym_for] = ACTIONS(1973), + [anon_sym_and] = ACTIONS(1973), + [anon_sym_as] = ACTIONS(1973), + [anon_sym_with] = ACTIONS(1973), + [anon_sym_do] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1973), + [anon_sym_until] = ACTIONS(1973), + [anon_sym_repeat] = ACTIONS(1973), + [anon_sym_when] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(1973), + [anon_sym_unless] = ACTIONS(1973), + [anon_sym_always] = ACTIONS(1973), + [anon_sym_thereis] = ACTIONS(1973), + [anon_sym_never] = ACTIONS(1973), + [anon_sym_else] = ACTIONS(1973), + [anon_sym_finally] = ACTIONS(1973), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_initially] = ACTIONS(1973), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(1975), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [75] = { - [sym__gap] = STATE(82), - [sym_dis_expr] = STATE(82), - [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(2076), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2056), - [sym__bare_list_lit] = STATE(1688), - [sym_vec_lit] = STATE(2056), - [sym_set_lit] = STATE(2056), - [sym__bare_set_lit] = STATE(1689), - [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(1688), - [sym_for_clause_word] = STATE(293), - [sym__for_part] = STATE(1307), - [sym_loop_macro] = STATE(1688), - [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(82), - [aux_sym_list_lit_repeat1] = STATE(2109), - [aux_sym_for_clause_repeat1] = STATE(1027), - [sym__ws] = ACTIONS(2389), - [sym_comment] = ACTIONS(2389), - [anon_sym_POUND_] = ACTIONS(2323), - [anon_sym_POUND] = ACTIONS(2325), - [anon_sym_DOT] = ACTIONS(2391), - [aux_sym_num_lit_token1] = ACTIONS(2329), - [anon_sym_COLON] = ACTIONS(2331), - [anon_sym_COLON_COLON] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_nil_lit] = ACTIONS(2391), - [aux_sym_sym_lit_token1] = ACTIONS(2337), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_POUND0A] = ACTIONS(2341), - [anon_sym_POUND0a] = ACTIONS(2341), - [anon_sym_POUND_QMARK] = ACTIONS(2343), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2345), - [anon_sym_POUND_SQUOTE] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_BQUOTE] = ACTIONS(2351), - [anon_sym_COMMA_AT] = ACTIONS(2353), - [anon_sym_COMMA] = ACTIONS(2355), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1954), + [sym_num_lit] = STATE(1954), + [sym_kwd_lit] = STATE(1954), + [sym_str_lit] = STATE(1954), + [sym_char_lit] = STATE(1954), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1954), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1954), + [sym_set_lit] = STATE(1954), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1954), + [sym_splicing_read_cond_lit] = STATE(1954), + [sym_var_quoting_lit] = STATE(1954), + [sym_quoting_lit] = STATE(1954), + [sym_syn_quoting_lit] = STATE(1954), + [sym_unquote_splicing_lit] = STATE(1954), + [sym_unquoting_lit] = STATE(1954), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1954), + [sym_package_lit] = STATE(1954), + [sym_include_reader_macro] = STATE(1954), + [sym_complex_num_lit] = STATE(1954), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(1977), + [sym_comment] = ACTIONS(1977), + [anon_sym_POUND_] = ACTIONS(1980), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(1983), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(1983), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1985), + [anon_sym_POUND_CARET] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_RPAREN] = ACTIONS(1994), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2391), - [anon_sym_cl] = ACTIONS(2357), - [anon_sym_in] = ACTIONS(2359), - [anon_sym_across] = ACTIONS(2359), - [anon_sym_being] = ACTIONS(2359), - [anon_sym_using] = ACTIONS(2359), - [aux_sym_for_clause_word_token1] = ACTIONS(2361), - [anon_sym_below] = ACTIONS(2359), - [anon_sym_above] = ACTIONS(2359), - [anon_sym_from] = ACTIONS(2359), - [anon_sym_to] = ACTIONS(2359), - [anon_sym_upto] = ACTIONS(2359), - [anon_sym_downto] = ACTIONS(2359), - [anon_sym_downfrom] = ACTIONS(2359), - [anon_sym_on] = ACTIONS(2359), - [anon_sym_by] = ACTIONS(2359), - [anon_sym_then] = ACTIONS(2359), - [anon_sym_EQ] = ACTIONS(2359), - [anon_sym_POUNDP] = ACTIONS(2363), - [anon_sym_POUNDp] = ACTIONS(2363), - [sym_self_referential_reader_macro] = ACTIONS(2393), - [anon_sym_POUND_PLUS] = ACTIONS(2367), - [anon_sym_POUND_DASH] = ACTIONS(2367), - [anon_sym_POUNDC] = ACTIONS(2369), - [anon_sym_POUNDc] = ACTIONS(2369), + [sym_fancy_literal] = ACTIONS(1983), + [anon_sym_cl] = ACTIONS(1996), + [aux_sym_accumulation_verb_token1] = ACTIONS(1999), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_and] = ACTIONS(1999), + [anon_sym_as] = ACTIONS(1999), + [anon_sym_with] = ACTIONS(1999), + [anon_sym_do] = ACTIONS(1999), + [anon_sym_while] = ACTIONS(1999), + [anon_sym_until] = ACTIONS(1999), + [anon_sym_repeat] = ACTIONS(1999), + [anon_sym_when] = ACTIONS(1999), + [anon_sym_if] = ACTIONS(1999), + [anon_sym_unless] = ACTIONS(1999), + [anon_sym_always] = ACTIONS(1999), + [anon_sym_thereis] = ACTIONS(1999), + [anon_sym_never] = ACTIONS(1999), + [anon_sym_else] = ACTIONS(1999), + [anon_sym_finally] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(1999), + [anon_sym_initially] = ACTIONS(1999), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2001), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [76] = { - [sym__gap] = STATE(80), - [sym_dis_expr] = STATE(80), - [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(2076), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2052), - [sym__bare_list_lit] = STATE(1688), - [sym_vec_lit] = STATE(2052), - [sym_set_lit] = STATE(2052), - [sym__bare_set_lit] = STATE(1689), - [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(1688), - [sym_for_clause_word] = STATE(293), - [sym__for_part] = STATE(1307), - [sym_loop_macro] = STATE(1688), - [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(80), - [aux_sym_list_lit_repeat1] = STATE(2109), - [aux_sym_for_clause_repeat1] = STATE(1031), - [sym__ws] = ACTIONS(2395), - [sym_comment] = ACTIONS(2395), - [anon_sym_POUND_] = ACTIONS(2323), - [anon_sym_POUND] = ACTIONS(2325), - [anon_sym_DOT] = ACTIONS(2397), - [aux_sym_num_lit_token1] = ACTIONS(2329), - [anon_sym_COLON] = ACTIONS(2331), - [anon_sym_COLON_COLON] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_nil_lit] = ACTIONS(2397), - [aux_sym_sym_lit_token1] = ACTIONS(2337), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_POUND0A] = ACTIONS(2341), - [anon_sym_POUND0a] = ACTIONS(2341), - [anon_sym_POUND_QMARK] = ACTIONS(2343), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2345), - [anon_sym_POUND_SQUOTE] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_BQUOTE] = ACTIONS(2351), - [anon_sym_COMMA_AT] = ACTIONS(2353), - [anon_sym_COMMA] = ACTIONS(2355), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1913), + [sym_num_lit] = STATE(1913), + [sym_kwd_lit] = STATE(1913), + [sym_str_lit] = STATE(1913), + [sym_char_lit] = STATE(1913), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1913), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1913), + [sym_set_lit] = STATE(1913), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1913), + [sym_splicing_read_cond_lit] = STATE(1913), + [sym_var_quoting_lit] = STATE(1913), + [sym_quoting_lit] = STATE(1913), + [sym_syn_quoting_lit] = STATE(1913), + [sym_unquote_splicing_lit] = STATE(1913), + [sym_unquoting_lit] = STATE(1913), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1913), + [sym_package_lit] = STATE(1913), + [sym_include_reader_macro] = STATE(1913), + [sym_complex_num_lit] = STATE(1913), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2003), + [sym_comment] = ACTIONS(2003), + [anon_sym_POUND_] = ACTIONS(2006), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2009), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2009), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2011), + [anon_sym_POUND_CARET] = ACTIONS(2014), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_RPAREN] = ACTIONS(2020), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2397), - [anon_sym_cl] = ACTIONS(2357), - [anon_sym_in] = ACTIONS(2359), - [anon_sym_across] = ACTIONS(2359), - [anon_sym_being] = ACTIONS(2359), - [anon_sym_using] = ACTIONS(2359), - [aux_sym_for_clause_word_token1] = ACTIONS(2361), - [anon_sym_below] = ACTIONS(2359), - [anon_sym_above] = ACTIONS(2359), - [anon_sym_from] = ACTIONS(2359), - [anon_sym_to] = ACTIONS(2359), - [anon_sym_upto] = ACTIONS(2359), - [anon_sym_downto] = ACTIONS(2359), - [anon_sym_downfrom] = ACTIONS(2359), - [anon_sym_on] = ACTIONS(2359), - [anon_sym_by] = ACTIONS(2359), - [anon_sym_then] = ACTIONS(2359), - [anon_sym_EQ] = ACTIONS(2359), - [anon_sym_POUNDP] = ACTIONS(2363), - [anon_sym_POUNDp] = ACTIONS(2363), - [sym_self_referential_reader_macro] = ACTIONS(2399), - [anon_sym_POUND_PLUS] = ACTIONS(2367), - [anon_sym_POUND_DASH] = ACTIONS(2367), - [anon_sym_POUNDC] = ACTIONS(2369), - [anon_sym_POUNDc] = ACTIONS(2369), + [sym_fancy_literal] = ACTIONS(2009), + [anon_sym_cl] = ACTIONS(2022), + [aux_sym_accumulation_verb_token1] = ACTIONS(2025), + [anon_sym_for] = ACTIONS(2025), + [anon_sym_and] = ACTIONS(2025), + [anon_sym_as] = ACTIONS(2025), + [anon_sym_with] = ACTIONS(2025), + [anon_sym_do] = ACTIONS(2025), + [anon_sym_while] = ACTIONS(2025), + [anon_sym_until] = ACTIONS(2025), + [anon_sym_repeat] = ACTIONS(2025), + [anon_sym_when] = ACTIONS(2025), + [anon_sym_if] = ACTIONS(2025), + [anon_sym_unless] = ACTIONS(2025), + [anon_sym_always] = ACTIONS(2025), + [anon_sym_thereis] = ACTIONS(2025), + [anon_sym_never] = ACTIONS(2025), + [anon_sym_else] = ACTIONS(2025), + [anon_sym_finally] = ACTIONS(2025), + [anon_sym_return] = ACTIONS(2025), + [anon_sym_initially] = ACTIONS(2025), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2027), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [77] = { - [sym__gap] = STATE(1025), - [sym_dis_expr] = STATE(1025), + [sym__gap] = STATE(29), + [sym_dis_expr] = STATE(29), + [sym__form] = STATE(1965), + [sym_num_lit] = STATE(1965), + [sym_kwd_lit] = STATE(1965), + [sym_str_lit] = STATE(1965), + [sym_char_lit] = STATE(1965), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1965), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1965), + [sym_set_lit] = STATE(1965), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1965), + [sym_splicing_read_cond_lit] = STATE(1965), + [sym_var_quoting_lit] = STATE(1965), + [sym_quoting_lit] = STATE(1965), + [sym_syn_quoting_lit] = STATE(1965), + [sym_unquote_splicing_lit] = STATE(1965), + [sym_unquoting_lit] = STATE(1965), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1965), + [sym_package_lit] = STATE(1965), + [sym_include_reader_macro] = STATE(1965), + [sym_complex_num_lit] = STATE(1965), + [aux_sym_dis_expr_repeat1] = STATE(29), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2029), + [sym_comment] = ACTIONS(2029), + [anon_sym_POUND_] = ACTIONS(1980), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2032), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2032), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1985), + [anon_sym_POUND_CARET] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_RPAREN] = ACTIONS(1994), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2032), + [anon_sym_cl] = ACTIONS(1996), + [aux_sym_accumulation_verb_token1] = ACTIONS(1999), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_and] = ACTIONS(1999), + [anon_sym_as] = ACTIONS(1999), + [anon_sym_with] = ACTIONS(1999), + [anon_sym_do] = ACTIONS(1999), + [anon_sym_while] = ACTIONS(1999), + [anon_sym_until] = ACTIONS(1999), + [anon_sym_repeat] = ACTIONS(1999), + [anon_sym_when] = ACTIONS(1999), + [anon_sym_if] = ACTIONS(1999), + [anon_sym_unless] = ACTIONS(1999), + [anon_sym_always] = ACTIONS(1999), + [anon_sym_thereis] = ACTIONS(1999), + [anon_sym_never] = ACTIONS(1999), + [anon_sym_else] = ACTIONS(1999), + [anon_sym_finally] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(1999), + [anon_sym_initially] = ACTIONS(1999), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2034), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [78] = { + [sym__gap] = STATE(113), + [sym_dis_expr] = STATE(113), [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(2076), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), [sym_list_lit] = STATE(2053), - [sym__bare_list_lit] = STATE(1688), + [sym__bare_list_lit] = STATE(2169), [sym_vec_lit] = STATE(2053), [sym_set_lit] = STATE(2053), - [sym__bare_set_lit] = STATE(1689), + [sym__bare_set_lit] = STATE(2168), [sym_read_cond_lit] = STATE(2053), [sym_splicing_read_cond_lit] = STATE(2053), [sym_var_quoting_lit] = STATE(2053), @@ -16092,1747 +16625,5253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(2053), [sym_unquote_splicing_lit] = STATE(2053), [sym_unquoting_lit] = STATE(2053), - [sym_defun] = STATE(1688), - [sym_for_clause_word] = STATE(383), - [sym_loop_macro] = STATE(1688), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), [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(1025), - [aux_sym_list_lit_repeat1] = STATE(2109), - [sym__ws] = ACTIONS(2401), - [sym_comment] = ACTIONS(2401), - [anon_sym_POUND_] = ACTIONS(2323), - [anon_sym_POUND] = ACTIONS(2325), - [anon_sym_DOT] = ACTIONS(2403), - [aux_sym_num_lit_token1] = ACTIONS(2329), - [anon_sym_COLON] = ACTIONS(2331), - [anon_sym_COLON_COLON] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_nil_lit] = ACTIONS(2403), - [aux_sym_sym_lit_token1] = ACTIONS(2337), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_POUND0A] = ACTIONS(2341), - [anon_sym_POUND0a] = ACTIONS(2341), - [anon_sym_POUND_QMARK] = ACTIONS(2343), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2345), - [anon_sym_POUND_SQUOTE] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_BQUOTE] = ACTIONS(2351), - [anon_sym_COMMA_AT] = ACTIONS(2353), - [anon_sym_COMMA] = ACTIONS(2355), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2403), - [anon_sym_cl] = ACTIONS(2357), - [anon_sym_in] = ACTIONS(2359), - [anon_sym_across] = ACTIONS(2359), - [anon_sym_being] = ACTIONS(2359), - [anon_sym_using] = ACTIONS(2359), - [aux_sym_for_clause_word_token1] = ACTIONS(2361), - [anon_sym_below] = ACTIONS(2359), - [anon_sym_above] = ACTIONS(2359), - [anon_sym_from] = ACTIONS(2359), - [anon_sym_to] = ACTIONS(2359), - [anon_sym_upto] = ACTIONS(2359), - [anon_sym_downto] = ACTIONS(2359), - [anon_sym_downfrom] = ACTIONS(2359), - [anon_sym_on] = ACTIONS(2359), - [anon_sym_by] = ACTIONS(2359), - [anon_sym_then] = ACTIONS(2359), - [anon_sym_EQ] = ACTIONS(2359), - [anon_sym_POUNDP] = ACTIONS(2363), - [anon_sym_POUNDp] = ACTIONS(2363), - [sym_self_referential_reader_macro] = ACTIONS(2405), - [anon_sym_POUND_PLUS] = ACTIONS(2367), - [anon_sym_POUND_DASH] = ACTIONS(2367), - [anon_sym_POUNDC] = ACTIONS(2369), - [anon_sym_POUNDc] = ACTIONS(2369), - }, - [78] = { - [sym__gap] = STATE(1025), - [sym_dis_expr] = STATE(1025), - [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(2076), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2048), - [sym__bare_list_lit] = STATE(1688), - [sym_vec_lit] = STATE(2048), - [sym_set_lit] = STATE(2048), - [sym__bare_set_lit] = STATE(1689), - [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(1688), - [sym_for_clause_word] = STATE(383), - [sym_loop_macro] = STATE(1688), - [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(1025), - [aux_sym_list_lit_repeat1] = STATE(2109), - [sym__ws] = ACTIONS(2401), - [sym_comment] = ACTIONS(2401), - [anon_sym_POUND_] = ACTIONS(2323), - [anon_sym_POUND] = ACTIONS(2325), - [anon_sym_DOT] = ACTIONS(2407), - [aux_sym_num_lit_token1] = ACTIONS(2329), - [anon_sym_COLON] = ACTIONS(2331), - [anon_sym_COLON_COLON] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_nil_lit] = ACTIONS(2407), - [aux_sym_sym_lit_token1] = ACTIONS(2337), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_POUND0A] = ACTIONS(2341), - [anon_sym_POUND0a] = ACTIONS(2341), - [anon_sym_POUND_QMARK] = ACTIONS(2343), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2345), - [anon_sym_POUND_SQUOTE] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_BQUOTE] = ACTIONS(2351), - [anon_sym_COMMA_AT] = ACTIONS(2353), - [anon_sym_COMMA] = ACTIONS(2355), + [aux_sym_dis_expr_repeat1] = STATE(113), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2036), + [sym_comment] = ACTIONS(2036), + [anon_sym_POUND_] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2042), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2042), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2044), + [anon_sym_POUND_CARET] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2050), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2407), - [anon_sym_cl] = ACTIONS(2357), - [anon_sym_in] = ACTIONS(2359), - [anon_sym_across] = ACTIONS(2359), - [anon_sym_being] = ACTIONS(2359), - [anon_sym_using] = ACTIONS(2359), - [aux_sym_for_clause_word_token1] = ACTIONS(2361), - [anon_sym_below] = ACTIONS(2359), - [anon_sym_above] = ACTIONS(2359), - [anon_sym_from] = ACTIONS(2359), - [anon_sym_to] = ACTIONS(2359), - [anon_sym_upto] = ACTIONS(2359), - [anon_sym_downto] = ACTIONS(2359), - [anon_sym_downfrom] = ACTIONS(2359), - [anon_sym_on] = ACTIONS(2359), - [anon_sym_by] = ACTIONS(2359), - [anon_sym_then] = ACTIONS(2359), - [anon_sym_EQ] = ACTIONS(2359), - [anon_sym_POUNDP] = ACTIONS(2363), - [anon_sym_POUNDp] = ACTIONS(2363), - [sym_self_referential_reader_macro] = ACTIONS(2409), - [anon_sym_POUND_PLUS] = ACTIONS(2367), - [anon_sym_POUND_DASH] = ACTIONS(2367), - [anon_sym_POUNDC] = ACTIONS(2369), - [anon_sym_POUNDc] = ACTIONS(2369), + [sym_fancy_literal] = ACTIONS(2042), + [anon_sym_cl] = ACTIONS(2055), + [aux_sym_accumulation_verb_token1] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_and] = ACTIONS(2058), + [anon_sym_as] = ACTIONS(2058), + [anon_sym_with] = ACTIONS(2058), + [anon_sym_do] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [anon_sym_until] = ACTIONS(2058), + [anon_sym_repeat] = ACTIONS(2058), + [anon_sym_when] = ACTIONS(2058), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_unless] = ACTIONS(2058), + [anon_sym_always] = ACTIONS(2058), + [anon_sym_thereis] = ACTIONS(2058), + [anon_sym_never] = ACTIONS(2058), + [anon_sym_else] = ACTIONS(2058), + [anon_sym_finally] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_initially] = ACTIONS(2058), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2060), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [79] = { - [sym__gap] = STATE(1025), - [sym_dis_expr] = STATE(1025), - [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(2076), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2049), - [sym__bare_list_lit] = STATE(1688), - [sym_vec_lit] = STATE(2049), - [sym_set_lit] = STATE(2049), - [sym__bare_set_lit] = STATE(1689), - [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(1688), - [sym_for_clause_word] = STATE(383), - [sym_loop_macro] = STATE(1688), - [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(1025), - [aux_sym_list_lit_repeat1] = STATE(2109), - [sym__ws] = ACTIONS(2401), - [sym_comment] = ACTIONS(2401), - [anon_sym_POUND_] = ACTIONS(2323), - [anon_sym_POUND] = ACTIONS(2325), - [anon_sym_DOT] = ACTIONS(2411), - [aux_sym_num_lit_token1] = ACTIONS(2329), - [anon_sym_COLON] = ACTIONS(2331), - [anon_sym_COLON_COLON] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_nil_lit] = ACTIONS(2411), - [aux_sym_sym_lit_token1] = ACTIONS(2337), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_POUND0A] = ACTIONS(2341), - [anon_sym_POUND0a] = ACTIONS(2341), - [anon_sym_POUND_QMARK] = ACTIONS(2343), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2345), - [anon_sym_POUND_SQUOTE] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_BQUOTE] = ACTIONS(2351), - [anon_sym_COMMA_AT] = ACTIONS(2353), - [anon_sym_COMMA] = ACTIONS(2355), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1966), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1966), + [sym_set_lit] = STATE(1966), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1966), + [sym_package_lit] = STATE(1966), + [sym_include_reader_macro] = STATE(1966), + [sym_complex_num_lit] = STATE(1966), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2062), + [sym_comment] = ACTIONS(2062), + [anon_sym_POUND_] = ACTIONS(1928), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2065), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2065), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1933), + [anon_sym_POUND_CARET] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1939), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2411), - [anon_sym_cl] = ACTIONS(2357), - [anon_sym_in] = ACTIONS(2359), - [anon_sym_across] = ACTIONS(2359), - [anon_sym_being] = ACTIONS(2359), - [anon_sym_using] = ACTIONS(2359), - [aux_sym_for_clause_word_token1] = ACTIONS(2361), - [anon_sym_below] = ACTIONS(2359), - [anon_sym_above] = ACTIONS(2359), - [anon_sym_from] = ACTIONS(2359), - [anon_sym_to] = ACTIONS(2359), - [anon_sym_upto] = ACTIONS(2359), - [anon_sym_downto] = ACTIONS(2359), - [anon_sym_downfrom] = ACTIONS(2359), - [anon_sym_on] = ACTIONS(2359), - [anon_sym_by] = ACTIONS(2359), - [anon_sym_then] = ACTIONS(2359), - [anon_sym_EQ] = ACTIONS(2359), - [anon_sym_POUNDP] = ACTIONS(2363), - [anon_sym_POUNDp] = ACTIONS(2363), - [sym_self_referential_reader_macro] = ACTIONS(2413), - [anon_sym_POUND_PLUS] = ACTIONS(2367), - [anon_sym_POUND_DASH] = ACTIONS(2367), - [anon_sym_POUNDC] = ACTIONS(2369), - [anon_sym_POUNDc] = ACTIONS(2369), + [sym_fancy_literal] = ACTIONS(2065), + [anon_sym_cl] = ACTIONS(1944), + [aux_sym_accumulation_verb_token1] = ACTIONS(1947), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_and] = ACTIONS(1947), + [anon_sym_as] = ACTIONS(1947), + [anon_sym_with] = ACTIONS(1947), + [anon_sym_do] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1947), + [anon_sym_until] = ACTIONS(1947), + [anon_sym_repeat] = ACTIONS(1947), + [anon_sym_when] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_unless] = ACTIONS(1947), + [anon_sym_always] = ACTIONS(1947), + [anon_sym_thereis] = ACTIONS(1947), + [anon_sym_never] = ACTIONS(1947), + [anon_sym_else] = ACTIONS(1947), + [anon_sym_finally] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1947), + [anon_sym_initially] = ACTIONS(1947), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2067), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [80] = { - [sym__gap] = STATE(1025), - [sym_dis_expr] = STATE(1025), - [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(2076), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2046), - [sym__bare_list_lit] = STATE(1688), - [sym_vec_lit] = STATE(2046), - [sym_set_lit] = STATE(2046), - [sym__bare_set_lit] = STATE(1689), - [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(1688), - [sym_for_clause_word] = STATE(383), - [sym_loop_macro] = STATE(1688), - [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(1025), - [aux_sym_list_lit_repeat1] = STATE(2109), - [sym__ws] = ACTIONS(2401), - [sym_comment] = ACTIONS(2401), - [anon_sym_POUND_] = ACTIONS(2323), - [anon_sym_POUND] = ACTIONS(2325), - [anon_sym_DOT] = ACTIONS(2415), - [aux_sym_num_lit_token1] = ACTIONS(2329), - [anon_sym_COLON] = ACTIONS(2331), - [anon_sym_COLON_COLON] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_nil_lit] = ACTIONS(2415), - [aux_sym_sym_lit_token1] = ACTIONS(2337), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_POUND0A] = ACTIONS(2341), - [anon_sym_POUND0a] = ACTIONS(2341), - [anon_sym_POUND_QMARK] = ACTIONS(2343), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2345), - [anon_sym_POUND_SQUOTE] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_BQUOTE] = ACTIONS(2351), - [anon_sym_COMMA_AT] = ACTIONS(2353), - [anon_sym_COMMA] = ACTIONS(2355), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1925), + [sym_num_lit] = STATE(1925), + [sym_kwd_lit] = STATE(1925), + [sym_str_lit] = STATE(1925), + [sym_char_lit] = STATE(1925), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1925), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1925), + [sym_set_lit] = STATE(1925), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1925), + [sym_splicing_read_cond_lit] = STATE(1925), + [sym_var_quoting_lit] = STATE(1925), + [sym_quoting_lit] = STATE(1925), + [sym_syn_quoting_lit] = STATE(1925), + [sym_unquote_splicing_lit] = STATE(1925), + [sym_unquoting_lit] = STATE(1925), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1925), + [sym_package_lit] = STATE(1925), + [sym_include_reader_macro] = STATE(1925), + [sym_complex_num_lit] = STATE(1925), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2069), + [sym_comment] = ACTIONS(2069), + [anon_sym_POUND_] = ACTIONS(2072), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2075), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2075), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2077), + [anon_sym_POUND_CARET] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_RPAREN] = ACTIONS(2086), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2415), - [anon_sym_cl] = ACTIONS(2357), - [anon_sym_in] = ACTIONS(2359), - [anon_sym_across] = ACTIONS(2359), - [anon_sym_being] = ACTIONS(2359), - [anon_sym_using] = ACTIONS(2359), - [aux_sym_for_clause_word_token1] = ACTIONS(2361), - [anon_sym_below] = ACTIONS(2359), - [anon_sym_above] = ACTIONS(2359), - [anon_sym_from] = ACTIONS(2359), - [anon_sym_to] = ACTIONS(2359), - [anon_sym_upto] = ACTIONS(2359), - [anon_sym_downto] = ACTIONS(2359), - [anon_sym_downfrom] = ACTIONS(2359), - [anon_sym_on] = ACTIONS(2359), - [anon_sym_by] = ACTIONS(2359), - [anon_sym_then] = ACTIONS(2359), - [anon_sym_EQ] = ACTIONS(2359), - [anon_sym_POUNDP] = ACTIONS(2363), - [anon_sym_POUNDp] = ACTIONS(2363), - [sym_self_referential_reader_macro] = ACTIONS(2417), - [anon_sym_POUND_PLUS] = ACTIONS(2367), - [anon_sym_POUND_DASH] = ACTIONS(2367), - [anon_sym_POUNDC] = ACTIONS(2369), - [anon_sym_POUNDc] = ACTIONS(2369), + [sym_fancy_literal] = ACTIONS(2075), + [anon_sym_cl] = ACTIONS(2088), + [aux_sym_accumulation_verb_token1] = ACTIONS(2091), + [anon_sym_for] = ACTIONS(2091), + [anon_sym_and] = ACTIONS(2091), + [anon_sym_as] = ACTIONS(2091), + [anon_sym_with] = ACTIONS(2091), + [anon_sym_do] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [anon_sym_until] = ACTIONS(2091), + [anon_sym_repeat] = ACTIONS(2091), + [anon_sym_when] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_unless] = ACTIONS(2091), + [anon_sym_always] = ACTIONS(2091), + [anon_sym_thereis] = ACTIONS(2091), + [anon_sym_never] = ACTIONS(2091), + [anon_sym_else] = ACTIONS(2091), + [anon_sym_finally] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_initially] = ACTIONS(2091), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2093), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [81] = { - [sym__gap] = STATE(1025), - [sym_dis_expr] = STATE(1025), - [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(2076), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2050), - [sym__bare_list_lit] = STATE(1688), - [sym_vec_lit] = STATE(2050), - [sym_set_lit] = STATE(2050), - [sym__bare_set_lit] = STATE(1689), - [sym_read_cond_lit] = STATE(2050), - [sym_splicing_read_cond_lit] = STATE(2050), - [sym_var_quoting_lit] = STATE(2050), - [sym_quoting_lit] = STATE(2050), - [sym_syn_quoting_lit] = STATE(2050), - [sym_unquote_splicing_lit] = STATE(2050), - [sym_unquoting_lit] = STATE(2050), - [sym_defun] = STATE(1688), - [sym_for_clause_word] = STATE(383), - [sym_loop_macro] = STATE(1688), - [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(1025), - [aux_sym_list_lit_repeat1] = STATE(2109), - [sym__ws] = ACTIONS(2401), - [sym_comment] = ACTIONS(2401), - [anon_sym_POUND_] = ACTIONS(2323), - [anon_sym_POUND] = ACTIONS(2325), - [anon_sym_DOT] = ACTIONS(2419), - [aux_sym_num_lit_token1] = ACTIONS(2329), - [anon_sym_COLON] = ACTIONS(2331), - [anon_sym_COLON_COLON] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_nil_lit] = ACTIONS(2419), - [aux_sym_sym_lit_token1] = ACTIONS(2337), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_POUND0A] = ACTIONS(2341), - [anon_sym_POUND0a] = ACTIONS(2341), - [anon_sym_POUND_QMARK] = ACTIONS(2343), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2345), - [anon_sym_POUND_SQUOTE] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_BQUOTE] = ACTIONS(2351), - [anon_sym_COMMA_AT] = ACTIONS(2353), - [anon_sym_COMMA] = ACTIONS(2355), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1973), + [sym_num_lit] = STATE(1973), + [sym_kwd_lit] = STATE(1973), + [sym_str_lit] = STATE(1973), + [sym_char_lit] = STATE(1973), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1973), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1973), + [sym_set_lit] = STATE(1973), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1973), + [sym_splicing_read_cond_lit] = STATE(1973), + [sym_var_quoting_lit] = STATE(1973), + [sym_quoting_lit] = STATE(1973), + [sym_syn_quoting_lit] = STATE(1973), + [sym_unquote_splicing_lit] = STATE(1973), + [sym_unquoting_lit] = STATE(1973), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1973), + [sym_package_lit] = STATE(1973), + [sym_include_reader_macro] = STATE(1973), + [sym_complex_num_lit] = STATE(1973), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2095), + [sym_comment] = ACTIONS(2095), + [anon_sym_POUND_] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2101), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2101), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_POUND_CARET] = ACTIONS(2106), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2112), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2419), - [anon_sym_cl] = ACTIONS(2357), - [anon_sym_in] = ACTIONS(2359), - [anon_sym_across] = ACTIONS(2359), - [anon_sym_being] = ACTIONS(2359), - [anon_sym_using] = ACTIONS(2359), - [aux_sym_for_clause_word_token1] = ACTIONS(2361), - [anon_sym_below] = ACTIONS(2359), - [anon_sym_above] = ACTIONS(2359), - [anon_sym_from] = ACTIONS(2359), - [anon_sym_to] = ACTIONS(2359), - [anon_sym_upto] = ACTIONS(2359), - [anon_sym_downto] = ACTIONS(2359), - [anon_sym_downfrom] = ACTIONS(2359), - [anon_sym_on] = ACTIONS(2359), - [anon_sym_by] = ACTIONS(2359), - [anon_sym_then] = ACTIONS(2359), - [anon_sym_EQ] = ACTIONS(2359), - [anon_sym_POUNDP] = ACTIONS(2363), - [anon_sym_POUNDp] = ACTIONS(2363), - [sym_self_referential_reader_macro] = ACTIONS(2421), - [anon_sym_POUND_PLUS] = ACTIONS(2367), - [anon_sym_POUND_DASH] = ACTIONS(2367), - [anon_sym_POUNDC] = ACTIONS(2369), - [anon_sym_POUNDc] = ACTIONS(2369), + [sym_fancy_literal] = ACTIONS(2101), + [anon_sym_cl] = ACTIONS(2114), + [aux_sym_accumulation_verb_token1] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_and] = ACTIONS(2117), + [anon_sym_as] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_until] = ACTIONS(2117), + [anon_sym_repeat] = ACTIONS(2117), + [anon_sym_when] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_unless] = ACTIONS(2117), + [anon_sym_always] = ACTIONS(2117), + [anon_sym_thereis] = ACTIONS(2117), + [anon_sym_never] = ACTIONS(2117), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_finally] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_initially] = ACTIONS(2117), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2119), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [82] = { - [sym__gap] = STATE(1025), - [sym_dis_expr] = STATE(1025), - [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(2076), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(2055), - [sym__bare_list_lit] = STATE(1688), - [sym_vec_lit] = STATE(2055), - [sym_set_lit] = STATE(2055), - [sym__bare_set_lit] = STATE(1689), - [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(1688), - [sym_for_clause_word] = STATE(383), - [sym_loop_macro] = STATE(1688), - [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(1025), - [aux_sym_list_lit_repeat1] = STATE(2109), - [sym__ws] = ACTIONS(2401), - [sym_comment] = ACTIONS(2401), - [anon_sym_POUND_] = ACTIONS(2323), - [anon_sym_POUND] = ACTIONS(2325), - [anon_sym_DOT] = ACTIONS(2423), - [aux_sym_num_lit_token1] = ACTIONS(2329), - [anon_sym_COLON] = ACTIONS(2331), - [anon_sym_COLON_COLON] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym_nil_lit] = ACTIONS(2423), - [aux_sym_sym_lit_token1] = ACTIONS(2337), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_POUND0A] = ACTIONS(2341), - [anon_sym_POUND0a] = ACTIONS(2341), - [anon_sym_POUND_QMARK] = ACTIONS(2343), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2345), - [anon_sym_POUND_SQUOTE] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_BQUOTE] = ACTIONS(2351), - [anon_sym_COMMA_AT] = ACTIONS(2353), - [anon_sym_COMMA] = ACTIONS(2355), + [sym__gap] = STATE(48), + [sym_dis_expr] = STATE(48), + [sym__form] = STATE(1977), + [sym_num_lit] = STATE(1977), + [sym_kwd_lit] = STATE(1977), + [sym_str_lit] = STATE(1977), + [sym_char_lit] = STATE(1977), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1977), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1977), + [sym_set_lit] = STATE(1977), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1977), + [sym_splicing_read_cond_lit] = STATE(1977), + [sym_var_quoting_lit] = STATE(1977), + [sym_quoting_lit] = STATE(1977), + [sym_syn_quoting_lit] = STATE(1977), + [sym_unquote_splicing_lit] = STATE(1977), + [sym_unquoting_lit] = STATE(1977), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1977), + [sym_package_lit] = STATE(1977), + [sym_include_reader_macro] = STATE(1977), + [sym_complex_num_lit] = STATE(1977), + [aux_sym_dis_expr_repeat1] = STATE(48), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2121), + [sym_comment] = ACTIONS(2121), + [anon_sym_POUND_] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2124), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2124), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_POUND_CARET] = ACTIONS(2106), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2112), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2423), - [anon_sym_cl] = ACTIONS(2357), - [anon_sym_in] = ACTIONS(2359), - [anon_sym_across] = ACTIONS(2359), - [anon_sym_being] = ACTIONS(2359), - [anon_sym_using] = ACTIONS(2359), - [aux_sym_for_clause_word_token1] = ACTIONS(2361), - [anon_sym_below] = ACTIONS(2359), - [anon_sym_above] = ACTIONS(2359), - [anon_sym_from] = ACTIONS(2359), - [anon_sym_to] = ACTIONS(2359), - [anon_sym_upto] = ACTIONS(2359), - [anon_sym_downto] = ACTIONS(2359), - [anon_sym_downfrom] = ACTIONS(2359), - [anon_sym_on] = ACTIONS(2359), - [anon_sym_by] = ACTIONS(2359), - [anon_sym_then] = ACTIONS(2359), - [anon_sym_EQ] = ACTIONS(2359), - [anon_sym_POUNDP] = ACTIONS(2363), - [anon_sym_POUNDp] = ACTIONS(2363), - [sym_self_referential_reader_macro] = ACTIONS(2425), - [anon_sym_POUND_PLUS] = ACTIONS(2367), - [anon_sym_POUND_DASH] = ACTIONS(2367), - [anon_sym_POUNDC] = ACTIONS(2369), - [anon_sym_POUNDc] = ACTIONS(2369), + [sym_fancy_literal] = ACTIONS(2124), + [anon_sym_cl] = ACTIONS(2114), + [aux_sym_accumulation_verb_token1] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_and] = ACTIONS(2117), + [anon_sym_as] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_until] = ACTIONS(2117), + [anon_sym_repeat] = ACTIONS(2117), + [anon_sym_when] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_unless] = ACTIONS(2117), + [anon_sym_always] = ACTIONS(2117), + [anon_sym_thereis] = ACTIONS(2117), + [anon_sym_never] = ACTIONS(2117), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_finally] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_initially] = ACTIONS(2117), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2126), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [83] = { - [sym__gap] = STATE(1376), - [sym_dis_expr] = STATE(1376), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_defun_keyword] = STATE(668), - [sym_defun_header] = STATE(121), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(116), - [sym__ws] = ACTIONS(2427), - [sym_comment] = ACTIONS(2427), - [anon_sym_POUND_] = ACTIONS(2429), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), - [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(2433), - [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(2431), - [anon_sym_cl] = ACTIONS(2435), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_defun] = ACTIONS(2439), - [anon_sym_defmacro] = ACTIONS(2439), - [anon_sym_defgeneric] = ACTIONS(2439), - [anon_sym_defmethod] = ACTIONS(2439), - [anon_sym_lambda] = ACTIONS(2441), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), - [anon_sym_POUND_PLUS] = ACTIONS(55), - [anon_sym_POUND_DASH] = ACTIONS(55), - [anon_sym_POUNDC] = ACTIONS(57), - [anon_sym_POUNDc] = ACTIONS(57), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2128), + [sym_comment] = ACTIONS(2128), + [anon_sym_POUND_] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2134), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2134), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2136), + [anon_sym_POUND_CARET] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RPAREN] = ACTIONS(2145), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2134), + [anon_sym_cl] = ACTIONS(2147), + [aux_sym_accumulation_verb_token1] = ACTIONS(2150), + [anon_sym_for] = ACTIONS(2150), + [anon_sym_and] = ACTIONS(2150), + [anon_sym_as] = ACTIONS(2150), + [anon_sym_with] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(2150), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_until] = ACTIONS(2150), + [anon_sym_repeat] = ACTIONS(2150), + [anon_sym_when] = ACTIONS(2150), + [anon_sym_if] = ACTIONS(2150), + [anon_sym_unless] = ACTIONS(2150), + [anon_sym_always] = ACTIONS(2150), + [anon_sym_thereis] = ACTIONS(2150), + [anon_sym_never] = ACTIONS(2150), + [anon_sym_else] = ACTIONS(2150), + [anon_sym_finally] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2150), + [anon_sym_initially] = ACTIONS(2150), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2152), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [84] = { - [sym__gap] = STATE(1380), - [sym_dis_expr] = STATE(1380), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_defun_keyword] = STATE(668), - [sym_defun_header] = STATE(125), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(126), - [sym__ws] = ACTIONS(2445), - [sym_comment] = ACTIONS(2445), - [anon_sym_POUND_] = ACTIONS(2429), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), - [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(2447), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), + [sym__gap] = STATE(49), + [sym_dis_expr] = STATE(49), + [sym__form] = STATE(1919), + [sym_num_lit] = STATE(1919), + [sym_kwd_lit] = STATE(1919), + [sym_str_lit] = STATE(1919), + [sym_char_lit] = STATE(1919), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1919), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1919), + [sym_set_lit] = STATE(1919), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1919), + [sym_splicing_read_cond_lit] = STATE(1919), + [sym_var_quoting_lit] = STATE(1919), + [sym_quoting_lit] = STATE(1919), + [sym_syn_quoting_lit] = STATE(1919), + [sym_unquote_splicing_lit] = STATE(1919), + [sym_unquoting_lit] = STATE(1919), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1919), + [sym_package_lit] = STATE(1919), + [sym_include_reader_macro] = STATE(1919), + [sym_complex_num_lit] = STATE(1919), + [aux_sym_dis_expr_repeat1] = STATE(49), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2154), + [sym_comment] = ACTIONS(2154), + [anon_sym_POUND_] = ACTIONS(2157), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2160), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2160), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [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(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2431), - [anon_sym_cl] = ACTIONS(2449), - [anon_sym_loop] = ACTIONS(2451), - [anon_sym_defun] = ACTIONS(2439), - [anon_sym_defmacro] = ACTIONS(2439), - [anon_sym_defgeneric] = ACTIONS(2439), - [anon_sym_defmethod] = ACTIONS(2439), - [anon_sym_lambda] = ACTIONS(2441), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), - [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(2160), + [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(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2178), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [85] = { - [sym__gap] = STATE(1381), - [sym_dis_expr] = STATE(1381), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_defun_keyword] = STATE(668), - [sym_defun_header] = STATE(108), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(107), - [sym__ws] = ACTIONS(2453), - [sym_comment] = ACTIONS(2453), - [anon_sym_POUND_] = ACTIONS(2429), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), - [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(2455), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2180), + [sym_comment] = ACTIONS(2180), + [anon_sym_POUND_] = ACTIONS(2157), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2183), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2183), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [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(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2431), - [anon_sym_cl] = ACTIONS(2457), - [anon_sym_loop] = ACTIONS(2459), - [anon_sym_defun] = ACTIONS(2439), - [anon_sym_defmacro] = ACTIONS(2439), - [anon_sym_defgeneric] = ACTIONS(2439), - [anon_sym_defmethod] = ACTIONS(2439), - [anon_sym_lambda] = ACTIONS(2441), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), - [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(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(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2185), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [86] = { - [sym__gap] = STATE(1382), - [sym_dis_expr] = STATE(1382), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_defun_keyword] = STATE(668), - [sym_defun_header] = STATE(124), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(123), - [sym__ws] = ACTIONS(2461), - [sym_comment] = ACTIONS(2461), - [anon_sym_POUND_] = ACTIONS(2429), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), - [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(2463), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), + [sym__gap] = STATE(76), + [sym_dis_expr] = STATE(76), + [sym__form] = STATE(1991), + [sym_num_lit] = STATE(1991), + [sym_kwd_lit] = STATE(1991), + [sym_str_lit] = STATE(1991), + [sym_char_lit] = STATE(1991), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1991), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1991), + [sym_set_lit] = STATE(1991), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1991), + [sym_splicing_read_cond_lit] = STATE(1991), + [sym_var_quoting_lit] = STATE(1991), + [sym_quoting_lit] = STATE(1991), + [sym_syn_quoting_lit] = STATE(1991), + [sym_unquote_splicing_lit] = STATE(1991), + [sym_unquoting_lit] = STATE(1991), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1991), + [sym_package_lit] = STATE(1991), + [sym_include_reader_macro] = STATE(1991), + [sym_complex_num_lit] = STATE(1991), + [aux_sym_dis_expr_repeat1] = STATE(76), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2187), + [sym_comment] = ACTIONS(2187), + [anon_sym_POUND_] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2193), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2193), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_POUND_CARET] = ACTIONS(2198), + [anon_sym_LPAREN] = ACTIONS(2201), + [anon_sym_RPAREN] = ACTIONS(2204), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2431), - [anon_sym_cl] = ACTIONS(2465), - [anon_sym_loop] = ACTIONS(2467), - [anon_sym_defun] = ACTIONS(2439), - [anon_sym_defmacro] = ACTIONS(2439), - [anon_sym_defgeneric] = ACTIONS(2439), - [anon_sym_defmethod] = ACTIONS(2439), - [anon_sym_lambda] = ACTIONS(2441), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), - [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(2193), + [anon_sym_cl] = ACTIONS(2206), + [aux_sym_accumulation_verb_token1] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_and] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_with] = ACTIONS(2209), + [anon_sym_do] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_until] = ACTIONS(2209), + [anon_sym_repeat] = ACTIONS(2209), + [anon_sym_when] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_unless] = ACTIONS(2209), + [anon_sym_always] = ACTIONS(2209), + [anon_sym_thereis] = ACTIONS(2209), + [anon_sym_never] = ACTIONS(2209), + [anon_sym_else] = ACTIONS(2209), + [anon_sym_finally] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_initially] = ACTIONS(2209), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2211), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [87] = { - [sym__gap] = STATE(1375), - [sym_dis_expr] = STATE(1375), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_defun_keyword] = STATE(668), - [sym_defun_header] = STATE(206), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(205), - [sym__ws] = ACTIONS(2469), - [sym_comment] = ACTIONS(2469), - [anon_sym_POUND_] = ACTIONS(2429), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), - [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(2471), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), + [sym__gap] = STATE(121), + [sym_dis_expr] = STATE(121), + [sym__form] = STATE(1927), + [sym_num_lit] = STATE(1927), + [sym_kwd_lit] = STATE(1927), + [sym_str_lit] = STATE(1927), + [sym_char_lit] = STATE(1927), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1927), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1927), + [sym_set_lit] = STATE(1927), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1927), + [sym_splicing_read_cond_lit] = STATE(1927), + [sym_var_quoting_lit] = STATE(1927), + [sym_quoting_lit] = STATE(1927), + [sym_syn_quoting_lit] = STATE(1927), + [sym_unquote_splicing_lit] = STATE(1927), + [sym_unquoting_lit] = STATE(1927), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1927), + [sym_package_lit] = STATE(1927), + [sym_include_reader_macro] = STATE(1927), + [sym_complex_num_lit] = STATE(1927), + [aux_sym_dis_expr_repeat1] = STATE(121), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2213), + [sym_comment] = ACTIONS(2213), + [anon_sym_POUND_] = ACTIONS(2216), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2219), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2219), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_POUND_CARET] = ACTIONS(2224), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_RPAREN] = ACTIONS(2230), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2431), - [anon_sym_cl] = ACTIONS(2473), - [anon_sym_loop] = ACTIONS(2475), - [anon_sym_defun] = ACTIONS(2439), - [anon_sym_defmacro] = ACTIONS(2439), - [anon_sym_defgeneric] = ACTIONS(2439), - [anon_sym_defmethod] = ACTIONS(2439), - [anon_sym_lambda] = ACTIONS(2441), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), - [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(2219), + [anon_sym_cl] = ACTIONS(2232), + [aux_sym_accumulation_verb_token1] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_and] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_with] = ACTIONS(2235), + [anon_sym_do] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [anon_sym_until] = ACTIONS(2235), + [anon_sym_repeat] = ACTIONS(2235), + [anon_sym_when] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_unless] = ACTIONS(2235), + [anon_sym_always] = ACTIONS(2235), + [anon_sym_thereis] = ACTIONS(2235), + [anon_sym_never] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2235), + [anon_sym_finally] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_initially] = ACTIONS(2235), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2237), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [88] = { - [sym__gap] = STATE(1377), - [sym_dis_expr] = STATE(1377), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_defun_keyword] = STATE(668), - [sym_defun_header] = STATE(118), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(119), - [sym__ws] = ACTIONS(2477), - [sym_comment] = ACTIONS(2477), - [anon_sym_POUND_] = ACTIONS(2429), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), - [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(2479), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1970), + [sym_num_lit] = STATE(1970), + [sym_kwd_lit] = STATE(1970), + [sym_str_lit] = STATE(1970), + [sym_char_lit] = STATE(1970), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1970), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1970), + [sym_set_lit] = STATE(1970), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1970), + [sym_splicing_read_cond_lit] = STATE(1970), + [sym_var_quoting_lit] = STATE(1970), + [sym_quoting_lit] = STATE(1970), + [sym_syn_quoting_lit] = STATE(1970), + [sym_unquote_splicing_lit] = STATE(1970), + [sym_unquoting_lit] = STATE(1970), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1970), + [sym_package_lit] = STATE(1970), + [sym_include_reader_macro] = STATE(1970), + [sym_complex_num_lit] = STATE(1970), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2239), + [sym_comment] = ACTIONS(2239), + [anon_sym_POUND_] = ACTIONS(2242), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2245), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2245), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2247), + [anon_sym_POUND_CARET] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_RPAREN] = ACTIONS(2256), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2431), - [anon_sym_cl] = ACTIONS(2481), - [anon_sym_loop] = ACTIONS(2483), - [anon_sym_defun] = ACTIONS(2439), - [anon_sym_defmacro] = ACTIONS(2439), - [anon_sym_defgeneric] = ACTIONS(2439), - [anon_sym_defmethod] = ACTIONS(2439), - [anon_sym_lambda] = ACTIONS(2441), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), - [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(2245), + [anon_sym_cl] = ACTIONS(2258), + [aux_sym_accumulation_verb_token1] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_and] = ACTIONS(2261), + [anon_sym_as] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_until] = ACTIONS(2261), + [anon_sym_repeat] = ACTIONS(2261), + [anon_sym_when] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_unless] = ACTIONS(2261), + [anon_sym_always] = ACTIONS(2261), + [anon_sym_thereis] = ACTIONS(2261), + [anon_sym_never] = ACTIONS(2261), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_finally] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_initially] = ACTIONS(2261), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2263), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [89] = { - [sym__gap] = STATE(1378), - [sym_dis_expr] = STATE(1378), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_defun_keyword] = STATE(668), - [sym_defun_header] = STATE(147), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(148), - [sym__ws] = ACTIONS(2485), - [sym_comment] = ACTIONS(2485), - [anon_sym_POUND_] = ACTIONS(2429), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), - [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(2487), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), + [sym__gap] = STATE(85), + [sym_dis_expr] = STATE(85), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2075), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2075), + [sym_set_lit] = STATE(2075), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(85), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2265), + [sym_comment] = ACTIONS(2265), + [anon_sym_POUND_] = ACTIONS(2268), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2271), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2271), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2273), + [anon_sym_POUND_CARET] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2282), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2431), - [anon_sym_cl] = ACTIONS(2489), - [anon_sym_loop] = ACTIONS(2491), - [anon_sym_defun] = ACTIONS(2439), - [anon_sym_defmacro] = ACTIONS(2439), - [anon_sym_defgeneric] = ACTIONS(2439), - [anon_sym_defmethod] = ACTIONS(2439), - [anon_sym_lambda] = ACTIONS(2441), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), - [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(2271), + [anon_sym_cl] = ACTIONS(2284), + [aux_sym_accumulation_verb_token1] = ACTIONS(2287), + [anon_sym_for] = ACTIONS(2287), + [anon_sym_and] = ACTIONS(2287), + [anon_sym_as] = ACTIONS(2287), + [anon_sym_with] = ACTIONS(2287), + [anon_sym_do] = ACTIONS(2287), + [anon_sym_while] = ACTIONS(2287), + [anon_sym_until] = ACTIONS(2287), + [anon_sym_repeat] = ACTIONS(2287), + [anon_sym_when] = ACTIONS(2287), + [anon_sym_if] = ACTIONS(2287), + [anon_sym_unless] = ACTIONS(2287), + [anon_sym_always] = ACTIONS(2287), + [anon_sym_thereis] = ACTIONS(2287), + [anon_sym_never] = ACTIONS(2287), + [anon_sym_else] = ACTIONS(2287), + [anon_sym_finally] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2287), + [anon_sym_initially] = ACTIONS(2287), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2289), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [90] = { - [sym__gap] = STATE(1379), - [sym_dis_expr] = STATE(1379), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_defun_keyword] = STATE(668), - [sym_defun_header] = STATE(155), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(158), - [sym__ws] = ACTIONS(2493), - [sym_comment] = ACTIONS(2493), - [anon_sym_POUND_] = ACTIONS(2429), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), - [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(2495), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), + [sym__gap] = STATE(124), + [sym_dis_expr] = STATE(124), + [sym__form] = STATE(2091), + [sym_num_lit] = STATE(2091), + [sym_kwd_lit] = STATE(2091), + [sym_str_lit] = STATE(2091), + [sym_char_lit] = STATE(2091), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2091), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2091), + [sym_set_lit] = STATE(2091), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2091), + [sym_splicing_read_cond_lit] = STATE(2091), + [sym_var_quoting_lit] = STATE(2091), + [sym_quoting_lit] = STATE(2091), + [sym_syn_quoting_lit] = STATE(2091), + [sym_unquote_splicing_lit] = STATE(2091), + [sym_unquoting_lit] = STATE(2091), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2091), + [sym_package_lit] = STATE(2091), + [sym_include_reader_macro] = STATE(2091), + [sym_complex_num_lit] = STATE(2091), + [aux_sym_dis_expr_repeat1] = STATE(124), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2291), + [sym_comment] = ACTIONS(2291), + [anon_sym_POUND_] = ACTIONS(2072), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2294), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2294), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2077), + [anon_sym_POUND_CARET] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_RPAREN] = ACTIONS(2086), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2431), - [anon_sym_cl] = ACTIONS(2497), - [anon_sym_loop] = ACTIONS(2499), - [anon_sym_defun] = ACTIONS(2439), - [anon_sym_defmacro] = ACTIONS(2439), - [anon_sym_defgeneric] = ACTIONS(2439), - [anon_sym_defmethod] = ACTIONS(2439), - [anon_sym_lambda] = ACTIONS(2441), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), - [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(2294), + [anon_sym_cl] = ACTIONS(2088), + [aux_sym_accumulation_verb_token1] = ACTIONS(2091), + [anon_sym_for] = ACTIONS(2091), + [anon_sym_and] = ACTIONS(2091), + [anon_sym_as] = ACTIONS(2091), + [anon_sym_with] = ACTIONS(2091), + [anon_sym_do] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [anon_sym_until] = ACTIONS(2091), + [anon_sym_repeat] = ACTIONS(2091), + [anon_sym_when] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_unless] = ACTIONS(2091), + [anon_sym_always] = ACTIONS(2091), + [anon_sym_thereis] = ACTIONS(2091), + [anon_sym_never] = ACTIONS(2091), + [anon_sym_else] = ACTIONS(2091), + [anon_sym_finally] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_initially] = ACTIONS(2091), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2296), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [91] = { - [sym__gap] = STATE(1384), - [sym_dis_expr] = STATE(1384), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_defun_keyword] = STATE(668), - [sym_defun_header] = STATE(202), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(201), - [sym__ws] = ACTIONS(2501), - [sym_comment] = ACTIONS(2501), - [anon_sym_POUND_] = ACTIONS(2429), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), - [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(2503), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1994), + [sym_num_lit] = STATE(1994), + [sym_kwd_lit] = STATE(1994), + [sym_str_lit] = STATE(1994), + [sym_char_lit] = STATE(1994), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1994), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1994), + [sym_set_lit] = STATE(1994), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1994), + [sym_splicing_read_cond_lit] = STATE(1994), + [sym_var_quoting_lit] = STATE(1994), + [sym_quoting_lit] = STATE(1994), + [sym_syn_quoting_lit] = STATE(1994), + [sym_unquote_splicing_lit] = STATE(1994), + [sym_unquoting_lit] = STATE(1994), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1994), + [sym_package_lit] = STATE(1994), + [sym_include_reader_macro] = STATE(1994), + [sym_complex_num_lit] = STATE(1994), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2298), + [sym_comment] = ACTIONS(2298), + [anon_sym_POUND_] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2301), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2301), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_POUND_CARET] = ACTIONS(2198), + [anon_sym_LPAREN] = ACTIONS(2201), + [anon_sym_RPAREN] = ACTIONS(2204), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2431), - [anon_sym_cl] = ACTIONS(2505), - [anon_sym_loop] = ACTIONS(2507), - [anon_sym_defun] = ACTIONS(2439), - [anon_sym_defmacro] = ACTIONS(2439), - [anon_sym_defgeneric] = ACTIONS(2439), - [anon_sym_defmethod] = ACTIONS(2439), - [anon_sym_lambda] = ACTIONS(2441), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), - [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(2301), + [anon_sym_cl] = ACTIONS(2206), + [aux_sym_accumulation_verb_token1] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_and] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_with] = ACTIONS(2209), + [anon_sym_do] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_until] = ACTIONS(2209), + [anon_sym_repeat] = ACTIONS(2209), + [anon_sym_when] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_unless] = ACTIONS(2209), + [anon_sym_always] = ACTIONS(2209), + [anon_sym_thereis] = ACTIONS(2209), + [anon_sym_never] = ACTIONS(2209), + [anon_sym_else] = ACTIONS(2209), + [anon_sym_finally] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_initially] = ACTIONS(2209), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2303), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [92] = { - [sym__gap] = STATE(1383), - [sym_dis_expr] = STATE(1383), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_defun_keyword] = STATE(668), - [sym_defun_header] = STATE(176), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(177), - [sym__ws] = ACTIONS(2509), - [sym_comment] = ACTIONS(2509), - [anon_sym_POUND_] = ACTIONS(2429), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), - [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(2511), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2070), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2070), + [sym_set_lit] = STATE(2070), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2305), + [sym_comment] = ACTIONS(2305), + [anon_sym_POUND_] = ACTIONS(2268), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2308), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2308), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2273), + [anon_sym_POUND_CARET] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2282), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2431), - [anon_sym_cl] = ACTIONS(2513), - [anon_sym_loop] = ACTIONS(2515), - [anon_sym_defun] = ACTIONS(2439), - [anon_sym_defmacro] = ACTIONS(2439), - [anon_sym_defgeneric] = ACTIONS(2439), - [anon_sym_defmethod] = ACTIONS(2439), - [anon_sym_lambda] = ACTIONS(2441), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), - [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(2308), + [anon_sym_cl] = ACTIONS(2284), + [aux_sym_accumulation_verb_token1] = ACTIONS(2287), + [anon_sym_for] = ACTIONS(2287), + [anon_sym_and] = ACTIONS(2287), + [anon_sym_as] = ACTIONS(2287), + [anon_sym_with] = ACTIONS(2287), + [anon_sym_do] = ACTIONS(2287), + [anon_sym_while] = ACTIONS(2287), + [anon_sym_until] = ACTIONS(2287), + [anon_sym_repeat] = ACTIONS(2287), + [anon_sym_when] = ACTIONS(2287), + [anon_sym_if] = ACTIONS(2287), + [anon_sym_unless] = ACTIONS(2287), + [anon_sym_always] = ACTIONS(2287), + [anon_sym_thereis] = ACTIONS(2287), + [anon_sym_never] = ACTIONS(2287), + [anon_sym_else] = ACTIONS(2287), + [anon_sym_finally] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2287), + [anon_sym_initially] = ACTIONS(2287), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2310), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [93] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2517), - [sym_comment] = ACTIONS(2517), - [anon_sym_POUND_] = ACTIONS(2520), - [anon_sym_POUND] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(2526), - [aux_sym_num_lit_token1] = ACTIONS(2529), - [anon_sym_COLON] = ACTIONS(2532), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_DQUOTE] = ACTIONS(2538), - [sym_nil_lit] = ACTIONS(2526), - [aux_sym_sym_lit_token1] = ACTIONS(2541), - [anon_sym_CARET] = ACTIONS(2544), - [anon_sym_POUND_CARET] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_RPAREN] = ACTIONS(2553), - [anon_sym_RBRACE] = ACTIONS(2553), - [anon_sym_POUND0A] = ACTIONS(2555), - [anon_sym_POUND0a] = ACTIONS(2555), - [anon_sym_POUND_QMARK] = ACTIONS(2558), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2561), - [anon_sym_POUND_SQUOTE] = ACTIONS(2564), - [anon_sym_SQUOTE] = ACTIONS(2567), - [anon_sym_BQUOTE] = ACTIONS(2570), - [anon_sym_COMMA_AT] = ACTIONS(2573), - [anon_sym_COMMA] = ACTIONS(2576), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1967), + [sym_num_lit] = STATE(1967), + [sym_kwd_lit] = STATE(1967), + [sym_str_lit] = STATE(1967), + [sym_char_lit] = STATE(1967), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1967), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1967), + [sym_set_lit] = STATE(1967), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1967), + [sym_splicing_read_cond_lit] = STATE(1967), + [sym_var_quoting_lit] = STATE(1967), + [sym_quoting_lit] = STATE(1967), + [sym_syn_quoting_lit] = STATE(1967), + [sym_unquote_splicing_lit] = STATE(1967), + [sym_unquoting_lit] = STATE(1967), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1967), + [sym_package_lit] = STATE(1967), + [sym_include_reader_macro] = STATE(1967), + [sym_complex_num_lit] = STATE(1967), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2312), + [sym_comment] = ACTIONS(2312), + [anon_sym_POUND_] = ACTIONS(2315), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2318), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2318), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_POUND_CARET] = ACTIONS(2323), + [anon_sym_LPAREN] = ACTIONS(2326), + [anon_sym_RPAREN] = ACTIONS(2329), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2526), - [anon_sym_cl] = ACTIONS(2579), - [anon_sym_POUNDP] = ACTIONS(2582), - [anon_sym_POUNDp] = ACTIONS(2582), - [sym_self_referential_reader_macro] = ACTIONS(2585), - [anon_sym_POUND_PLUS] = ACTIONS(2588), - [anon_sym_POUND_DASH] = ACTIONS(2588), - [anon_sym_POUNDC] = ACTIONS(2591), - [anon_sym_POUNDc] = ACTIONS(2591), + [sym_fancy_literal] = ACTIONS(2318), + [anon_sym_cl] = ACTIONS(2331), + [aux_sym_accumulation_verb_token1] = ACTIONS(2334), + [anon_sym_for] = ACTIONS(2334), + [anon_sym_and] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(2334), + [anon_sym_with] = ACTIONS(2334), + [anon_sym_do] = ACTIONS(2334), + [anon_sym_while] = ACTIONS(2334), + [anon_sym_until] = ACTIONS(2334), + [anon_sym_repeat] = ACTIONS(2334), + [anon_sym_when] = ACTIONS(2334), + [anon_sym_if] = ACTIONS(2334), + [anon_sym_unless] = ACTIONS(2334), + [anon_sym_always] = ACTIONS(2334), + [anon_sym_thereis] = ACTIONS(2334), + [anon_sym_never] = ACTIONS(2334), + [anon_sym_else] = ACTIONS(2334), + [anon_sym_finally] = ACTIONS(2334), + [anon_sym_return] = ACTIONS(2334), + [anon_sym_initially] = ACTIONS(2334), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2336), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [94] = { - [sym__gap] = STATE(102), - [sym_dis_expr] = STATE(102), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(101), - [sym__ws] = ACTIONS(2594), - [sym_comment] = ACTIONS(2594), - [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), - [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(2596), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), + [sym__gap] = STATE(58), + [sym_dis_expr] = STATE(58), + [sym__form] = STATE(2009), + [sym_num_lit] = STATE(2009), + [sym_kwd_lit] = STATE(2009), + [sym_str_lit] = STATE(2009), + [sym_char_lit] = STATE(2009), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2009), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2009), + [sym_set_lit] = STATE(2009), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2009), + [sym_splicing_read_cond_lit] = STATE(2009), + [sym_var_quoting_lit] = STATE(2009), + [sym_quoting_lit] = STATE(2009), + [sym_syn_quoting_lit] = STATE(2009), + [sym_unquote_splicing_lit] = STATE(2009), + [sym_unquoting_lit] = STATE(2009), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2009), + [sym_package_lit] = STATE(2009), + [sym_include_reader_macro] = STATE(2009), + [sym_complex_num_lit] = STATE(2009), + [aux_sym_dis_expr_repeat1] = STATE(58), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2338), + [sym_comment] = ACTIONS(2338), + [anon_sym_POUND_] = ACTIONS(2341), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2344), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2344), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2346), + [anon_sym_POUND_CARET] = ACTIONS(2349), + [anon_sym_LPAREN] = ACTIONS(2352), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2431), - [anon_sym_cl] = ACTIONS(49), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), - [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(2344), + [anon_sym_cl] = ACTIONS(2357), + [aux_sym_accumulation_verb_token1] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_and] = ACTIONS(2360), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_with] = ACTIONS(2360), + [anon_sym_do] = ACTIONS(2360), + [anon_sym_while] = ACTIONS(2360), + [anon_sym_until] = ACTIONS(2360), + [anon_sym_repeat] = ACTIONS(2360), + [anon_sym_when] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_unless] = ACTIONS(2360), + [anon_sym_always] = ACTIONS(2360), + [anon_sym_thereis] = ACTIONS(2360), + [anon_sym_never] = ACTIONS(2360), + [anon_sym_else] = ACTIONS(2360), + [anon_sym_finally] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_initially] = ACTIONS(2360), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2362), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [95] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), - [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), - [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(2600), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(2016), + [sym_num_lit] = STATE(2016), + [sym_kwd_lit] = STATE(2016), + [sym_str_lit] = STATE(2016), + [sym_char_lit] = STATE(2016), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2016), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2016), + [sym_set_lit] = STATE(2016), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2016), + [sym_splicing_read_cond_lit] = STATE(2016), + [sym_var_quoting_lit] = STATE(2016), + [sym_quoting_lit] = STATE(2016), + [sym_syn_quoting_lit] = STATE(2016), + [sym_unquote_splicing_lit] = STATE(2016), + [sym_unquoting_lit] = STATE(2016), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2016), + [sym_package_lit] = STATE(2016), + [sym_include_reader_macro] = STATE(2016), + [sym_complex_num_lit] = STATE(2016), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2364), + [sym_comment] = ACTIONS(2364), + [anon_sym_POUND_] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2367), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2367), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1086), + [anon_sym_POUND_CARET] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1092), + [anon_sym_RPAREN] = ACTIONS(1095), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2431), - [anon_sym_cl] = ACTIONS(49), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), - [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(2367), + [anon_sym_cl] = ACTIONS(1097), + [aux_sym_accumulation_verb_token1] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_and] = ACTIONS(1100), + [anon_sym_as] = ACTIONS(1100), + [anon_sym_with] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_until] = ACTIONS(1100), + [anon_sym_repeat] = ACTIONS(1100), + [anon_sym_when] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_unless] = ACTIONS(1100), + [anon_sym_always] = ACTIONS(1100), + [anon_sym_thereis] = ACTIONS(1100), + [anon_sym_never] = ACTIONS(1100), + [anon_sym_else] = ACTIONS(1100), + [anon_sym_finally] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_initially] = ACTIONS(1100), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2369), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [96] = { - [sym__gap] = STATE(110), - [sym_dis_expr] = STATE(110), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(112), - [sym__ws] = ACTIONS(2602), - [sym_comment] = ACTIONS(2602), - [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), - [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(2604), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1955), + [sym_num_lit] = STATE(1955), + [sym_kwd_lit] = STATE(1955), + [sym_str_lit] = STATE(1955), + [sym_char_lit] = STATE(1955), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1955), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1955), + [sym_set_lit] = STATE(1955), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1955), + [sym_splicing_read_cond_lit] = STATE(1955), + [sym_var_quoting_lit] = STATE(1955), + [sym_quoting_lit] = STATE(1955), + [sym_syn_quoting_lit] = STATE(1955), + [sym_unquote_splicing_lit] = STATE(1955), + [sym_unquoting_lit] = STATE(1955), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1955), + [sym_package_lit] = STATE(1955), + [sym_include_reader_macro] = STATE(1955), + [sym_complex_num_lit] = STATE(1955), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2371), + [sym_comment] = ACTIONS(2371), + [anon_sym_POUND_] = ACTIONS(2374), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2377), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2377), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_POUND_CARET] = ACTIONS(2382), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_RPAREN] = ACTIONS(2388), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2431), - [anon_sym_cl] = ACTIONS(49), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), - [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(2377), + [anon_sym_cl] = ACTIONS(2390), + [aux_sym_accumulation_verb_token1] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_and] = ACTIONS(2393), + [anon_sym_as] = ACTIONS(2393), + [anon_sym_with] = ACTIONS(2393), + [anon_sym_do] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [anon_sym_until] = ACTIONS(2393), + [anon_sym_repeat] = ACTIONS(2393), + [anon_sym_when] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_unless] = ACTIONS(2393), + [anon_sym_always] = ACTIONS(2393), + [anon_sym_thereis] = ACTIONS(2393), + [anon_sym_never] = ACTIONS(2393), + [anon_sym_else] = ACTIONS(2393), + [anon_sym_finally] = ACTIONS(2393), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_initially] = ACTIONS(2393), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2395), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [97] = { - [sym__gap] = STATE(113), - [sym_dis_expr] = STATE(113), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(113), - [sym__ws] = ACTIONS(2606), - [sym_comment] = ACTIONS(2606), - [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), - [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(2604), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), + [sym__gap] = STATE(62), + [sym_dis_expr] = STATE(62), + [sym__form] = STATE(2022), + [sym_num_lit] = STATE(2022), + [sym_kwd_lit] = STATE(2022), + [sym_str_lit] = STATE(2022), + [sym_char_lit] = STATE(2022), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2022), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2022), + [sym_set_lit] = STATE(2022), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2022), + [sym_splicing_read_cond_lit] = STATE(2022), + [sym_var_quoting_lit] = STATE(2022), + [sym_quoting_lit] = STATE(2022), + [sym_syn_quoting_lit] = STATE(2022), + [sym_unquote_splicing_lit] = STATE(2022), + [sym_unquoting_lit] = STATE(2022), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2022), + [sym_package_lit] = STATE(2022), + [sym_include_reader_macro] = STATE(2022), + [sym_complex_num_lit] = STATE(2022), + [aux_sym_dis_expr_repeat1] = STATE(62), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2397), + [sym_comment] = ACTIONS(2397), + [anon_sym_POUND_] = ACTIONS(2400), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2403), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2403), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2405), + [anon_sym_POUND_CARET] = ACTIONS(2408), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2414), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2431), - [anon_sym_cl] = ACTIONS(49), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), - [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(2403), + [anon_sym_cl] = ACTIONS(2416), + [aux_sym_accumulation_verb_token1] = ACTIONS(2419), + [anon_sym_for] = ACTIONS(2419), + [anon_sym_and] = ACTIONS(2419), + [anon_sym_as] = ACTIONS(2419), + [anon_sym_with] = ACTIONS(2419), + [anon_sym_do] = ACTIONS(2419), + [anon_sym_while] = ACTIONS(2419), + [anon_sym_until] = ACTIONS(2419), + [anon_sym_repeat] = ACTIONS(2419), + [anon_sym_when] = ACTIONS(2419), + [anon_sym_if] = ACTIONS(2419), + [anon_sym_unless] = ACTIONS(2419), + [anon_sym_always] = ACTIONS(2419), + [anon_sym_thereis] = ACTIONS(2419), + [anon_sym_never] = ACTIONS(2419), + [anon_sym_else] = ACTIONS(2419), + [anon_sym_finally] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_initially] = ACTIONS(2419), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2421), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [98] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), - [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), - [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(2608), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(2026), + [sym_num_lit] = STATE(2026), + [sym_kwd_lit] = STATE(2026), + [sym_str_lit] = STATE(2026), + [sym_char_lit] = STATE(2026), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2026), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2026), + [sym_set_lit] = STATE(2026), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2026), + [sym_splicing_read_cond_lit] = STATE(2026), + [sym_var_quoting_lit] = STATE(2026), + [sym_quoting_lit] = STATE(2026), + [sym_syn_quoting_lit] = STATE(2026), + [sym_unquote_splicing_lit] = STATE(2026), + [sym_unquoting_lit] = STATE(2026), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2026), + [sym_package_lit] = STATE(2026), + [sym_include_reader_macro] = STATE(2026), + [sym_complex_num_lit] = STATE(2026), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2423), + [sym_comment] = ACTIONS(2423), + [anon_sym_POUND_] = ACTIONS(2426), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2429), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2429), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2431), + [anon_sym_POUND_CARET] = ACTIONS(2434), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2431), - [anon_sym_cl] = ACTIONS(49), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), - [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(2429), + [anon_sym_cl] = ACTIONS(2442), + [aux_sym_accumulation_verb_token1] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_and] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_with] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_until] = ACTIONS(2445), + [anon_sym_repeat] = ACTIONS(2445), + [anon_sym_when] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_unless] = ACTIONS(2445), + [anon_sym_always] = ACTIONS(2445), + [anon_sym_thereis] = ACTIONS(2445), + [anon_sym_never] = ACTIONS(2445), + [anon_sym_else] = ACTIONS(2445), + [anon_sym_finally] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_initially] = ACTIONS(2445), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2447), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [99] = { - [sym__gap] = STATE(99), - [sym_dis_expr] = STATE(99), - [sym__form] = STATE(1664), - [sym_num_lit] = STATE(1664), - [sym_kwd_lit] = STATE(1664), - [sym_str_lit] = STATE(1664), - [sym_char_lit] = STATE(1664), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1664), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1664), - [sym_set_lit] = STATE(1664), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1664), - [sym_splicing_read_cond_lit] = STATE(1664), - [sym_var_quoting_lit] = STATE(1664), - [sym_quoting_lit] = STATE(1664), - [sym_syn_quoting_lit] = STATE(1664), - [sym_unquote_splicing_lit] = STATE(1664), - [sym_unquoting_lit] = STATE(1664), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1664), - [sym_package_lit] = STATE(1664), - [sym_include_reader_macro] = STATE(1664), - [sym_complex_num_lit] = STATE(1664), - [aux_sym_source_repeat1] = STATE(99), - [aux_sym_list_lit_repeat1] = STATE(2089), - [ts_builtin_sym_end] = ACTIONS(2610), - [sym__ws] = ACTIONS(2612), - [sym_comment] = ACTIONS(2612), - [anon_sym_POUND_] = ACTIONS(2615), - [anon_sym_POUND] = ACTIONS(2618), - [anon_sym_DOT] = ACTIONS(2621), - [aux_sym_num_lit_token1] = ACTIONS(2624), - [anon_sym_COLON] = ACTIONS(2627), - [anon_sym_COLON_COLON] = ACTIONS(2630), - [anon_sym_DQUOTE] = ACTIONS(2633), - [sym_nil_lit] = ACTIONS(2621), - [aux_sym_sym_lit_token1] = ACTIONS(2636), - [anon_sym_CARET] = ACTIONS(2639), - [anon_sym_POUND_CARET] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2645), - [anon_sym_POUND0A] = ACTIONS(2648), - [anon_sym_POUND0a] = ACTIONS(2648), - [anon_sym_POUND_QMARK] = ACTIONS(2651), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2654), - [anon_sym_POUND_SQUOTE] = ACTIONS(2657), - [anon_sym_SQUOTE] = ACTIONS(2660), - [anon_sym_BQUOTE] = ACTIONS(2663), - [anon_sym_COMMA_AT] = ACTIONS(2666), - [anon_sym_COMMA] = ACTIONS(2669), + [sym__gap] = STATE(65), + [sym_dis_expr] = STATE(65), + [sym__form] = STATE(2029), + [sym_num_lit] = STATE(2029), + [sym_kwd_lit] = STATE(2029), + [sym_str_lit] = STATE(2029), + [sym_char_lit] = STATE(2029), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2029), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2029), + [sym_set_lit] = STATE(2029), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2029), + [sym_splicing_read_cond_lit] = STATE(2029), + [sym_var_quoting_lit] = STATE(2029), + [sym_quoting_lit] = STATE(2029), + [sym_syn_quoting_lit] = STATE(2029), + [sym_unquote_splicing_lit] = STATE(2029), + [sym_unquoting_lit] = STATE(2029), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2029), + [sym_package_lit] = STATE(2029), + [sym_include_reader_macro] = STATE(2029), + [sym_complex_num_lit] = STATE(2029), + [aux_sym_dis_expr_repeat1] = STATE(65), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2449), + [sym_comment] = ACTIONS(2449), + [anon_sym_POUND_] = ACTIONS(2452), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2455), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2455), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_POUND_CARET] = ACTIONS(2460), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_RPAREN] = ACTIONS(2466), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2621), - [anon_sym_cl] = ACTIONS(2672), - [anon_sym_POUNDP] = ACTIONS(2675), - [anon_sym_POUNDp] = ACTIONS(2675), - [sym_self_referential_reader_macro] = ACTIONS(2678), - [anon_sym_POUND_PLUS] = ACTIONS(2681), - [anon_sym_POUND_DASH] = ACTIONS(2681), - [anon_sym_POUNDC] = ACTIONS(2684), - [anon_sym_POUNDc] = ACTIONS(2684), + [sym_fancy_literal] = ACTIONS(2455), + [anon_sym_cl] = ACTIONS(2468), + [aux_sym_accumulation_verb_token1] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_and] = ACTIONS(2471), + [anon_sym_as] = ACTIONS(2471), + [anon_sym_with] = ACTIONS(2471), + [anon_sym_do] = ACTIONS(2471), + [anon_sym_while] = ACTIONS(2471), + [anon_sym_until] = ACTIONS(2471), + [anon_sym_repeat] = ACTIONS(2471), + [anon_sym_when] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_unless] = ACTIONS(2471), + [anon_sym_always] = ACTIONS(2471), + [anon_sym_thereis] = ACTIONS(2471), + [anon_sym_never] = ACTIONS(2471), + [anon_sym_else] = ACTIONS(2471), + [anon_sym_finally] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_initially] = ACTIONS(2471), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2473), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), }, [100] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), - [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), - [aux_sym_num_lit_token1] = ACTIONS(15), + [sym__gap] = STATE(67), + [sym_dis_expr] = STATE(67), + [sym__form] = STATE(1947), + [sym_num_lit] = STATE(1947), + [sym_kwd_lit] = STATE(1947), + [sym_str_lit] = STATE(1947), + [sym_char_lit] = STATE(1947), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1947), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1947), + [sym_set_lit] = STATE(1947), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1947), + [sym_splicing_read_cond_lit] = STATE(1947), + [sym_var_quoting_lit] = STATE(1947), + [sym_quoting_lit] = STATE(1947), + [sym_syn_quoting_lit] = STATE(1947), + [sym_unquote_splicing_lit] = STATE(1947), + [sym_unquoting_lit] = STATE(1947), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1947), + [sym_package_lit] = STATE(1947), + [sym_include_reader_macro] = STATE(1947), + [sym_complex_num_lit] = STATE(1947), + [aux_sym_dis_expr_repeat1] = STATE(67), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2475), + [sym_comment] = ACTIONS(2475), + [anon_sym_POUND_] = ACTIONS(2374), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2478), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2478), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_POUND_CARET] = ACTIONS(2382), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_RPAREN] = ACTIONS(2388), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2478), + [anon_sym_cl] = ACTIONS(2390), + [aux_sym_accumulation_verb_token1] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_and] = ACTIONS(2393), + [anon_sym_as] = ACTIONS(2393), + [anon_sym_with] = ACTIONS(2393), + [anon_sym_do] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [anon_sym_until] = ACTIONS(2393), + [anon_sym_repeat] = ACTIONS(2393), + [anon_sym_when] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_unless] = ACTIONS(2393), + [anon_sym_always] = ACTIONS(2393), + [anon_sym_thereis] = ACTIONS(2393), + [anon_sym_never] = ACTIONS(2393), + [anon_sym_else] = ACTIONS(2393), + [anon_sym_finally] = ACTIONS(2393), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_initially] = ACTIONS(2393), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2480), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [101] = { + [sym__gap] = STATE(118), + [sym_dis_expr] = STATE(118), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2097), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2097), + [sym_set_lit] = STATE(2097), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(118), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2482), + [sym_comment] = ACTIONS(2482), + [anon_sym_POUND_] = ACTIONS(2485), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2488), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2488), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(79), + [anon_sym_POUND_CARET] = ACTIONS(82), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_RPAREN] = ACTIONS(88), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2488), + [anon_sym_cl] = ACTIONS(2493), + [aux_sym_accumulation_verb_token1] = ACTIONS(111), + [anon_sym_for] = ACTIONS(111), + [anon_sym_and] = ACTIONS(111), + [anon_sym_as] = ACTIONS(111), + [anon_sym_with] = ACTIONS(111), + [anon_sym_do] = ACTIONS(111), + [anon_sym_while] = ACTIONS(111), + [anon_sym_until] = ACTIONS(111), + [anon_sym_repeat] = ACTIONS(111), + [anon_sym_when] = ACTIONS(111), + [anon_sym_if] = ACTIONS(111), + [anon_sym_unless] = ACTIONS(111), + [anon_sym_always] = ACTIONS(111), + [anon_sym_thereis] = ACTIONS(111), + [anon_sym_never] = ACTIONS(111), + [anon_sym_else] = ACTIONS(111), + [anon_sym_finally] = ACTIONS(111), + [anon_sym_return] = ACTIONS(111), + [anon_sym_initially] = ACTIONS(111), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2496), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [102] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1938), + [sym_num_lit] = STATE(1938), + [sym_kwd_lit] = STATE(1938), + [sym_str_lit] = STATE(1938), + [sym_char_lit] = STATE(1938), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1938), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1938), + [sym_set_lit] = STATE(1938), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1938), + [sym_splicing_read_cond_lit] = STATE(1938), + [sym_var_quoting_lit] = STATE(1938), + [sym_quoting_lit] = STATE(1938), + [sym_syn_quoting_lit] = STATE(1938), + [sym_unquote_splicing_lit] = STATE(1938), + [sym_unquoting_lit] = STATE(1938), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1938), + [sym_package_lit] = STATE(1938), + [sym_include_reader_macro] = STATE(1938), + [sym_complex_num_lit] = STATE(1938), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2498), + [sym_comment] = ACTIONS(2498), + [anon_sym_POUND_] = ACTIONS(2501), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2504), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2504), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2506), + [anon_sym_POUND_CARET] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2512), + [anon_sym_RPAREN] = ACTIONS(2515), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2504), + [anon_sym_cl] = ACTIONS(2517), + [aux_sym_accumulation_verb_token1] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_and] = ACTIONS(2520), + [anon_sym_as] = ACTIONS(2520), + [anon_sym_with] = ACTIONS(2520), + [anon_sym_do] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_until] = ACTIONS(2520), + [anon_sym_repeat] = ACTIONS(2520), + [anon_sym_when] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_unless] = ACTIONS(2520), + [anon_sym_always] = ACTIONS(2520), + [anon_sym_thereis] = ACTIONS(2520), + [anon_sym_never] = ACTIONS(2520), + [anon_sym_else] = ACTIONS(2520), + [anon_sym_finally] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_initially] = ACTIONS(2520), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2522), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [103] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1923), + [sym_num_lit] = STATE(1923), + [sym_kwd_lit] = STATE(1923), + [sym_str_lit] = STATE(1923), + [sym_char_lit] = STATE(1923), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1923), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1923), + [sym_set_lit] = STATE(1923), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1923), + [sym_splicing_read_cond_lit] = STATE(1923), + [sym_var_quoting_lit] = STATE(1923), + [sym_quoting_lit] = STATE(1923), + [sym_syn_quoting_lit] = STATE(1923), + [sym_unquote_splicing_lit] = STATE(1923), + [sym_unquoting_lit] = STATE(1923), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1923), + [sym_package_lit] = STATE(1923), + [sym_include_reader_macro] = STATE(1923), + [sym_complex_num_lit] = STATE(1923), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2524), + [sym_comment] = ACTIONS(2524), + [anon_sym_POUND_] = ACTIONS(2527), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2530), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2530), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2532), + [anon_sym_POUND_CARET] = ACTIONS(2535), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2530), + [anon_sym_cl] = ACTIONS(2543), + [aux_sym_accumulation_verb_token1] = ACTIONS(2546), + [anon_sym_for] = ACTIONS(2546), + [anon_sym_and] = ACTIONS(2546), + [anon_sym_as] = ACTIONS(2546), + [anon_sym_with] = ACTIONS(2546), + [anon_sym_do] = ACTIONS(2546), + [anon_sym_while] = ACTIONS(2546), + [anon_sym_until] = ACTIONS(2546), + [anon_sym_repeat] = ACTIONS(2546), + [anon_sym_when] = ACTIONS(2546), + [anon_sym_if] = ACTIONS(2546), + [anon_sym_unless] = ACTIONS(2546), + [anon_sym_always] = ACTIONS(2546), + [anon_sym_thereis] = ACTIONS(2546), + [anon_sym_never] = ACTIONS(2546), + [anon_sym_else] = ACTIONS(2546), + [anon_sym_finally] = ACTIONS(2546), + [anon_sym_return] = ACTIONS(2546), + [anon_sym_initially] = ACTIONS(2546), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2548), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [104] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(2030), + [sym_num_lit] = STATE(2030), + [sym_kwd_lit] = STATE(2030), + [sym_str_lit] = STATE(2030), + [sym_char_lit] = STATE(2030), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2030), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2030), + [sym_set_lit] = STATE(2030), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2030), + [sym_splicing_read_cond_lit] = STATE(2030), + [sym_var_quoting_lit] = STATE(2030), + [sym_quoting_lit] = STATE(2030), + [sym_syn_quoting_lit] = STATE(2030), + [sym_unquote_splicing_lit] = STATE(2030), + [sym_unquoting_lit] = STATE(2030), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2030), + [sym_package_lit] = STATE(2030), + [sym_include_reader_macro] = STATE(2030), + [sym_complex_num_lit] = STATE(2030), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2550), + [sym_comment] = ACTIONS(2550), + [anon_sym_POUND_] = ACTIONS(2452), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2553), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2553), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_POUND_CARET] = ACTIONS(2460), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_RPAREN] = ACTIONS(2466), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2553), + [anon_sym_cl] = ACTIONS(2468), + [aux_sym_accumulation_verb_token1] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_and] = ACTIONS(2471), + [anon_sym_as] = ACTIONS(2471), + [anon_sym_with] = ACTIONS(2471), + [anon_sym_do] = ACTIONS(2471), + [anon_sym_while] = ACTIONS(2471), + [anon_sym_until] = ACTIONS(2471), + [anon_sym_repeat] = ACTIONS(2471), + [anon_sym_when] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_unless] = ACTIONS(2471), + [anon_sym_always] = ACTIONS(2471), + [anon_sym_thereis] = ACTIONS(2471), + [anon_sym_never] = ACTIONS(2471), + [anon_sym_else] = ACTIONS(2471), + [anon_sym_finally] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_initially] = ACTIONS(2471), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2555), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [105] = { + [sym__gap] = STATE(68), + [sym_dis_expr] = STATE(68), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2034), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2034), + [sym_set_lit] = STATE(2034), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(68), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2557), + [sym_comment] = ACTIONS(2557), + [anon_sym_POUND_] = ACTIONS(2426), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2560), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2560), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2431), + [anon_sym_POUND_CARET] = ACTIONS(2434), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_RPAREN] = ACTIONS(2440), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2560), + [anon_sym_cl] = ACTIONS(2442), + [aux_sym_accumulation_verb_token1] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_and] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_with] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_until] = ACTIONS(2445), + [anon_sym_repeat] = ACTIONS(2445), + [anon_sym_when] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_unless] = ACTIONS(2445), + [anon_sym_always] = ACTIONS(2445), + [anon_sym_thereis] = ACTIONS(2445), + [anon_sym_never] = ACTIONS(2445), + [anon_sym_else] = ACTIONS(2445), + [anon_sym_finally] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_initially] = ACTIONS(2445), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2562), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [106] = { + [sym__gap] = STATE(83), + [sym_dis_expr] = STATE(83), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2069), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2069), + [sym_set_lit] = STATE(2069), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(83), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2564), + [sym_comment] = ACTIONS(2564), + [anon_sym_POUND_] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2567), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2567), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(1848), + [anon_sym_POUND_CARET] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1854), + [anon_sym_RPAREN] = ACTIONS(1857), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2567), + [anon_sym_cl] = ACTIONS(1859), + [aux_sym_accumulation_verb_token1] = ACTIONS(1862), + [anon_sym_for] = ACTIONS(1862), + [anon_sym_and] = ACTIONS(1862), + [anon_sym_as] = ACTIONS(1862), + [anon_sym_with] = ACTIONS(1862), + [anon_sym_do] = ACTIONS(1862), + [anon_sym_while] = ACTIONS(1862), + [anon_sym_until] = ACTIONS(1862), + [anon_sym_repeat] = ACTIONS(1862), + [anon_sym_when] = ACTIONS(1862), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_unless] = ACTIONS(1862), + [anon_sym_always] = ACTIONS(1862), + [anon_sym_thereis] = ACTIONS(1862), + [anon_sym_never] = ACTIONS(1862), + [anon_sym_else] = ACTIONS(1862), + [anon_sym_finally] = ACTIONS(1862), + [anon_sym_return] = ACTIONS(1862), + [anon_sym_initially] = ACTIONS(1862), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2569), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [107] = { + [sym__gap] = STATE(54), + [sym_dis_expr] = STATE(54), + [sym__form] = STATE(1902), + [sym_num_lit] = STATE(1902), + [sym_kwd_lit] = STATE(1902), + [sym_str_lit] = STATE(1902), + [sym_char_lit] = STATE(1902), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1902), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1902), + [sym_set_lit] = STATE(1902), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1902), + [sym_splicing_read_cond_lit] = STATE(1902), + [sym_var_quoting_lit] = STATE(1902), + [sym_quoting_lit] = STATE(1902), + [sym_syn_quoting_lit] = STATE(1902), + [sym_unquote_splicing_lit] = STATE(1902), + [sym_unquoting_lit] = STATE(1902), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1902), + [sym_package_lit] = STATE(1902), + [sym_include_reader_macro] = STATE(1902), + [sym_complex_num_lit] = STATE(1902), + [aux_sym_dis_expr_repeat1] = STATE(54), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2571), + [sym_comment] = ACTIONS(2571), + [anon_sym_POUND_] = ACTIONS(2006), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2574), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2574), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2011), + [anon_sym_POUND_CARET] = ACTIONS(2014), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_RPAREN] = ACTIONS(2020), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2574), + [anon_sym_cl] = ACTIONS(2022), + [aux_sym_accumulation_verb_token1] = ACTIONS(2025), + [anon_sym_for] = ACTIONS(2025), + [anon_sym_and] = ACTIONS(2025), + [anon_sym_as] = ACTIONS(2025), + [anon_sym_with] = ACTIONS(2025), + [anon_sym_do] = ACTIONS(2025), + [anon_sym_while] = ACTIONS(2025), + [anon_sym_until] = ACTIONS(2025), + [anon_sym_repeat] = ACTIONS(2025), + [anon_sym_when] = ACTIONS(2025), + [anon_sym_if] = ACTIONS(2025), + [anon_sym_unless] = ACTIONS(2025), + [anon_sym_always] = ACTIONS(2025), + [anon_sym_thereis] = ACTIONS(2025), + [anon_sym_never] = ACTIONS(2025), + [anon_sym_else] = ACTIONS(2025), + [anon_sym_finally] = ACTIONS(2025), + [anon_sym_return] = ACTIONS(2025), + [anon_sym_initially] = ACTIONS(2025), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2576), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [108] = { + [sym__gap] = STATE(119), + [sym_dis_expr] = STATE(119), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2046), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2046), + [sym_set_lit] = STATE(2046), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(119), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2578), + [sym_comment] = ACTIONS(2578), + [anon_sym_POUND_] = ACTIONS(2581), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2584), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2584), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2586), + [anon_sym_POUND_CARET] = ACTIONS(2589), + [anon_sym_LPAREN] = ACTIONS(2592), + [anon_sym_RPAREN] = ACTIONS(2595), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2584), + [anon_sym_cl] = ACTIONS(2597), + [aux_sym_accumulation_verb_token1] = ACTIONS(2600), + [anon_sym_for] = ACTIONS(2600), + [anon_sym_and] = ACTIONS(2600), + [anon_sym_as] = ACTIONS(2600), + [anon_sym_with] = ACTIONS(2600), + [anon_sym_do] = ACTIONS(2600), + [anon_sym_while] = ACTIONS(2600), + [anon_sym_until] = ACTIONS(2600), + [anon_sym_repeat] = ACTIONS(2600), + [anon_sym_when] = ACTIONS(2600), + [anon_sym_if] = ACTIONS(2600), + [anon_sym_unless] = ACTIONS(2600), + [anon_sym_always] = ACTIONS(2600), + [anon_sym_thereis] = ACTIONS(2600), + [anon_sym_never] = ACTIONS(2600), + [anon_sym_else] = ACTIONS(2600), + [anon_sym_finally] = ACTIONS(2600), + [anon_sym_return] = ACTIONS(2600), + [anon_sym_initially] = ACTIONS(2600), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2602), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [109] = { + [sym__gap] = STATE(39), + [sym_dis_expr] = STATE(39), + [sym__form] = STATE(1937), + [sym_num_lit] = STATE(1937), + [sym_kwd_lit] = STATE(1937), + [sym_str_lit] = STATE(1937), + [sym_char_lit] = STATE(1937), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1937), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1937), + [sym_set_lit] = STATE(1937), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1937), + [sym_splicing_read_cond_lit] = STATE(1937), + [sym_var_quoting_lit] = STATE(1937), + [sym_quoting_lit] = STATE(1937), + [sym_syn_quoting_lit] = STATE(1937), + [sym_unquote_splicing_lit] = STATE(1937), + [sym_unquoting_lit] = STATE(1937), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1937), + [sym_package_lit] = STATE(1937), + [sym_include_reader_macro] = STATE(1937), + [sym_complex_num_lit] = STATE(1937), + [aux_sym_dis_expr_repeat1] = STATE(39), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2604), + [sym_comment] = ACTIONS(2604), + [anon_sym_POUND_] = ACTIONS(2607), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2610), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2610), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(435), + [anon_sym_POUND_CARET] = ACTIONS(438), + [anon_sym_LPAREN] = ACTIONS(2612), + [anon_sym_RPAREN] = ACTIONS(444), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2610), + [anon_sym_cl] = ACTIONS(2615), + [aux_sym_accumulation_verb_token1] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_and] = ACTIONS(451), + [anon_sym_as] = ACTIONS(451), + [anon_sym_with] = ACTIONS(451), + [anon_sym_do] = ACTIONS(451), + [anon_sym_while] = ACTIONS(451), + [anon_sym_until] = ACTIONS(451), + [anon_sym_repeat] = ACTIONS(451), + [anon_sym_when] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_unless] = ACTIONS(451), + [anon_sym_always] = ACTIONS(451), + [anon_sym_thereis] = ACTIONS(451), + [anon_sym_never] = ACTIONS(451), + [anon_sym_else] = ACTIONS(451), + [anon_sym_finally] = ACTIONS(451), + [anon_sym_return] = ACTIONS(451), + [anon_sym_initially] = ACTIONS(451), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2618), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [110] = { + [sym__gap] = STATE(64), + [sym_dis_expr] = STATE(64), + [sym__form] = STATE(1921), + [sym_num_lit] = STATE(1921), + [sym_kwd_lit] = STATE(1921), + [sym_str_lit] = STATE(1921), + [sym_char_lit] = STATE(1921), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1921), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1921), + [sym_set_lit] = STATE(1921), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1921), + [sym_splicing_read_cond_lit] = STATE(1921), + [sym_var_quoting_lit] = STATE(1921), + [sym_quoting_lit] = STATE(1921), + [sym_syn_quoting_lit] = STATE(1921), + [sym_unquote_splicing_lit] = STATE(1921), + [sym_unquoting_lit] = STATE(1921), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1921), + [sym_package_lit] = STATE(1921), + [sym_include_reader_macro] = STATE(1921), + [sym_complex_num_lit] = STATE(1921), + [aux_sym_dis_expr_repeat1] = STATE(64), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2620), + [sym_comment] = ACTIONS(2620), + [anon_sym_POUND_] = ACTIONS(2527), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2623), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2623), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2532), + [anon_sym_POUND_CARET] = ACTIONS(2535), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2623), + [anon_sym_cl] = ACTIONS(2543), + [aux_sym_accumulation_verb_token1] = ACTIONS(2546), + [anon_sym_for] = ACTIONS(2546), + [anon_sym_and] = ACTIONS(2546), + [anon_sym_as] = ACTIONS(2546), + [anon_sym_with] = ACTIONS(2546), + [anon_sym_do] = ACTIONS(2546), + [anon_sym_while] = ACTIONS(2546), + [anon_sym_until] = ACTIONS(2546), + [anon_sym_repeat] = ACTIONS(2546), + [anon_sym_when] = ACTIONS(2546), + [anon_sym_if] = ACTIONS(2546), + [anon_sym_unless] = ACTIONS(2546), + [anon_sym_always] = ACTIONS(2546), + [anon_sym_thereis] = ACTIONS(2546), + [anon_sym_never] = ACTIONS(2546), + [anon_sym_else] = ACTIONS(2546), + [anon_sym_finally] = ACTIONS(2546), + [anon_sym_return] = ACTIONS(2546), + [anon_sym_initially] = ACTIONS(2546), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2625), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [111] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1912), + [sym_num_lit] = STATE(1912), + [sym_kwd_lit] = STATE(1912), + [sym_str_lit] = STATE(1912), + [sym_char_lit] = STATE(1912), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1912), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1912), + [sym_set_lit] = STATE(1912), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1912), + [sym_splicing_read_cond_lit] = STATE(1912), + [sym_var_quoting_lit] = STATE(1912), + [sym_quoting_lit] = STATE(1912), + [sym_syn_quoting_lit] = STATE(1912), + [sym_unquote_splicing_lit] = STATE(1912), + [sym_unquoting_lit] = STATE(1912), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1912), + [sym_package_lit] = STATE(1912), + [sym_include_reader_macro] = STATE(1912), + [sym_complex_num_lit] = STATE(1912), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2627), + [sym_comment] = ACTIONS(2627), + [anon_sym_POUND_] = ACTIONS(2630), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2633), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2633), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2635), + [anon_sym_POUND_CARET] = ACTIONS(2638), + [anon_sym_LPAREN] = ACTIONS(2641), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2633), + [anon_sym_cl] = ACTIONS(2646), + [aux_sym_accumulation_verb_token1] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_and] = ACTIONS(2649), + [anon_sym_as] = ACTIONS(2649), + [anon_sym_with] = ACTIONS(2649), + [anon_sym_do] = ACTIONS(2649), + [anon_sym_while] = ACTIONS(2649), + [anon_sym_until] = ACTIONS(2649), + [anon_sym_repeat] = ACTIONS(2649), + [anon_sym_when] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_unless] = ACTIONS(2649), + [anon_sym_always] = ACTIONS(2649), + [anon_sym_thereis] = ACTIONS(2649), + [anon_sym_never] = ACTIONS(2649), + [anon_sym_else] = ACTIONS(2649), + [anon_sym_finally] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_initially] = ACTIONS(2649), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2651), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [112] = { + [sym__gap] = STATE(72), + [sym_dis_expr] = STATE(72), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2040), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2040), + [sym_set_lit] = STATE(2040), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(72), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2653), + [sym_comment] = ACTIONS(2653), + [anon_sym_POUND_] = ACTIONS(2656), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2659), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2659), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2661), + [anon_sym_POUND_CARET] = ACTIONS(2664), + [anon_sym_LPAREN] = ACTIONS(2667), + [anon_sym_RPAREN] = ACTIONS(2670), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2659), + [anon_sym_cl] = ACTIONS(2672), + [aux_sym_accumulation_verb_token1] = ACTIONS(2675), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_and] = ACTIONS(2675), + [anon_sym_as] = ACTIONS(2675), + [anon_sym_with] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_until] = ACTIONS(2675), + [anon_sym_repeat] = ACTIONS(2675), + [anon_sym_when] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_unless] = ACTIONS(2675), + [anon_sym_always] = ACTIONS(2675), + [anon_sym_thereis] = ACTIONS(2675), + [anon_sym_never] = ACTIONS(2675), + [anon_sym_else] = ACTIONS(2675), + [anon_sym_finally] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_initially] = ACTIONS(2675), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2677), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [113] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(2041), + [sym_num_lit] = STATE(2041), + [sym_kwd_lit] = STATE(2041), + [sym_str_lit] = STATE(2041), + [sym_char_lit] = STATE(2041), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2041), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2041), + [sym_set_lit] = STATE(2041), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2041), + [sym_splicing_read_cond_lit] = STATE(2041), + [sym_var_quoting_lit] = STATE(2041), + [sym_quoting_lit] = STATE(2041), + [sym_syn_quoting_lit] = STATE(2041), + [sym_unquote_splicing_lit] = STATE(2041), + [sym_unquoting_lit] = STATE(2041), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2041), + [sym_package_lit] = STATE(2041), + [sym_include_reader_macro] = STATE(2041), + [sym_complex_num_lit] = STATE(2041), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2679), + [sym_comment] = ACTIONS(2679), + [anon_sym_POUND_] = ACTIONS(2682), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2685), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2685), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_POUND_CARET] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_RPAREN] = ACTIONS(2696), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2685), + [anon_sym_cl] = ACTIONS(2698), + [aux_sym_accumulation_verb_token1] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_and] = ACTIONS(2701), + [anon_sym_as] = ACTIONS(2701), + [anon_sym_with] = ACTIONS(2701), + [anon_sym_do] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_until] = ACTIONS(2701), + [anon_sym_repeat] = ACTIONS(2701), + [anon_sym_when] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_unless] = ACTIONS(2701), + [anon_sym_always] = ACTIONS(2701), + [anon_sym_thereis] = ACTIONS(2701), + [anon_sym_never] = ACTIONS(2701), + [anon_sym_else] = ACTIONS(2701), + [anon_sym_finally] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_initially] = ACTIONS(2701), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2703), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [114] = { + [sym__gap] = STATE(56), + [sym_dis_expr] = STATE(56), + [sym__form] = STATE(1910), + [sym_num_lit] = STATE(1910), + [sym_kwd_lit] = STATE(1910), + [sym_str_lit] = STATE(1910), + [sym_char_lit] = STATE(1910), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1910), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1910), + [sym_set_lit] = STATE(1910), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1910), + [sym_splicing_read_cond_lit] = STATE(1910), + [sym_var_quoting_lit] = STATE(1910), + [sym_quoting_lit] = STATE(1910), + [sym_syn_quoting_lit] = STATE(1910), + [sym_unquote_splicing_lit] = STATE(1910), + [sym_unquoting_lit] = STATE(1910), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1910), + [sym_package_lit] = STATE(1910), + [sym_include_reader_macro] = STATE(1910), + [sym_complex_num_lit] = STATE(1910), + [aux_sym_dis_expr_repeat1] = STATE(56), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2705), + [sym_comment] = ACTIONS(2705), + [anon_sym_POUND_] = ACTIONS(2630), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2708), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2708), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2635), + [anon_sym_POUND_CARET] = ACTIONS(2638), + [anon_sym_LPAREN] = ACTIONS(2641), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2708), + [anon_sym_cl] = ACTIONS(2646), + [aux_sym_accumulation_verb_token1] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_and] = ACTIONS(2649), + [anon_sym_as] = ACTIONS(2649), + [anon_sym_with] = ACTIONS(2649), + [anon_sym_do] = ACTIONS(2649), + [anon_sym_while] = ACTIONS(2649), + [anon_sym_until] = ACTIONS(2649), + [anon_sym_repeat] = ACTIONS(2649), + [anon_sym_when] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_unless] = ACTIONS(2649), + [anon_sym_always] = ACTIONS(2649), + [anon_sym_thereis] = ACTIONS(2649), + [anon_sym_never] = ACTIONS(2649), + [anon_sym_else] = ACTIONS(2649), + [anon_sym_finally] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_initially] = ACTIONS(2649), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2710), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [115] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1906), + [sym_num_lit] = STATE(1906), + [sym_kwd_lit] = STATE(1906), + [sym_str_lit] = STATE(1906), + [sym_char_lit] = STATE(1906), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1906), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1906), + [sym_set_lit] = STATE(1906), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1906), + [sym_splicing_read_cond_lit] = STATE(1906), + [sym_var_quoting_lit] = STATE(1906), + [sym_quoting_lit] = STATE(1906), + [sym_syn_quoting_lit] = STATE(1906), + [sym_unquote_splicing_lit] = STATE(1906), + [sym_unquoting_lit] = STATE(1906), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1906), + [sym_package_lit] = STATE(1906), + [sym_include_reader_macro] = STATE(1906), + [sym_complex_num_lit] = STATE(1906), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2712), + [sym_comment] = ACTIONS(2712), + [anon_sym_POUND_] = ACTIONS(2715), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2718), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2718), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2720), + [anon_sym_POUND_CARET] = ACTIONS(2723), + [anon_sym_LPAREN] = ACTIONS(2726), + [anon_sym_RPAREN] = ACTIONS(2729), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2718), + [anon_sym_cl] = ACTIONS(2731), + [aux_sym_accumulation_verb_token1] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2734), + [anon_sym_and] = ACTIONS(2734), + [anon_sym_as] = ACTIONS(2734), + [anon_sym_with] = ACTIONS(2734), + [anon_sym_do] = ACTIONS(2734), + [anon_sym_while] = ACTIONS(2734), + [anon_sym_until] = ACTIONS(2734), + [anon_sym_repeat] = ACTIONS(2734), + [anon_sym_when] = ACTIONS(2734), + [anon_sym_if] = ACTIONS(2734), + [anon_sym_unless] = ACTIONS(2734), + [anon_sym_always] = ACTIONS(2734), + [anon_sym_thereis] = ACTIONS(2734), + [anon_sym_never] = ACTIONS(2734), + [anon_sym_else] = ACTIONS(2734), + [anon_sym_finally] = ACTIONS(2734), + [anon_sym_return] = ACTIONS(2734), + [anon_sym_initially] = ACTIONS(2734), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2736), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [116] = { + [sym__gap] = STATE(69), + [sym_dis_expr] = STATE(69), + [sym__form] = STATE(1959), + [sym_num_lit] = STATE(1959), + [sym_kwd_lit] = STATE(1959), + [sym_str_lit] = STATE(1959), + [sym_char_lit] = STATE(1959), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1959), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1959), + [sym_set_lit] = STATE(1959), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1959), + [sym_splicing_read_cond_lit] = STATE(1959), + [sym_var_quoting_lit] = STATE(1959), + [sym_quoting_lit] = STATE(1959), + [sym_syn_quoting_lit] = STATE(1959), + [sym_unquote_splicing_lit] = STATE(1959), + [sym_unquoting_lit] = STATE(1959), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1959), + [sym_package_lit] = STATE(1959), + [sym_include_reader_macro] = STATE(1959), + [sym_complex_num_lit] = STATE(1959), + [aux_sym_dis_expr_repeat1] = STATE(69), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2738), + [sym_comment] = ACTIONS(2738), + [anon_sym_POUND_] = ACTIONS(2741), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2744), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2744), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2746), + [anon_sym_POUND_CARET] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_RPAREN] = ACTIONS(2755), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2744), + [anon_sym_cl] = ACTIONS(2757), + [aux_sym_accumulation_verb_token1] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2760), + [anon_sym_and] = ACTIONS(2760), + [anon_sym_as] = ACTIONS(2760), + [anon_sym_with] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(2760), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_until] = ACTIONS(2760), + [anon_sym_repeat] = ACTIONS(2760), + [anon_sym_when] = ACTIONS(2760), + [anon_sym_if] = ACTIONS(2760), + [anon_sym_unless] = ACTIONS(2760), + [anon_sym_always] = ACTIONS(2760), + [anon_sym_thereis] = ACTIONS(2760), + [anon_sym_never] = ACTIONS(2760), + [anon_sym_else] = ACTIONS(2760), + [anon_sym_finally] = ACTIONS(2760), + [anon_sym_return] = ACTIONS(2760), + [anon_sym_initially] = ACTIONS(2760), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2762), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [117] = { + [sym__gap] = STATE(75), + [sym_dis_expr] = STATE(75), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2052), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2052), + [sym_set_lit] = STATE(2052), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(75), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2764), + [sym_comment] = ACTIONS(2764), + [anon_sym_POUND_] = ACTIONS(2767), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2770), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2770), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_POUND_CARET] = ACTIONS(2775), + [anon_sym_LPAREN] = ACTIONS(2778), + [anon_sym_RPAREN] = ACTIONS(2781), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2770), + [anon_sym_cl] = ACTIONS(2783), + [aux_sym_accumulation_verb_token1] = ACTIONS(2786), + [anon_sym_for] = ACTIONS(2786), + [anon_sym_and] = ACTIONS(2786), + [anon_sym_as] = ACTIONS(2786), + [anon_sym_with] = ACTIONS(2786), + [anon_sym_do] = ACTIONS(2786), + [anon_sym_while] = ACTIONS(2786), + [anon_sym_until] = ACTIONS(2786), + [anon_sym_repeat] = ACTIONS(2786), + [anon_sym_when] = ACTIONS(2786), + [anon_sym_if] = ACTIONS(2786), + [anon_sym_unless] = ACTIONS(2786), + [anon_sym_always] = ACTIONS(2786), + [anon_sym_thereis] = ACTIONS(2786), + [anon_sym_never] = ACTIONS(2786), + [anon_sym_else] = ACTIONS(2786), + [anon_sym_finally] = ACTIONS(2786), + [anon_sym_return] = ACTIONS(2786), + [anon_sym_initially] = ACTIONS(2786), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2788), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [118] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2044), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2044), + [sym_set_lit] = STATE(2044), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2790), + [sym_comment] = ACTIONS(2790), + [anon_sym_POUND_] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2793), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2793), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2044), + [anon_sym_POUND_CARET] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2050), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2793), + [anon_sym_cl] = ACTIONS(2055), + [aux_sym_accumulation_verb_token1] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_and] = ACTIONS(2058), + [anon_sym_as] = ACTIONS(2058), + [anon_sym_with] = ACTIONS(2058), + [anon_sym_do] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [anon_sym_until] = ACTIONS(2058), + [anon_sym_repeat] = ACTIONS(2058), + [anon_sym_when] = ACTIONS(2058), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_unless] = ACTIONS(2058), + [anon_sym_always] = ACTIONS(2058), + [anon_sym_thereis] = ACTIONS(2058), + [anon_sym_never] = ACTIONS(2058), + [anon_sym_else] = ACTIONS(2058), + [anon_sym_finally] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_initially] = ACTIONS(2058), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2795), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [119] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2058), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2058), + [sym_set_lit] = STATE(2058), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2797), + [sym_comment] = ACTIONS(2797), + [anon_sym_POUND_] = ACTIONS(2767), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2800), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2800), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_POUND_CARET] = ACTIONS(2775), + [anon_sym_LPAREN] = ACTIONS(2778), + [anon_sym_RPAREN] = ACTIONS(2781), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2800), + [anon_sym_cl] = ACTIONS(2783), + [aux_sym_accumulation_verb_token1] = ACTIONS(2786), + [anon_sym_for] = ACTIONS(2786), + [anon_sym_and] = ACTIONS(2786), + [anon_sym_as] = ACTIONS(2786), + [anon_sym_with] = ACTIONS(2786), + [anon_sym_do] = ACTIONS(2786), + [anon_sym_while] = ACTIONS(2786), + [anon_sym_until] = ACTIONS(2786), + [anon_sym_repeat] = ACTIONS(2786), + [anon_sym_when] = ACTIONS(2786), + [anon_sym_if] = ACTIONS(2786), + [anon_sym_unless] = ACTIONS(2786), + [anon_sym_always] = ACTIONS(2786), + [anon_sym_thereis] = ACTIONS(2786), + [anon_sym_never] = ACTIONS(2786), + [anon_sym_else] = ACTIONS(2786), + [anon_sym_finally] = ACTIONS(2786), + [anon_sym_return] = ACTIONS(2786), + [anon_sym_initially] = ACTIONS(2786), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2802), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [120] = { + [sym__gap] = STATE(79), + [sym_dis_expr] = STATE(79), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2062), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2062), + [sym_set_lit] = STATE(2062), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(79), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2804), + [sym_comment] = ACTIONS(2804), + [anon_sym_POUND_] = ACTIONS(2682), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2807), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2807), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_POUND_CARET] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_RPAREN] = ACTIONS(2696), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2807), + [anon_sym_cl] = ACTIONS(2698), + [aux_sym_accumulation_verb_token1] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_and] = ACTIONS(2701), + [anon_sym_as] = ACTIONS(2701), + [anon_sym_with] = ACTIONS(2701), + [anon_sym_do] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_until] = ACTIONS(2701), + [anon_sym_repeat] = ACTIONS(2701), + [anon_sym_when] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_unless] = ACTIONS(2701), + [anon_sym_always] = ACTIONS(2701), + [anon_sym_thereis] = ACTIONS(2701), + [anon_sym_never] = ACTIONS(2701), + [anon_sym_else] = ACTIONS(2701), + [anon_sym_finally] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_initially] = ACTIONS(2701), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2809), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [121] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(1999), + [sym_num_lit] = STATE(1999), + [sym_kwd_lit] = STATE(1999), + [sym_str_lit] = STATE(1999), + [sym_char_lit] = STATE(1999), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1999), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(1999), + [sym_set_lit] = STATE(1999), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(1999), + [sym_splicing_read_cond_lit] = STATE(1999), + [sym_var_quoting_lit] = STATE(1999), + [sym_quoting_lit] = STATE(1999), + [sym_syn_quoting_lit] = STATE(1999), + [sym_unquote_splicing_lit] = STATE(1999), + [sym_unquoting_lit] = STATE(1999), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(1999), + [sym_package_lit] = STATE(1999), + [sym_include_reader_macro] = STATE(1999), + [sym_complex_num_lit] = STATE(1999), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2811), + [sym_comment] = ACTIONS(2811), + [anon_sym_POUND_] = ACTIONS(2814), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2817), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2817), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2819), + [anon_sym_POUND_CARET] = ACTIONS(2822), + [anon_sym_LPAREN] = ACTIONS(2825), + [anon_sym_RPAREN] = ACTIONS(2828), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2817), + [anon_sym_cl] = ACTIONS(2830), + [aux_sym_accumulation_verb_token1] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_and] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_with] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_until] = ACTIONS(2833), + [anon_sym_repeat] = ACTIONS(2833), + [anon_sym_when] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_unless] = ACTIONS(2833), + [anon_sym_always] = ACTIONS(2833), + [anon_sym_thereis] = ACTIONS(2833), + [anon_sym_never] = ACTIONS(2833), + [anon_sym_else] = ACTIONS(2833), + [anon_sym_finally] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_initially] = ACTIONS(2833), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2835), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [122] = { + [sym__gap] = STATE(92), + [sym_dis_expr] = STATE(92), + [sym__form] = STATE(2003), + [sym_num_lit] = STATE(2003), + [sym_kwd_lit] = STATE(2003), + [sym_str_lit] = STATE(2003), + [sym_char_lit] = STATE(2003), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2003), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2003), + [sym_set_lit] = STATE(2003), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2003), + [sym_splicing_read_cond_lit] = STATE(2003), + [sym_var_quoting_lit] = STATE(2003), + [sym_quoting_lit] = STATE(2003), + [sym_syn_quoting_lit] = STATE(2003), + [sym_unquote_splicing_lit] = STATE(2003), + [sym_unquoting_lit] = STATE(2003), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2003), + [sym_package_lit] = STATE(2003), + [sym_include_reader_macro] = STATE(2003), + [sym_complex_num_lit] = STATE(2003), + [aux_sym_dis_expr_repeat1] = STATE(92), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2837), + [sym_comment] = ACTIONS(2837), + [anon_sym_POUND_] = ACTIONS(2814), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2840), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2840), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2819), + [anon_sym_POUND_CARET] = ACTIONS(2822), + [anon_sym_LPAREN] = ACTIONS(2825), + [anon_sym_RPAREN] = ACTIONS(2828), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2840), + [anon_sym_cl] = ACTIONS(2830), + [aux_sym_accumulation_verb_token1] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_and] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_with] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_until] = ACTIONS(2833), + [anon_sym_repeat] = ACTIONS(2833), + [anon_sym_when] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_unless] = ACTIONS(2833), + [anon_sym_always] = ACTIONS(2833), + [anon_sym_thereis] = ACTIONS(2833), + [anon_sym_never] = ACTIONS(2833), + [anon_sym_else] = ACTIONS(2833), + [anon_sym_finally] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_initially] = ACTIONS(2833), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2842), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [123] = { + [sym__gap] = STATE(126), + [sym_dis_expr] = STATE(126), + [sym__form] = STATE(2018), + [sym_num_lit] = STATE(2018), + [sym_kwd_lit] = STATE(2018), + [sym_str_lit] = STATE(2018), + [sym_char_lit] = STATE(2018), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2018), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2018), + [sym_set_lit] = STATE(2018), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2018), + [sym_splicing_read_cond_lit] = STATE(2018), + [sym_var_quoting_lit] = STATE(2018), + [sym_quoting_lit] = STATE(2018), + [sym_syn_quoting_lit] = STATE(2018), + [sym_unquote_splicing_lit] = STATE(2018), + [sym_unquoting_lit] = STATE(2018), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2018), + [sym_package_lit] = STATE(2018), + [sym_include_reader_macro] = STATE(2018), + [sym_complex_num_lit] = STATE(2018), + [aux_sym_dis_expr_repeat1] = STATE(126), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2844), + [sym_comment] = ACTIONS(2844), + [anon_sym_POUND_] = ACTIONS(2847), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2850), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2850), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2852), + [anon_sym_POUND_CARET] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2858), + [anon_sym_RPAREN] = ACTIONS(2861), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2850), + [anon_sym_cl] = ACTIONS(2863), + [aux_sym_accumulation_verb_token1] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2866), + [anon_sym_and] = ACTIONS(2866), + [anon_sym_as] = ACTIONS(2866), + [anon_sym_with] = ACTIONS(2866), + [anon_sym_do] = ACTIONS(2866), + [anon_sym_while] = ACTIONS(2866), + [anon_sym_until] = ACTIONS(2866), + [anon_sym_repeat] = ACTIONS(2866), + [anon_sym_when] = ACTIONS(2866), + [anon_sym_if] = ACTIONS(2866), + [anon_sym_unless] = ACTIONS(2866), + [anon_sym_always] = ACTIONS(2866), + [anon_sym_thereis] = ACTIONS(2866), + [anon_sym_never] = ACTIONS(2866), + [anon_sym_else] = ACTIONS(2866), + [anon_sym_finally] = ACTIONS(2866), + [anon_sym_return] = ACTIONS(2866), + [anon_sym_initially] = ACTIONS(2866), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2868), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [124] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [sym__form] = STATE(2010), + [sym_num_lit] = STATE(2010), + [sym_kwd_lit] = STATE(2010), + [sym_str_lit] = STATE(2010), + [sym_char_lit] = STATE(2010), + [sym_sym_lit] = STATE(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2010), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2010), + [sym_set_lit] = STATE(2010), + [sym__bare_set_lit] = STATE(2168), + [sym_read_cond_lit] = STATE(2010), + [sym_splicing_read_cond_lit] = STATE(2010), + [sym_var_quoting_lit] = STATE(2010), + [sym_quoting_lit] = STATE(2010), + [sym_syn_quoting_lit] = STATE(2010), + [sym_unquote_splicing_lit] = STATE(2010), + [sym_unquoting_lit] = STATE(2010), + [sym_defun] = STATE(2169), + [sym_loop_macro] = STATE(2169), + [sym_path_lit] = STATE(2010), + [sym_package_lit] = STATE(2010), + [sym_include_reader_macro] = STATE(2010), + [sym_complex_num_lit] = STATE(2010), + [aux_sym_dis_expr_repeat1] = STATE(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2870), + [sym_comment] = ACTIONS(2870), + [anon_sym_POUND_] = ACTIONS(2741), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2873), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2873), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2746), + [anon_sym_POUND_CARET] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_RPAREN] = ACTIONS(2755), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2873), + [anon_sym_cl] = ACTIONS(2757), + [aux_sym_accumulation_verb_token1] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2760), + [anon_sym_and] = ACTIONS(2760), + [anon_sym_as] = ACTIONS(2760), + [anon_sym_with] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(2760), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_until] = ACTIONS(2760), + [anon_sym_repeat] = ACTIONS(2760), + [anon_sym_when] = ACTIONS(2760), + [anon_sym_if] = ACTIONS(2760), + [anon_sym_unless] = ACTIONS(2760), + [anon_sym_always] = ACTIONS(2760), + [anon_sym_thereis] = ACTIONS(2760), + [anon_sym_never] = ACTIONS(2760), + [anon_sym_else] = ACTIONS(2760), + [anon_sym_finally] = ACTIONS(2760), + [anon_sym_return] = ACTIONS(2760), + [anon_sym_initially] = ACTIONS(2760), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2875), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [125] = { + [sym__gap] = STATE(81), + [sym_dis_expr] = STATE(81), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2065), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2065), + [sym_set_lit] = STATE(2065), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(81), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2877), + [sym_comment] = ACTIONS(2877), + [anon_sym_POUND_] = ACTIONS(2880), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2883), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2883), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2885), + [anon_sym_POUND_CARET] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2891), + [anon_sym_RPAREN] = ACTIONS(2894), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2883), + [anon_sym_cl] = ACTIONS(2896), + [aux_sym_accumulation_verb_token1] = ACTIONS(2899), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_and] = ACTIONS(2899), + [anon_sym_as] = ACTIONS(2899), + [anon_sym_with] = ACTIONS(2899), + [anon_sym_do] = ACTIONS(2899), + [anon_sym_while] = ACTIONS(2899), + [anon_sym_until] = ACTIONS(2899), + [anon_sym_repeat] = ACTIONS(2899), + [anon_sym_when] = ACTIONS(2899), + [anon_sym_if] = ACTIONS(2899), + [anon_sym_unless] = ACTIONS(2899), + [anon_sym_always] = ACTIONS(2899), + [anon_sym_thereis] = ACTIONS(2899), + [anon_sym_never] = ACTIONS(2899), + [anon_sym_else] = ACTIONS(2899), + [anon_sym_finally] = ACTIONS(2899), + [anon_sym_return] = ACTIONS(2899), + [anon_sym_initially] = ACTIONS(2899), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2901), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [126] = { + [sym__gap] = STATE(834), + [sym_dis_expr] = STATE(834), + [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(1874), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2066), + [sym__bare_list_lit] = STATE(2169), + [sym_vec_lit] = STATE(2066), + [sym_set_lit] = STATE(2066), + [sym__bare_set_lit] = STATE(2168), + [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(2169), + [sym_loop_macro] = STATE(2169), + [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(834), + [aux_sym_list_lit_repeat1] = STATE(2328), + [sym__ws] = ACTIONS(2903), + [sym_comment] = ACTIONS(2903), + [anon_sym_POUND_] = ACTIONS(2880), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(2906), + [aux_sym_num_lit_token1] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(139), + [sym_nil_lit] = ACTIONS(2906), + [aux_sym_sym_lit_token1] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(2885), + [anon_sym_POUND_CARET] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2891), + [anon_sym_RPAREN] = ACTIONS(2894), + [anon_sym_POUND0A] = ACTIONS(158), + [anon_sym_POUND0a] = ACTIONS(158), + [anon_sym_POUND_QMARK] = ACTIONS(160), + [anon_sym_POUND_QMARK_AT] = ACTIONS(162), + [anon_sym_POUND_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(168), + [anon_sym_COMMA_AT] = ACTIONS(170), + [anon_sym_COMMA] = ACTIONS(172), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2906), + [anon_sym_cl] = ACTIONS(2896), + [aux_sym_accumulation_verb_token1] = ACTIONS(2899), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_and] = ACTIONS(2899), + [anon_sym_as] = ACTIONS(2899), + [anon_sym_with] = ACTIONS(2899), + [anon_sym_do] = ACTIONS(2899), + [anon_sym_while] = ACTIONS(2899), + [anon_sym_until] = ACTIONS(2899), + [anon_sym_repeat] = ACTIONS(2899), + [anon_sym_when] = ACTIONS(2899), + [anon_sym_if] = ACTIONS(2899), + [anon_sym_unless] = ACTIONS(2899), + [anon_sym_always] = ACTIONS(2899), + [anon_sym_thereis] = ACTIONS(2899), + [anon_sym_never] = ACTIONS(2899), + [anon_sym_else] = ACTIONS(2899), + [anon_sym_finally] = ACTIONS(2899), + [anon_sym_return] = ACTIONS(2899), + [anon_sym_initially] = ACTIONS(2899), + [anon_sym_POUNDP] = ACTIONS(183), + [anon_sym_POUNDp] = ACTIONS(183), + [sym_self_referential_reader_macro] = ACTIONS(2908), + [anon_sym_POUND_PLUS] = ACTIONS(187), + [anon_sym_POUND_DASH] = ACTIONS(187), + [anon_sym_POUNDC] = ACTIONS(189), + [anon_sym_POUNDc] = ACTIONS(189), + }, + [127] = { + [sym__gap] = STATE(137), + [sym_dis_expr] = STATE(137), + [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(2304), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2285), + [sym__bare_list_lit] = STATE(1844), + [sym_vec_lit] = STATE(2285), + [sym_set_lit] = STATE(2285), + [sym__bare_set_lit] = STATE(1843), + [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(1844), + [sym_for_clause_word] = STATE(293), + [sym__for_part] = STATE(1322), + [sym_loop_macro] = STATE(1844), + [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(137), + [aux_sym_list_lit_repeat1] = STATE(2308), + [aux_sym_for_clause_repeat1] = STATE(1101), + [sym__ws] = ACTIONS(2910), + [sym_comment] = ACTIONS(2910), + [anon_sym_POUND_] = ACTIONS(2912), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2916), + [aux_sym_num_lit_token1] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2924), + [sym_nil_lit] = ACTIONS(2916), + [aux_sym_sym_lit_token1] = ACTIONS(2926), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2928), + [anon_sym_POUND0A] = ACTIONS(2930), + [anon_sym_POUND0a] = ACTIONS(2930), + [anon_sym_POUND_QMARK] = ACTIONS(2932), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2934), + [anon_sym_POUND_SQUOTE] = ACTIONS(2936), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_BQUOTE] = ACTIONS(2940), + [anon_sym_COMMA_AT] = ACTIONS(2942), + [anon_sym_COMMA] = ACTIONS(2944), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2916), + [anon_sym_cl] = ACTIONS(2946), + [anon_sym_in] = ACTIONS(2948), + [anon_sym_across] = ACTIONS(2948), + [anon_sym_being] = ACTIONS(2948), + [anon_sym_using] = ACTIONS(2948), + [aux_sym_for_clause_word_token1] = ACTIONS(2950), + [anon_sym_below] = ACTIONS(2948), + [anon_sym_above] = ACTIONS(2948), + [anon_sym_from] = ACTIONS(2948), + [anon_sym_to] = ACTIONS(2948), + [anon_sym_upto] = ACTIONS(2948), + [anon_sym_downto] = ACTIONS(2948), + [anon_sym_downfrom] = ACTIONS(2948), + [anon_sym_on] = ACTIONS(2948), + [anon_sym_by] = ACTIONS(2948), + [anon_sym_then] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2948), + [anon_sym_POUNDP] = ACTIONS(2952), + [anon_sym_POUNDp] = ACTIONS(2952), + [sym_self_referential_reader_macro] = ACTIONS(2954), + [anon_sym_POUND_PLUS] = ACTIONS(2956), + [anon_sym_POUND_DASH] = ACTIONS(2956), + [anon_sym_POUNDC] = ACTIONS(2958), + [anon_sym_POUNDc] = ACTIONS(2958), + }, + [128] = { + [sym__gap] = STATE(133), + [sym_dis_expr] = STATE(133), + [sym__form] = STATE(2283), + [sym_num_lit] = STATE(2283), + [sym_kwd_lit] = STATE(2283), + [sym_str_lit] = STATE(2283), + [sym_char_lit] = STATE(2283), + [sym_sym_lit] = STATE(2304), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2283), + [sym__bare_list_lit] = STATE(1844), + [sym_vec_lit] = STATE(2283), + [sym_set_lit] = STATE(2283), + [sym__bare_set_lit] = STATE(1843), + [sym_read_cond_lit] = STATE(2283), + [sym_splicing_read_cond_lit] = STATE(2283), + [sym_var_quoting_lit] = STATE(2283), + [sym_quoting_lit] = STATE(2283), + [sym_syn_quoting_lit] = STATE(2283), + [sym_unquote_splicing_lit] = STATE(2283), + [sym_unquoting_lit] = STATE(2283), + [sym_defun] = STATE(1844), + [sym_for_clause_word] = STATE(293), + [sym__for_part] = STATE(1322), + [sym_loop_macro] = STATE(1844), + [sym_path_lit] = STATE(2283), + [sym_package_lit] = STATE(2283), + [sym_include_reader_macro] = STATE(2283), + [sym_complex_num_lit] = STATE(2283), + [aux_sym_dis_expr_repeat1] = STATE(133), + [aux_sym_list_lit_repeat1] = STATE(2308), + [aux_sym_for_clause_repeat1] = STATE(1104), + [sym__ws] = ACTIONS(2960), + [sym_comment] = ACTIONS(2960), + [anon_sym_POUND_] = ACTIONS(2912), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2962), + [aux_sym_num_lit_token1] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2924), + [sym_nil_lit] = ACTIONS(2962), + [aux_sym_sym_lit_token1] = ACTIONS(2926), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2928), + [anon_sym_POUND0A] = ACTIONS(2930), + [anon_sym_POUND0a] = ACTIONS(2930), + [anon_sym_POUND_QMARK] = ACTIONS(2932), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2934), + [anon_sym_POUND_SQUOTE] = ACTIONS(2936), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_BQUOTE] = ACTIONS(2940), + [anon_sym_COMMA_AT] = ACTIONS(2942), + [anon_sym_COMMA] = ACTIONS(2944), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2962), + [anon_sym_cl] = ACTIONS(2946), + [anon_sym_in] = ACTIONS(2948), + [anon_sym_across] = ACTIONS(2948), + [anon_sym_being] = ACTIONS(2948), + [anon_sym_using] = ACTIONS(2948), + [aux_sym_for_clause_word_token1] = ACTIONS(2950), + [anon_sym_below] = ACTIONS(2948), + [anon_sym_above] = ACTIONS(2948), + [anon_sym_from] = ACTIONS(2948), + [anon_sym_to] = ACTIONS(2948), + [anon_sym_upto] = ACTIONS(2948), + [anon_sym_downto] = ACTIONS(2948), + [anon_sym_downfrom] = ACTIONS(2948), + [anon_sym_on] = ACTIONS(2948), + [anon_sym_by] = ACTIONS(2948), + [anon_sym_then] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2948), + [anon_sym_POUNDP] = ACTIONS(2952), + [anon_sym_POUNDp] = ACTIONS(2952), + [sym_self_referential_reader_macro] = ACTIONS(2964), + [anon_sym_POUND_PLUS] = ACTIONS(2956), + [anon_sym_POUND_DASH] = ACTIONS(2956), + [anon_sym_POUNDC] = ACTIONS(2958), + [anon_sym_POUNDc] = ACTIONS(2958), + }, + [129] = { + [sym__gap] = STATE(136), + [sym_dis_expr] = STATE(136), + [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(2304), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2277), + [sym__bare_list_lit] = STATE(1844), + [sym_vec_lit] = STATE(2277), + [sym_set_lit] = STATE(2277), + [sym__bare_set_lit] = STATE(1843), + [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(1844), + [sym_for_clause_word] = STATE(293), + [sym__for_part] = STATE(1322), + [sym_loop_macro] = STATE(1844), + [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(136), + [aux_sym_list_lit_repeat1] = STATE(2308), + [aux_sym_for_clause_repeat1] = STATE(1094), + [sym__ws] = ACTIONS(2966), + [sym_comment] = ACTIONS(2966), + [anon_sym_POUND_] = ACTIONS(2912), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2968), + [aux_sym_num_lit_token1] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2924), + [sym_nil_lit] = ACTIONS(2968), + [aux_sym_sym_lit_token1] = ACTIONS(2926), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2928), + [anon_sym_POUND0A] = ACTIONS(2930), + [anon_sym_POUND0a] = ACTIONS(2930), + [anon_sym_POUND_QMARK] = ACTIONS(2932), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2934), + [anon_sym_POUND_SQUOTE] = ACTIONS(2936), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_BQUOTE] = ACTIONS(2940), + [anon_sym_COMMA_AT] = ACTIONS(2942), + [anon_sym_COMMA] = ACTIONS(2944), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2968), + [anon_sym_cl] = ACTIONS(2946), + [anon_sym_in] = ACTIONS(2948), + [anon_sym_across] = ACTIONS(2948), + [anon_sym_being] = ACTIONS(2948), + [anon_sym_using] = ACTIONS(2948), + [aux_sym_for_clause_word_token1] = ACTIONS(2950), + [anon_sym_below] = ACTIONS(2948), + [anon_sym_above] = ACTIONS(2948), + [anon_sym_from] = ACTIONS(2948), + [anon_sym_to] = ACTIONS(2948), + [anon_sym_upto] = ACTIONS(2948), + [anon_sym_downto] = ACTIONS(2948), + [anon_sym_downfrom] = ACTIONS(2948), + [anon_sym_on] = ACTIONS(2948), + [anon_sym_by] = ACTIONS(2948), + [anon_sym_then] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2948), + [anon_sym_POUNDP] = ACTIONS(2952), + [anon_sym_POUNDp] = ACTIONS(2952), + [sym_self_referential_reader_macro] = ACTIONS(2970), + [anon_sym_POUND_PLUS] = ACTIONS(2956), + [anon_sym_POUND_DASH] = ACTIONS(2956), + [anon_sym_POUNDC] = ACTIONS(2958), + [anon_sym_POUNDc] = ACTIONS(2958), + }, + [130] = { + [sym__gap] = STATE(135), + [sym_dis_expr] = STATE(135), + [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(2304), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2276), + [sym__bare_list_lit] = STATE(1844), + [sym_vec_lit] = STATE(2276), + [sym_set_lit] = STATE(2276), + [sym__bare_set_lit] = STATE(1843), + [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(1844), + [sym_for_clause_word] = STATE(293), + [sym__for_part] = STATE(1322), + [sym_loop_macro] = STATE(1844), + [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(135), + [aux_sym_list_lit_repeat1] = STATE(2308), + [aux_sym_for_clause_repeat1] = STATE(1098), + [sym__ws] = ACTIONS(2972), + [sym_comment] = ACTIONS(2972), + [anon_sym_POUND_] = ACTIONS(2912), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2974), + [aux_sym_num_lit_token1] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2924), + [sym_nil_lit] = ACTIONS(2974), + [aux_sym_sym_lit_token1] = ACTIONS(2926), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2928), + [anon_sym_POUND0A] = ACTIONS(2930), + [anon_sym_POUND0a] = ACTIONS(2930), + [anon_sym_POUND_QMARK] = ACTIONS(2932), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2934), + [anon_sym_POUND_SQUOTE] = ACTIONS(2936), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_BQUOTE] = ACTIONS(2940), + [anon_sym_COMMA_AT] = ACTIONS(2942), + [anon_sym_COMMA] = ACTIONS(2944), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2974), + [anon_sym_cl] = ACTIONS(2946), + [anon_sym_in] = ACTIONS(2948), + [anon_sym_across] = ACTIONS(2948), + [anon_sym_being] = ACTIONS(2948), + [anon_sym_using] = ACTIONS(2948), + [aux_sym_for_clause_word_token1] = ACTIONS(2950), + [anon_sym_below] = ACTIONS(2948), + [anon_sym_above] = ACTIONS(2948), + [anon_sym_from] = ACTIONS(2948), + [anon_sym_to] = ACTIONS(2948), + [anon_sym_upto] = ACTIONS(2948), + [anon_sym_downto] = ACTIONS(2948), + [anon_sym_downfrom] = ACTIONS(2948), + [anon_sym_on] = ACTIONS(2948), + [anon_sym_by] = ACTIONS(2948), + [anon_sym_then] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2948), + [anon_sym_POUNDP] = ACTIONS(2952), + [anon_sym_POUNDp] = ACTIONS(2952), + [sym_self_referential_reader_macro] = ACTIONS(2976), + [anon_sym_POUND_PLUS] = ACTIONS(2956), + [anon_sym_POUND_DASH] = ACTIONS(2956), + [anon_sym_POUNDC] = ACTIONS(2958), + [anon_sym_POUNDc] = ACTIONS(2958), + }, + [131] = { + [sym__gap] = STATE(138), + [sym_dis_expr] = STATE(138), + [sym__form] = STATE(2279), + [sym_num_lit] = STATE(2279), + [sym_kwd_lit] = STATE(2279), + [sym_str_lit] = STATE(2279), + [sym_char_lit] = STATE(2279), + [sym_sym_lit] = STATE(2304), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2279), + [sym__bare_list_lit] = STATE(1844), + [sym_vec_lit] = STATE(2279), + [sym_set_lit] = STATE(2279), + [sym__bare_set_lit] = STATE(1843), + [sym_read_cond_lit] = STATE(2279), + [sym_splicing_read_cond_lit] = STATE(2279), + [sym_var_quoting_lit] = STATE(2279), + [sym_quoting_lit] = STATE(2279), + [sym_syn_quoting_lit] = STATE(2279), + [sym_unquote_splicing_lit] = STATE(2279), + [sym_unquoting_lit] = STATE(2279), + [sym_defun] = STATE(1844), + [sym_for_clause_word] = STATE(293), + [sym__for_part] = STATE(1322), + [sym_loop_macro] = STATE(1844), + [sym_path_lit] = STATE(2279), + [sym_package_lit] = STATE(2279), + [sym_include_reader_macro] = STATE(2279), + [sym_complex_num_lit] = STATE(2279), + [aux_sym_dis_expr_repeat1] = STATE(138), + [aux_sym_list_lit_repeat1] = STATE(2308), + [aux_sym_for_clause_repeat1] = STATE(1105), + [sym__ws] = ACTIONS(2978), + [sym_comment] = ACTIONS(2978), + [anon_sym_POUND_] = ACTIONS(2912), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2980), + [aux_sym_num_lit_token1] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2924), + [sym_nil_lit] = ACTIONS(2980), + [aux_sym_sym_lit_token1] = ACTIONS(2926), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2928), + [anon_sym_POUND0A] = ACTIONS(2930), + [anon_sym_POUND0a] = ACTIONS(2930), + [anon_sym_POUND_QMARK] = ACTIONS(2932), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2934), + [anon_sym_POUND_SQUOTE] = ACTIONS(2936), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_BQUOTE] = ACTIONS(2940), + [anon_sym_COMMA_AT] = ACTIONS(2942), + [anon_sym_COMMA] = ACTIONS(2944), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2980), + [anon_sym_cl] = ACTIONS(2946), + [anon_sym_in] = ACTIONS(2948), + [anon_sym_across] = ACTIONS(2948), + [anon_sym_being] = ACTIONS(2948), + [anon_sym_using] = ACTIONS(2948), + [aux_sym_for_clause_word_token1] = ACTIONS(2950), + [anon_sym_below] = ACTIONS(2948), + [anon_sym_above] = ACTIONS(2948), + [anon_sym_from] = ACTIONS(2948), + [anon_sym_to] = ACTIONS(2948), + [anon_sym_upto] = ACTIONS(2948), + [anon_sym_downto] = ACTIONS(2948), + [anon_sym_downfrom] = ACTIONS(2948), + [anon_sym_on] = ACTIONS(2948), + [anon_sym_by] = ACTIONS(2948), + [anon_sym_then] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2948), + [anon_sym_POUNDP] = ACTIONS(2952), + [anon_sym_POUNDp] = ACTIONS(2952), + [sym_self_referential_reader_macro] = ACTIONS(2982), + [anon_sym_POUND_PLUS] = ACTIONS(2956), + [anon_sym_POUND_DASH] = ACTIONS(2956), + [anon_sym_POUNDC] = ACTIONS(2958), + [anon_sym_POUNDc] = ACTIONS(2958), + }, + [132] = { + [sym__gap] = STATE(134), + [sym_dis_expr] = STATE(134), + [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(2304), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2284), + [sym__bare_list_lit] = STATE(1844), + [sym_vec_lit] = STATE(2284), + [sym_set_lit] = STATE(2284), + [sym__bare_set_lit] = STATE(1843), + [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(1844), + [sym_for_clause_word] = STATE(293), + [sym__for_part] = STATE(1322), + [sym_loop_macro] = STATE(1844), + [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(134), + [aux_sym_list_lit_repeat1] = STATE(2308), + [aux_sym_for_clause_repeat1] = STATE(1097), + [sym__ws] = ACTIONS(2984), + [sym_comment] = ACTIONS(2984), + [anon_sym_POUND_] = ACTIONS(2912), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2986), + [aux_sym_num_lit_token1] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2924), + [sym_nil_lit] = ACTIONS(2986), + [aux_sym_sym_lit_token1] = ACTIONS(2926), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2928), + [anon_sym_POUND0A] = ACTIONS(2930), + [anon_sym_POUND0a] = ACTIONS(2930), + [anon_sym_POUND_QMARK] = ACTIONS(2932), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2934), + [anon_sym_POUND_SQUOTE] = ACTIONS(2936), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_BQUOTE] = ACTIONS(2940), + [anon_sym_COMMA_AT] = ACTIONS(2942), + [anon_sym_COMMA] = ACTIONS(2944), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2986), + [anon_sym_cl] = ACTIONS(2946), + [anon_sym_in] = ACTIONS(2948), + [anon_sym_across] = ACTIONS(2948), + [anon_sym_being] = ACTIONS(2948), + [anon_sym_using] = ACTIONS(2948), + [aux_sym_for_clause_word_token1] = ACTIONS(2950), + [anon_sym_below] = ACTIONS(2948), + [anon_sym_above] = ACTIONS(2948), + [anon_sym_from] = ACTIONS(2948), + [anon_sym_to] = ACTIONS(2948), + [anon_sym_upto] = ACTIONS(2948), + [anon_sym_downto] = ACTIONS(2948), + [anon_sym_downfrom] = ACTIONS(2948), + [anon_sym_on] = ACTIONS(2948), + [anon_sym_by] = ACTIONS(2948), + [anon_sym_then] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2948), + [anon_sym_POUNDP] = ACTIONS(2952), + [anon_sym_POUNDp] = ACTIONS(2952), + [sym_self_referential_reader_macro] = ACTIONS(2988), + [anon_sym_POUND_PLUS] = ACTIONS(2956), + [anon_sym_POUND_DASH] = ACTIONS(2956), + [anon_sym_POUNDC] = ACTIONS(2958), + [anon_sym_POUNDc] = ACTIONS(2958), + }, + [133] = { + [sym__gap] = STATE(1089), + [sym_dis_expr] = STATE(1089), + [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(2304), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2280), + [sym__bare_list_lit] = STATE(1844), + [sym_vec_lit] = STATE(2280), + [sym_set_lit] = STATE(2280), + [sym__bare_set_lit] = STATE(1843), + [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(1844), + [sym_for_clause_word] = STATE(383), + [sym_loop_macro] = STATE(1844), + [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(1089), + [aux_sym_list_lit_repeat1] = STATE(2308), + [sym__ws] = ACTIONS(2990), + [sym_comment] = ACTIONS(2990), + [anon_sym_POUND_] = ACTIONS(2912), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2992), + [aux_sym_num_lit_token1] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2924), + [sym_nil_lit] = ACTIONS(2992), + [aux_sym_sym_lit_token1] = ACTIONS(2926), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2928), + [anon_sym_POUND0A] = ACTIONS(2930), + [anon_sym_POUND0a] = ACTIONS(2930), + [anon_sym_POUND_QMARK] = ACTIONS(2932), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2934), + [anon_sym_POUND_SQUOTE] = ACTIONS(2936), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_BQUOTE] = ACTIONS(2940), + [anon_sym_COMMA_AT] = ACTIONS(2942), + [anon_sym_COMMA] = ACTIONS(2944), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2992), + [anon_sym_cl] = ACTIONS(2946), + [anon_sym_in] = ACTIONS(2948), + [anon_sym_across] = ACTIONS(2948), + [anon_sym_being] = ACTIONS(2948), + [anon_sym_using] = ACTIONS(2948), + [aux_sym_for_clause_word_token1] = ACTIONS(2950), + [anon_sym_below] = ACTIONS(2948), + [anon_sym_above] = ACTIONS(2948), + [anon_sym_from] = ACTIONS(2948), + [anon_sym_to] = ACTIONS(2948), + [anon_sym_upto] = ACTIONS(2948), + [anon_sym_downto] = ACTIONS(2948), + [anon_sym_downfrom] = ACTIONS(2948), + [anon_sym_on] = ACTIONS(2948), + [anon_sym_by] = ACTIONS(2948), + [anon_sym_then] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2948), + [anon_sym_POUNDP] = ACTIONS(2952), + [anon_sym_POUNDp] = ACTIONS(2952), + [sym_self_referential_reader_macro] = ACTIONS(2994), + [anon_sym_POUND_PLUS] = ACTIONS(2956), + [anon_sym_POUND_DASH] = ACTIONS(2956), + [anon_sym_POUNDC] = ACTIONS(2958), + [anon_sym_POUNDc] = ACTIONS(2958), + }, + [134] = { + [sym__gap] = STATE(1089), + [sym_dis_expr] = STATE(1089), + [sym__form] = STATE(2275), + [sym_num_lit] = STATE(2275), + [sym_kwd_lit] = STATE(2275), + [sym_str_lit] = STATE(2275), + [sym_char_lit] = STATE(2275), + [sym_sym_lit] = STATE(2304), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2275), + [sym__bare_list_lit] = STATE(1844), + [sym_vec_lit] = STATE(2275), + [sym_set_lit] = STATE(2275), + [sym__bare_set_lit] = STATE(1843), + [sym_read_cond_lit] = STATE(2275), + [sym_splicing_read_cond_lit] = STATE(2275), + [sym_var_quoting_lit] = STATE(2275), + [sym_quoting_lit] = STATE(2275), + [sym_syn_quoting_lit] = STATE(2275), + [sym_unquote_splicing_lit] = STATE(2275), + [sym_unquoting_lit] = STATE(2275), + [sym_defun] = STATE(1844), + [sym_for_clause_word] = STATE(383), + [sym_loop_macro] = STATE(1844), + [sym_path_lit] = STATE(2275), + [sym_package_lit] = STATE(2275), + [sym_include_reader_macro] = STATE(2275), + [sym_complex_num_lit] = STATE(2275), + [aux_sym_dis_expr_repeat1] = STATE(1089), + [aux_sym_list_lit_repeat1] = STATE(2308), + [sym__ws] = ACTIONS(2990), + [sym_comment] = ACTIONS(2990), + [anon_sym_POUND_] = ACTIONS(2912), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2996), + [aux_sym_num_lit_token1] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2924), + [sym_nil_lit] = ACTIONS(2996), + [aux_sym_sym_lit_token1] = ACTIONS(2926), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2928), + [anon_sym_POUND0A] = ACTIONS(2930), + [anon_sym_POUND0a] = ACTIONS(2930), + [anon_sym_POUND_QMARK] = ACTIONS(2932), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2934), + [anon_sym_POUND_SQUOTE] = ACTIONS(2936), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_BQUOTE] = ACTIONS(2940), + [anon_sym_COMMA_AT] = ACTIONS(2942), + [anon_sym_COMMA] = ACTIONS(2944), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2996), + [anon_sym_cl] = ACTIONS(2946), + [anon_sym_in] = ACTIONS(2948), + [anon_sym_across] = ACTIONS(2948), + [anon_sym_being] = ACTIONS(2948), + [anon_sym_using] = ACTIONS(2948), + [aux_sym_for_clause_word_token1] = ACTIONS(2950), + [anon_sym_below] = ACTIONS(2948), + [anon_sym_above] = ACTIONS(2948), + [anon_sym_from] = ACTIONS(2948), + [anon_sym_to] = ACTIONS(2948), + [anon_sym_upto] = ACTIONS(2948), + [anon_sym_downto] = ACTIONS(2948), + [anon_sym_downfrom] = ACTIONS(2948), + [anon_sym_on] = ACTIONS(2948), + [anon_sym_by] = ACTIONS(2948), + [anon_sym_then] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2948), + [anon_sym_POUNDP] = ACTIONS(2952), + [anon_sym_POUNDp] = ACTIONS(2952), + [sym_self_referential_reader_macro] = ACTIONS(2998), + [anon_sym_POUND_PLUS] = ACTIONS(2956), + [anon_sym_POUND_DASH] = ACTIONS(2956), + [anon_sym_POUNDC] = ACTIONS(2958), + [anon_sym_POUNDc] = ACTIONS(2958), + }, + [135] = { + [sym__gap] = STATE(1089), + [sym_dis_expr] = STATE(1089), + [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(2304), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2278), + [sym__bare_list_lit] = STATE(1844), + [sym_vec_lit] = STATE(2278), + [sym_set_lit] = STATE(2278), + [sym__bare_set_lit] = STATE(1843), + [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(1844), + [sym_for_clause_word] = STATE(383), + [sym_loop_macro] = STATE(1844), + [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(1089), + [aux_sym_list_lit_repeat1] = STATE(2308), + [sym__ws] = ACTIONS(2990), + [sym_comment] = ACTIONS(2990), + [anon_sym_POUND_] = ACTIONS(2912), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(3000), + [aux_sym_num_lit_token1] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2924), + [sym_nil_lit] = ACTIONS(3000), + [aux_sym_sym_lit_token1] = ACTIONS(2926), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2928), + [anon_sym_POUND0A] = ACTIONS(2930), + [anon_sym_POUND0a] = ACTIONS(2930), + [anon_sym_POUND_QMARK] = ACTIONS(2932), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2934), + [anon_sym_POUND_SQUOTE] = ACTIONS(2936), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_BQUOTE] = ACTIONS(2940), + [anon_sym_COMMA_AT] = ACTIONS(2942), + [anon_sym_COMMA] = ACTIONS(2944), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3000), + [anon_sym_cl] = ACTIONS(2946), + [anon_sym_in] = ACTIONS(2948), + [anon_sym_across] = ACTIONS(2948), + [anon_sym_being] = ACTIONS(2948), + [anon_sym_using] = ACTIONS(2948), + [aux_sym_for_clause_word_token1] = ACTIONS(2950), + [anon_sym_below] = ACTIONS(2948), + [anon_sym_above] = ACTIONS(2948), + [anon_sym_from] = ACTIONS(2948), + [anon_sym_to] = ACTIONS(2948), + [anon_sym_upto] = ACTIONS(2948), + [anon_sym_downto] = ACTIONS(2948), + [anon_sym_downfrom] = ACTIONS(2948), + [anon_sym_on] = ACTIONS(2948), + [anon_sym_by] = ACTIONS(2948), + [anon_sym_then] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2948), + [anon_sym_POUNDP] = ACTIONS(2952), + [anon_sym_POUNDp] = ACTIONS(2952), + [sym_self_referential_reader_macro] = ACTIONS(3002), + [anon_sym_POUND_PLUS] = ACTIONS(2956), + [anon_sym_POUND_DASH] = ACTIONS(2956), + [anon_sym_POUNDC] = ACTIONS(2958), + [anon_sym_POUNDc] = ACTIONS(2958), + }, + [136] = { + [sym__gap] = STATE(1089), + [sym_dis_expr] = STATE(1089), + [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(2304), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2282), + [sym__bare_list_lit] = STATE(1844), + [sym_vec_lit] = STATE(2282), + [sym_set_lit] = STATE(2282), + [sym__bare_set_lit] = STATE(1843), + [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(1844), + [sym_for_clause_word] = STATE(383), + [sym_loop_macro] = STATE(1844), + [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(1089), + [aux_sym_list_lit_repeat1] = STATE(2308), + [sym__ws] = ACTIONS(2990), + [sym_comment] = ACTIONS(2990), + [anon_sym_POUND_] = ACTIONS(2912), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(3004), + [aux_sym_num_lit_token1] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2924), + [sym_nil_lit] = ACTIONS(3004), + [aux_sym_sym_lit_token1] = ACTIONS(2926), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2928), + [anon_sym_POUND0A] = ACTIONS(2930), + [anon_sym_POUND0a] = ACTIONS(2930), + [anon_sym_POUND_QMARK] = ACTIONS(2932), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2934), + [anon_sym_POUND_SQUOTE] = ACTIONS(2936), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_BQUOTE] = ACTIONS(2940), + [anon_sym_COMMA_AT] = ACTIONS(2942), + [anon_sym_COMMA] = ACTIONS(2944), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3004), + [anon_sym_cl] = ACTIONS(2946), + [anon_sym_in] = ACTIONS(2948), + [anon_sym_across] = ACTIONS(2948), + [anon_sym_being] = ACTIONS(2948), + [anon_sym_using] = ACTIONS(2948), + [aux_sym_for_clause_word_token1] = ACTIONS(2950), + [anon_sym_below] = ACTIONS(2948), + [anon_sym_above] = ACTIONS(2948), + [anon_sym_from] = ACTIONS(2948), + [anon_sym_to] = ACTIONS(2948), + [anon_sym_upto] = ACTIONS(2948), + [anon_sym_downto] = ACTIONS(2948), + [anon_sym_downfrom] = ACTIONS(2948), + [anon_sym_on] = ACTIONS(2948), + [anon_sym_by] = ACTIONS(2948), + [anon_sym_then] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2948), + [anon_sym_POUNDP] = ACTIONS(2952), + [anon_sym_POUNDp] = ACTIONS(2952), + [sym_self_referential_reader_macro] = ACTIONS(3006), + [anon_sym_POUND_PLUS] = ACTIONS(2956), + [anon_sym_POUND_DASH] = ACTIONS(2956), + [anon_sym_POUNDC] = ACTIONS(2958), + [anon_sym_POUNDc] = ACTIONS(2958), + }, + [137] = { + [sym__gap] = STATE(1089), + [sym_dis_expr] = STATE(1089), + [sym__form] = STATE(2281), + [sym_num_lit] = STATE(2281), + [sym_kwd_lit] = STATE(2281), + [sym_str_lit] = STATE(2281), + [sym_char_lit] = STATE(2281), + [sym_sym_lit] = STATE(2304), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2281), + [sym__bare_list_lit] = STATE(1844), + [sym_vec_lit] = STATE(2281), + [sym_set_lit] = STATE(2281), + [sym__bare_set_lit] = STATE(1843), + [sym_read_cond_lit] = STATE(2281), + [sym_splicing_read_cond_lit] = STATE(2281), + [sym_var_quoting_lit] = STATE(2281), + [sym_quoting_lit] = STATE(2281), + [sym_syn_quoting_lit] = STATE(2281), + [sym_unquote_splicing_lit] = STATE(2281), + [sym_unquoting_lit] = STATE(2281), + [sym_defun] = STATE(1844), + [sym_for_clause_word] = STATE(383), + [sym_loop_macro] = STATE(1844), + [sym_path_lit] = STATE(2281), + [sym_package_lit] = STATE(2281), + [sym_include_reader_macro] = STATE(2281), + [sym_complex_num_lit] = STATE(2281), + [aux_sym_dis_expr_repeat1] = STATE(1089), + [aux_sym_list_lit_repeat1] = STATE(2308), + [sym__ws] = ACTIONS(2990), + [sym_comment] = ACTIONS(2990), + [anon_sym_POUND_] = ACTIONS(2912), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(3008), + [aux_sym_num_lit_token1] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2924), + [sym_nil_lit] = ACTIONS(3008), + [aux_sym_sym_lit_token1] = ACTIONS(2926), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2928), + [anon_sym_POUND0A] = ACTIONS(2930), + [anon_sym_POUND0a] = ACTIONS(2930), + [anon_sym_POUND_QMARK] = ACTIONS(2932), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2934), + [anon_sym_POUND_SQUOTE] = ACTIONS(2936), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_BQUOTE] = ACTIONS(2940), + [anon_sym_COMMA_AT] = ACTIONS(2942), + [anon_sym_COMMA] = ACTIONS(2944), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3008), + [anon_sym_cl] = ACTIONS(2946), + [anon_sym_in] = ACTIONS(2948), + [anon_sym_across] = ACTIONS(2948), + [anon_sym_being] = ACTIONS(2948), + [anon_sym_using] = ACTIONS(2948), + [aux_sym_for_clause_word_token1] = ACTIONS(2950), + [anon_sym_below] = ACTIONS(2948), + [anon_sym_above] = ACTIONS(2948), + [anon_sym_from] = ACTIONS(2948), + [anon_sym_to] = ACTIONS(2948), + [anon_sym_upto] = ACTIONS(2948), + [anon_sym_downto] = ACTIONS(2948), + [anon_sym_downfrom] = ACTIONS(2948), + [anon_sym_on] = ACTIONS(2948), + [anon_sym_by] = ACTIONS(2948), + [anon_sym_then] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2948), + [anon_sym_POUNDP] = ACTIONS(2952), + [anon_sym_POUNDp] = ACTIONS(2952), + [sym_self_referential_reader_macro] = ACTIONS(3010), + [anon_sym_POUND_PLUS] = ACTIONS(2956), + [anon_sym_POUND_DASH] = ACTIONS(2956), + [anon_sym_POUNDC] = ACTIONS(2958), + [anon_sym_POUNDc] = ACTIONS(2958), + }, + [138] = { + [sym__gap] = STATE(1089), + [sym_dis_expr] = STATE(1089), + [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(2304), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(2286), + [sym__bare_list_lit] = STATE(1844), + [sym_vec_lit] = STATE(2286), + [sym_set_lit] = STATE(2286), + [sym__bare_set_lit] = STATE(1843), + [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(1844), + [sym_for_clause_word] = STATE(383), + [sym_loop_macro] = STATE(1844), + [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(1089), + [aux_sym_list_lit_repeat1] = STATE(2308), + [sym__ws] = ACTIONS(2990), + [sym_comment] = ACTIONS(2990), + [anon_sym_POUND_] = ACTIONS(2912), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(3012), + [aux_sym_num_lit_token1] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2924), + [sym_nil_lit] = ACTIONS(3012), + [aux_sym_sym_lit_token1] = ACTIONS(2926), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2928), + [anon_sym_POUND0A] = ACTIONS(2930), + [anon_sym_POUND0a] = ACTIONS(2930), + [anon_sym_POUND_QMARK] = ACTIONS(2932), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2934), + [anon_sym_POUND_SQUOTE] = ACTIONS(2936), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_BQUOTE] = ACTIONS(2940), + [anon_sym_COMMA_AT] = ACTIONS(2942), + [anon_sym_COMMA] = ACTIONS(2944), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3012), + [anon_sym_cl] = ACTIONS(2946), + [anon_sym_in] = ACTIONS(2948), + [anon_sym_across] = ACTIONS(2948), + [anon_sym_being] = ACTIONS(2948), + [anon_sym_using] = ACTIONS(2948), + [aux_sym_for_clause_word_token1] = ACTIONS(2950), + [anon_sym_below] = ACTIONS(2948), + [anon_sym_above] = ACTIONS(2948), + [anon_sym_from] = ACTIONS(2948), + [anon_sym_to] = ACTIONS(2948), + [anon_sym_upto] = ACTIONS(2948), + [anon_sym_downto] = ACTIONS(2948), + [anon_sym_downfrom] = ACTIONS(2948), + [anon_sym_on] = ACTIONS(2948), + [anon_sym_by] = ACTIONS(2948), + [anon_sym_then] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2948), + [anon_sym_POUNDP] = ACTIONS(2952), + [anon_sym_POUNDp] = ACTIONS(2952), + [sym_self_referential_reader_macro] = ACTIONS(3014), + [anon_sym_POUND_PLUS] = ACTIONS(2956), + [anon_sym_POUND_DASH] = ACTIONS(2956), + [anon_sym_POUNDC] = ACTIONS(2958), + [anon_sym_POUNDc] = ACTIONS(2958), + }, + [139] = { + [sym__gap] = STATE(1447), + [sym_dis_expr] = STATE(1447), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_defun_keyword] = STATE(760), + [sym_defun_header] = STATE(204), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(209), + [sym__ws] = ACTIONS(3016), + [sym_comment] = ACTIONS(3016), + [anon_sym_POUND_] = ACTIONS(3018), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(3020), + [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2687), + [anon_sym_RPAREN] = ACTIONS(3022), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17843,63 +21882,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(2431), - [anon_sym_cl] = ACTIONS(49), + [sym_fancy_literal] = ACTIONS(3020), + [anon_sym_cl] = ACTIONS(3024), + [anon_sym_loop] = ACTIONS(3026), + [anon_sym_defun] = ACTIONS(3028), + [anon_sym_defmacro] = ACTIONS(3028), + [anon_sym_defgeneric] = ACTIONS(3028), + [anon_sym_defmethod] = ACTIONS(3028), + [anon_sym_lambda] = ACTIONS(3030), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [101] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), - [anon_sym_POUND_] = ACTIONS(9), + [140] = { + [sym__gap] = STATE(1448), + [sym_dis_expr] = STATE(1448), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_defun_keyword] = STATE(760), + [sym_defun_header] = STATE(225), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(226), + [sym__ws] = ACTIONS(3034), + [sym_comment] = ACTIONS(3034), + [anon_sym_POUND_] = ACTIONS(3018), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2689), + [anon_sym_RPAREN] = ACTIONS(3036), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17910,63 +21957,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(2431), - [anon_sym_cl] = ACTIONS(49), + [sym_fancy_literal] = ACTIONS(3020), + [anon_sym_cl] = ACTIONS(3038), + [anon_sym_loop] = ACTIONS(3040), + [anon_sym_defun] = ACTIONS(3028), + [anon_sym_defmacro] = ACTIONS(3028), + [anon_sym_defgeneric] = ACTIONS(3028), + [anon_sym_defmethod] = ACTIONS(3028), + [anon_sym_lambda] = ACTIONS(3030), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [102] = { - [sym__gap] = STATE(151), - [sym_dis_expr] = STATE(151), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(151), - [sym__ws] = ACTIONS(2691), - [sym_comment] = ACTIONS(2691), - [anon_sym_POUND_] = ACTIONS(9), + [141] = { + [sym__gap] = STATE(1439), + [sym_dis_expr] = STATE(1439), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_defun_keyword] = STATE(760), + [sym_defun_header] = STATE(224), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(150), + [sym__ws] = ACTIONS(3042), + [sym_comment] = ACTIONS(3042), + [anon_sym_POUND_] = ACTIONS(3018), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2693), + [anon_sym_RPAREN] = ACTIONS(3044), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17977,63 +22032,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(2431), - [anon_sym_cl] = ACTIONS(49), + [sym_fancy_literal] = ACTIONS(3020), + [anon_sym_cl] = ACTIONS(3046), + [anon_sym_loop] = ACTIONS(3048), + [anon_sym_defun] = ACTIONS(3028), + [anon_sym_defmacro] = ACTIONS(3028), + [anon_sym_defgeneric] = ACTIONS(3028), + [anon_sym_defmethod] = ACTIONS(3028), + [anon_sym_lambda] = ACTIONS(3030), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [103] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), - [anon_sym_POUND_] = ACTIONS(9), + [142] = { + [sym__gap] = STATE(1444), + [sym_dis_expr] = STATE(1444), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_defun_keyword] = STATE(760), + [sym_defun_header] = STATE(172), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(169), + [sym__ws] = ACTIONS(3050), + [sym_comment] = ACTIONS(3050), + [anon_sym_POUND_] = ACTIONS(3018), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2695), + [anon_sym_RPAREN] = ACTIONS(3052), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18044,63 +22107,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(2431), - [anon_sym_cl] = ACTIONS(49), + [sym_fancy_literal] = ACTIONS(3020), + [anon_sym_cl] = ACTIONS(3054), + [anon_sym_loop] = ACTIONS(3056), + [anon_sym_defun] = ACTIONS(3028), + [anon_sym_defmacro] = ACTIONS(3028), + [anon_sym_defgeneric] = ACTIONS(3028), + [anon_sym_defmethod] = ACTIONS(3028), + [anon_sym_lambda] = ACTIONS(3030), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [104] = { - [sym__gap] = STATE(100), - [sym_dis_expr] = STATE(100), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(100), - [sym__ws] = ACTIONS(2697), - [sym_comment] = ACTIONS(2697), - [anon_sym_POUND_] = ACTIONS(9), + [143] = { + [sym__gap] = STATE(1446), + [sym_dis_expr] = STATE(1446), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_defun_keyword] = STATE(760), + [sym_defun_header] = STATE(184), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(185), + [sym__ws] = ACTIONS(3058), + [sym_comment] = ACTIONS(3058), + [anon_sym_POUND_] = ACTIONS(3018), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2596), + [anon_sym_RPAREN] = ACTIONS(3060), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18111,63 +22182,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(2431), - [anon_sym_cl] = ACTIONS(49), + [sym_fancy_literal] = ACTIONS(3020), + [anon_sym_cl] = ACTIONS(3062), + [anon_sym_loop] = ACTIONS(3064), + [anon_sym_defun] = ACTIONS(3028), + [anon_sym_defmacro] = ACTIONS(3028), + [anon_sym_defgeneric] = ACTIONS(3028), + [anon_sym_defmethod] = ACTIONS(3028), + [anon_sym_lambda] = ACTIONS(3030), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [105] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), - [anon_sym_POUND_] = ACTIONS(9), + [144] = { + [sym__gap] = STATE(1442), + [sym_dis_expr] = STATE(1442), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_defun_keyword] = STATE(760), + [sym_defun_header] = STATE(231), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(229), + [sym__ws] = ACTIONS(3066), + [sym_comment] = ACTIONS(3066), + [anon_sym_POUND_] = ACTIONS(3018), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2699), + [anon_sym_RPAREN] = ACTIONS(3068), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18178,63 +22257,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(2431), - [anon_sym_cl] = ACTIONS(49), + [sym_fancy_literal] = ACTIONS(3020), + [anon_sym_cl] = ACTIONS(3070), + [anon_sym_loop] = ACTIONS(3072), + [anon_sym_defun] = ACTIONS(3028), + [anon_sym_defmacro] = ACTIONS(3028), + [anon_sym_defgeneric] = ACTIONS(3028), + [anon_sym_defmethod] = ACTIONS(3028), + [anon_sym_lambda] = ACTIONS(3030), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [106] = { - [sym__gap] = STATE(203), - [sym_dis_expr] = STATE(203), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(203), - [sym__ws] = ACTIONS(2701), - [sym_comment] = ACTIONS(2701), - [anon_sym_POUND_] = ACTIONS(9), + [145] = { + [sym__gap] = STATE(1440), + [sym_dis_expr] = STATE(1440), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_defun_keyword] = STATE(760), + [sym_defun_header] = STATE(251), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(252), + [sym__ws] = ACTIONS(3074), + [sym_comment] = ACTIONS(3074), + [anon_sym_POUND_] = ACTIONS(3018), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2703), + [anon_sym_RPAREN] = ACTIONS(3076), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18245,63 +22332,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(2431), - [anon_sym_cl] = ACTIONS(49), + [sym_fancy_literal] = ACTIONS(3020), + [anon_sym_cl] = ACTIONS(3078), + [anon_sym_loop] = ACTIONS(3080), + [anon_sym_defun] = ACTIONS(3028), + [anon_sym_defmacro] = ACTIONS(3028), + [anon_sym_defgeneric] = ACTIONS(3028), + [anon_sym_defmethod] = ACTIONS(3028), + [anon_sym_lambda] = ACTIONS(3030), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [107] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), - [anon_sym_POUND_] = ACTIONS(9), + [146] = { + [sym__gap] = STATE(1445), + [sym_dis_expr] = STATE(1445), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_defun_keyword] = STATE(760), + [sym_defun_header] = STATE(160), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(166), + [sym__ws] = ACTIONS(3082), + [sym_comment] = ACTIONS(3082), + [anon_sym_POUND_] = ACTIONS(3018), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2705), + [anon_sym_RPAREN] = ACTIONS(3084), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18312,63 +22407,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(2431), - [anon_sym_cl] = ACTIONS(49), + [sym_fancy_literal] = ACTIONS(3020), + [anon_sym_cl] = ACTIONS(3086), + [anon_sym_loop] = ACTIONS(3088), + [anon_sym_defun] = ACTIONS(3028), + [anon_sym_defmacro] = ACTIONS(3028), + [anon_sym_defgeneric] = ACTIONS(3028), + [anon_sym_defmethod] = ACTIONS(3028), + [anon_sym_lambda] = ACTIONS(3030), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [108] = { - [sym__gap] = STATE(104), - [sym_dis_expr] = STATE(104), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(103), - [sym__ws] = ACTIONS(2707), - [sym_comment] = ACTIONS(2707), - [anon_sym_POUND_] = ACTIONS(9), + [147] = { + [sym__gap] = STATE(1441), + [sym_dis_expr] = STATE(1441), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_defun_keyword] = STATE(760), + [sym_defun_header] = STATE(256), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(255), + [sym__ws] = ACTIONS(3090), + [sym_comment] = ACTIONS(3090), + [anon_sym_POUND_] = ACTIONS(3018), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2709), + [anon_sym_RPAREN] = ACTIONS(3092), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18379,63 +22482,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(2431), - [anon_sym_cl] = ACTIONS(49), + [sym_fancy_literal] = ACTIONS(3020), + [anon_sym_cl] = ACTIONS(3094), + [anon_sym_loop] = ACTIONS(3096), + [anon_sym_defun] = ACTIONS(3028), + [anon_sym_defmacro] = ACTIONS(3028), + [anon_sym_defgeneric] = ACTIONS(3028), + [anon_sym_defmethod] = ACTIONS(3028), + [anon_sym_lambda] = ACTIONS(3030), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [109] = { - [sym__gap] = STATE(105), - [sym_dis_expr] = STATE(105), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(105), - [sym__ws] = ACTIONS(2711), - [sym_comment] = ACTIONS(2711), - [anon_sym_POUND_] = ACTIONS(9), + [148] = { + [sym__gap] = STATE(1443), + [sym_dis_expr] = STATE(1443), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_defun_keyword] = STATE(760), + [sym_defun_header] = STATE(199), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(198), + [sym__ws] = ACTIONS(3098), + [sym_comment] = ACTIONS(3098), + [anon_sym_POUND_] = ACTIONS(3018), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2713), + [anon_sym_RPAREN] = ACTIONS(3100), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18446,63 +22557,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(2431), - [anon_sym_cl] = ACTIONS(49), + [sym_fancy_literal] = ACTIONS(3020), + [anon_sym_cl] = ACTIONS(3102), + [anon_sym_loop] = ACTIONS(3104), + [anon_sym_defun] = ACTIONS(3028), + [anon_sym_defmacro] = ACTIONS(3028), + [anon_sym_defgeneric] = ACTIONS(3028), + [anon_sym_defmethod] = ACTIONS(3028), + [anon_sym_lambda] = ACTIONS(3030), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [110] = { - [sym__gap] = STATE(115), - [sym_dis_expr] = STATE(115), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(115), - [sym__ws] = ACTIONS(2715), - [sym_comment] = ACTIONS(2715), + [149] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3106), + [sym_comment] = ACTIONS(3106), + [anon_sym_POUND_] = ACTIONS(3109), + [anon_sym_POUND] = ACTIONS(3112), + [anon_sym_DOT] = ACTIONS(3115), + [aux_sym_num_lit_token1] = ACTIONS(3118), + [anon_sym_COLON] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym_nil_lit] = ACTIONS(3115), + [aux_sym_sym_lit_token1] = ACTIONS(3130), + [anon_sym_CARET] = ACTIONS(3133), + [anon_sym_POUND_CARET] = ACTIONS(3136), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_POUND0A] = ACTIONS(3144), + [anon_sym_POUND0a] = ACTIONS(3144), + [anon_sym_POUND_QMARK] = ACTIONS(3147), + [anon_sym_POUND_QMARK_AT] = ACTIONS(3150), + [anon_sym_POUND_SQUOTE] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_BQUOTE] = ACTIONS(3159), + [anon_sym_COMMA_AT] = ACTIONS(3162), + [anon_sym_COMMA] = ACTIONS(3165), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3115), + [anon_sym_cl] = ACTIONS(3168), + [anon_sym_POUNDP] = ACTIONS(3171), + [anon_sym_POUNDp] = ACTIONS(3171), + [sym_self_referential_reader_macro] = ACTIONS(3174), + [anon_sym_POUND_PLUS] = ACTIONS(3177), + [anon_sym_POUND_DASH] = ACTIONS(3177), + [anon_sym_POUNDC] = ACTIONS(3180), + [anon_sym_POUNDc] = ACTIONS(3180), + }, + [150] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2717), + [anon_sym_RPAREN] = ACTIONS(3185), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18513,63 +22698,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [111] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [151] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2719), + [anon_sym_RPAREN] = ACTIONS(3187), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18580,63 +22765,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [112] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [152] = { + [sym__gap] = STATE(239), + [sym_dis_expr] = STATE(239), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(240), + [sym__ws] = ACTIONS(3189), + [sym_comment] = ACTIONS(3189), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2721), + [anon_sym_RPAREN] = ACTIONS(3191), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18647,63 +22832,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [113] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [153] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2723), + [anon_sym_RPAREN] = ACTIONS(3193), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18714,63 +22899,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [114] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [154] = { + [sym__gap] = STATE(167), + [sym_dis_expr] = STATE(167), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(167), + [sym__ws] = ACTIONS(3195), + [sym_comment] = ACTIONS(3195), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2725), + [anon_sym_RBRACE] = ACTIONS(3197), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18781,63 +22966,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [115] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [155] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2727), + [anon_sym_RPAREN] = ACTIONS(3199), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18848,63 +23033,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [116] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [156] = { + [sym__gap] = STATE(247), + [sym_dis_expr] = STATE(247), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(247), + [sym__ws] = ACTIONS(3201), + [sym_comment] = ACTIONS(3201), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2729), + [anon_sym_RPAREN] = ACTIONS(3191), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18915,63 +23100,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [117] = { - [sym__gap] = STATE(120), - [sym_dis_expr] = STATE(120), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(120), - [sym__ws] = ACTIONS(2731), - [sym_comment] = ACTIONS(2731), + [157] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2733), + [anon_sym_RPAREN] = ACTIONS(3203), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18982,63 +23167,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [118] = { - [sym__gap] = STATE(138), - [sym_dis_expr] = STATE(138), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(140), - [sym__ws] = ACTIONS(2735), - [sym_comment] = ACTIONS(2735), + [158] = { + [sym__gap] = STATE(151), + [sym_dis_expr] = STATE(151), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(151), + [sym__ws] = ACTIONS(3205), + [sym_comment] = ACTIONS(3205), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2737), + [anon_sym_RPAREN] = ACTIONS(3207), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19049,63 +23234,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [119] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [159] = { + [sym__gap] = STATE(202), + [sym_dis_expr] = STATE(202), + [sym__form] = STATE(1851), + [sym_num_lit] = STATE(1851), + [sym_kwd_lit] = STATE(1851), + [sym_str_lit] = STATE(1851), + [sym_char_lit] = STATE(1851), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1851), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1851), + [sym_set_lit] = STATE(1851), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1851), + [sym_splicing_read_cond_lit] = STATE(1851), + [sym_var_quoting_lit] = STATE(1851), + [sym_quoting_lit] = STATE(1851), + [sym_syn_quoting_lit] = STATE(1851), + [sym_unquote_splicing_lit] = STATE(1851), + [sym_unquoting_lit] = STATE(1851), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1851), + [sym_package_lit] = STATE(1851), + [sym_include_reader_macro] = STATE(1851), + [sym_complex_num_lit] = STATE(1851), + [aux_sym_source_repeat1] = STATE(202), + [aux_sym_list_lit_repeat1] = STATE(2330), + [ts_builtin_sym_end] = ACTIONS(3209), + [sym__ws] = ACTIONS(3211), + [sym_comment] = ACTIONS(3211), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [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(2431), + [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(2739), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19116,63 +23301,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(2431), + [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(2443), + [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), }, - [120] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [160] = { + [sym__gap] = STATE(170), + [sym_dis_expr] = STATE(170), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(174), + [sym__ws] = ACTIONS(3213), + [sym_comment] = ACTIONS(3213), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2741), + [anon_sym_RPAREN] = ACTIONS(3215), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19183,63 +23368,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [121] = { - [sym__gap] = STATE(97), - [sym_dis_expr] = STATE(97), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(98), - [sym__ws] = ACTIONS(2743), - [sym_comment] = ACTIONS(2743), + [161] = { + [sym__gap] = STATE(364), + [sym_dis_expr] = STATE(364), + [sym__form] = STATE(830), + [sym_num_lit] = STATE(830), + [sym_kwd_lit] = STATE(830), + [sym_str_lit] = STATE(830), + [sym_char_lit] = STATE(830), + [sym_sym_lit] = STATE(976), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(830), + [sym__bare_list_lit] = STATE(983), + [sym_vec_lit] = STATE(830), + [sym_set_lit] = STATE(830), + [sym__bare_set_lit] = STATE(986), + [sym_read_cond_lit] = STATE(830), + [sym_splicing_read_cond_lit] = STATE(830), + [sym_var_quoting_lit] = STATE(830), + [sym_quoting_lit] = STATE(830), + [sym_syn_quoting_lit] = STATE(830), + [sym_unquote_splicing_lit] = STATE(830), + [sym_unquoting_lit] = STATE(830), + [sym_defun] = STATE(983), + [sym_loop_macro] = STATE(983), + [sym_path_lit] = STATE(830), + [sym_package_lit] = STATE(830), + [sym_include_reader_macro] = STATE(830), + [sym_complex_num_lit] = STATE(830), + [aux_sym_dis_expr_repeat1] = STATE(364), + [aux_sym_list_lit_repeat1] = STATE(2347), + [aux_sym_do_clause_repeat1] = STATE(25), + [sym__ws] = ACTIONS(3217), + [sym_comment] = ACTIONS(3217), [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), - [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_POUND] = ACTIONS(773), + [anon_sym_DOT] = ACTIONS(775), + [aux_sym_num_lit_token1] = ACTIONS(777), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_COLON_COLON] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(783), + [sym_nil_lit] = ACTIONS(775), + [aux_sym_sym_lit_token1] = ACTIONS(785), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_POUND0A] = ACTIONS(787), + [anon_sym_POUND0a] = ACTIONS(787), + [anon_sym_POUND_QMARK] = ACTIONS(789), + [anon_sym_POUND_QMARK_AT] = ACTIONS(791), + [anon_sym_POUND_SQUOTE] = ACTIONS(793), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(797), + [anon_sym_COMMA_AT] = ACTIONS(799), + [anon_sym_COMMA] = ACTIONS(801), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(775), + [anon_sym_cl] = ACTIONS(3221), + [anon_sym_POUNDP] = ACTIONS(805), + [anon_sym_POUNDp] = ACTIONS(805), + [sym_self_referential_reader_macro] = ACTIONS(807), + [anon_sym_POUND_PLUS] = ACTIONS(809), + [anon_sym_POUND_DASH] = ACTIONS(809), + [anon_sym_POUNDC] = ACTIONS(811), + [anon_sym_POUNDc] = ACTIONS(811), + }, + [162] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(3020), + [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2745), + [anon_sym_RPAREN] = ACTIONS(3223), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19250,63 +23502,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [122] = { - [sym__gap] = STATE(129), - [sym_dis_expr] = STATE(129), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(129), - [sym__ws] = ACTIONS(2747), - [sym_comment] = ACTIONS(2747), + [163] = { + [sym__gap] = STATE(153), + [sym_dis_expr] = STATE(153), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(153), + [sym__ws] = ACTIONS(3225), + [sym_comment] = ACTIONS(3225), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2749), + [anon_sym_RPAREN] = ACTIONS(3227), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19317,63 +23569,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [123] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [164] = { + [sym__gap] = STATE(158), + [sym_dis_expr] = STATE(158), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(155), + [sym__ws] = ACTIONS(3229), + [sym_comment] = ACTIONS(3229), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2751), + [anon_sym_RPAREN] = ACTIONS(3227), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19384,63 +23636,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [124] = { - [sym__gap] = STATE(156), - [sym_dis_expr] = STATE(156), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(157), - [sym__ws] = ACTIONS(2753), - [sym_comment] = ACTIONS(2753), + [165] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2755), + [anon_sym_RBRACE] = ACTIONS(3231), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19451,63 +23703,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [125] = { - [sym__gap] = STATE(131), - [sym_dis_expr] = STATE(131), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(133), - [sym__ws] = ACTIONS(2757), - [sym_comment] = ACTIONS(2757), + [166] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2759), + [anon_sym_RPAREN] = ACTIONS(3233), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19518,63 +23770,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [126] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [167] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2761), + [anon_sym_RBRACE] = ACTIONS(3235), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19585,63 +23837,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [127] = { - [sym__gap] = STATE(114), - [sym_dis_expr] = STATE(114), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(114), - [sym__ws] = ACTIONS(2763), - [sym_comment] = ACTIONS(2763), + [168] = { + [sym__gap] = STATE(175), + [sym_dis_expr] = STATE(175), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(176), + [sym__ws] = ACTIONS(3237), + [sym_comment] = ACTIONS(3237), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2765), + [anon_sym_RPAREN] = ACTIONS(3239), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19652,63 +23904,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [128] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [169] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2767), + [anon_sym_RPAREN] = ACTIONS(3241), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19719,63 +23971,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [129] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [170] = { + [sym__gap] = STATE(177), + [sym_dis_expr] = STATE(177), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(177), + [sym__ws] = ACTIONS(3243), + [sym_comment] = ACTIONS(3243), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2769), + [anon_sym_RPAREN] = ACTIONS(3239), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19786,63 +24038,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [130] = { - [sym__gap] = STATE(135), - [sym_dis_expr] = STATE(135), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(137), - [sym__ws] = ACTIONS(2771), - [sym_comment] = ACTIONS(2771), + [171] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2773), + [anon_sym_RBRACE] = ACTIONS(3245), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19853,63 +24105,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [131] = { - [sym__gap] = STATE(145), - [sym_dis_expr] = STATE(145), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(145), - [sym__ws] = ACTIONS(2775), - [sym_comment] = ACTIONS(2775), + [172] = { + [sym__gap] = STATE(163), + [sym_dis_expr] = STATE(163), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(162), + [sym__ws] = ACTIONS(3247), + [sym_comment] = ACTIONS(3247), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2773), + [anon_sym_RPAREN] = ACTIONS(3249), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19920,63 +24172,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [132] = { - [sym__gap] = STATE(128), - [sym_dis_expr] = STATE(128), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(128), - [sym__ws] = ACTIONS(2777), - [sym_comment] = ACTIONS(2777), + [173] = { + [sym__gap] = STATE(165), + [sym_dis_expr] = STATE(165), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(165), + [sym__ws] = ACTIONS(3251), + [sym_comment] = ACTIONS(3251), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2779), + [anon_sym_RBRACE] = ACTIONS(3253), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19987,63 +24239,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [133] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [174] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2781), + [anon_sym_RPAREN] = ACTIONS(3255), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20054,63 +24306,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [134] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [175] = { + [sym__gap] = STATE(180), + [sym_dis_expr] = STATE(180), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(180), + [sym__ws] = ACTIONS(3257), + [sym_comment] = ACTIONS(3257), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2783), + [anon_sym_RPAREN] = ACTIONS(3259), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20121,63 +24373,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [135] = { - [sym__gap] = STATE(95), - [sym_dis_expr] = STATE(95), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(95), - [sym__ws] = ACTIONS(2785), - [sym_comment] = ACTIONS(2785), + [176] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2787), + [anon_sym_RPAREN] = ACTIONS(3261), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20188,63 +24440,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [136] = { - [sym__gap] = STATE(141), - [sym_dis_expr] = STATE(141), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(142), - [sym__ws] = ACTIONS(2789), - [sym_comment] = ACTIONS(2789), + [177] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2791), + [anon_sym_RPAREN] = ACTIONS(3263), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20255,63 +24507,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [137] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [178] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2793), + [anon_sym_RPAREN] = ACTIONS(3265), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20322,63 +24574,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [138] = { - [sym__gap] = STATE(143), - [sym_dis_expr] = STATE(143), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(143), - [sym__ws] = ACTIONS(2795), - [sym_comment] = ACTIONS(2795), + [179] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2791), + [anon_sym_RPAREN] = ACTIONS(3267), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20389,130 +24641,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [139] = { - [sym__gap] = STATE(229), - [sym_dis_expr] = STATE(229), - [sym__form] = STATE(778), - [sym_num_lit] = STATE(778), - [sym_kwd_lit] = STATE(778), - [sym_str_lit] = STATE(778), - [sym_char_lit] = STATE(778), - [sym_sym_lit] = STATE(1003), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(778), - [sym__bare_list_lit] = STATE(1024), - [sym_vec_lit] = STATE(778), - [sym_set_lit] = STATE(778), - [sym__bare_set_lit] = STATE(1023), - [sym_read_cond_lit] = STATE(778), - [sym_splicing_read_cond_lit] = STATE(778), - [sym_var_quoting_lit] = STATE(778), - [sym_quoting_lit] = STATE(778), - [sym_syn_quoting_lit] = STATE(778), - [sym_unquote_splicing_lit] = STATE(778), - [sym_unquoting_lit] = STATE(778), - [sym_defun] = STATE(1024), - [sym_loop_macro] = STATE(1024), - [sym_path_lit] = STATE(778), - [sym_package_lit] = STATE(778), - [sym_include_reader_macro] = STATE(778), - [sym_complex_num_lit] = STATE(778), - [aux_sym_dis_expr_repeat1] = STATE(229), - [aux_sym_list_lit_repeat1] = STATE(2101), - [aux_sym_do_clause_repeat1] = STATE(6), - [sym__ws] = ACTIONS(2797), - [sym_comment] = ACTIONS(2797), - [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [aux_sym_num_lit_token1] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(290), - [anon_sym_COLON_COLON] = ACTIONS(292), - [anon_sym_DQUOTE] = ACTIONS(294), - [sym_nil_lit] = ACTIONS(286), - [aux_sym_sym_lit_token1] = ACTIONS(296), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2799), - [anon_sym_POUND0A] = ACTIONS(298), - [anon_sym_POUND0a] = ACTIONS(298), - [anon_sym_POUND_QMARK] = ACTIONS(300), - [anon_sym_POUND_QMARK_AT] = ACTIONS(302), - [anon_sym_POUND_SQUOTE] = ACTIONS(304), - [anon_sym_SQUOTE] = ACTIONS(306), - [anon_sym_BQUOTE] = ACTIONS(308), - [anon_sym_COMMA_AT] = ACTIONS(310), - [anon_sym_COMMA] = ACTIONS(312), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(286), - [anon_sym_cl] = ACTIONS(2801), - [anon_sym_POUNDP] = ACTIONS(316), - [anon_sym_POUNDp] = ACTIONS(316), - [sym_self_referential_reader_macro] = ACTIONS(318), - [anon_sym_POUND_PLUS] = ACTIONS(320), - [anon_sym_POUND_DASH] = ACTIONS(320), - [anon_sym_POUNDC] = ACTIONS(322), - [anon_sym_POUNDc] = ACTIONS(322), - }, - [140] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [180] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2803), + [anon_sym_RPAREN] = ACTIONS(3269), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20523,63 +24708,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [141] = { - [sym__gap] = STATE(144), - [sym_dis_expr] = STATE(144), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(144), - [sym__ws] = ACTIONS(2805), - [sym_comment] = ACTIONS(2805), + [181] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2807), + [anon_sym_RPAREN] = ACTIONS(3271), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20590,63 +24775,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [142] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [182] = { + [sym__gap] = STATE(187), + [sym_dis_expr] = STATE(187), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(187), + [sym__ws] = ACTIONS(3273), + [sym_comment] = ACTIONS(3273), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2809), + [anon_sym_RBRACE] = ACTIONS(3275), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20657,63 +24842,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [143] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [183] = { + [sym__gap] = STATE(178), + [sym_dis_expr] = STATE(178), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(178), + [sym__ws] = ACTIONS(3277), + [sym_comment] = ACTIONS(3277), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2811), + [anon_sym_RPAREN] = ACTIONS(3279), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20724,63 +24909,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [144] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [184] = { + [sym__gap] = STATE(189), + [sym_dis_expr] = STATE(189), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(190), + [sym__ws] = ACTIONS(3281), + [sym_comment] = ACTIONS(3281), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2813), + [anon_sym_RPAREN] = ACTIONS(3283), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20791,63 +24976,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [145] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [185] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2815), + [anon_sym_RPAREN] = ACTIONS(3285), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20858,63 +25043,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [146] = { + [186] = { [sym__gap] = STATE(149), [sym_dis_expr] = STATE(149), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), [aux_sym__bare_list_lit_repeat1] = STATE(149), - [sym__ws] = ACTIONS(2817), - [sym_comment] = ACTIONS(2817), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2819), + [anon_sym_RBRACE] = ACTIONS(3287), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20925,63 +25110,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [147] = { - [sym__gap] = STATE(162), - [sym_dis_expr] = STATE(162), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(167), - [sym__ws] = ACTIONS(2821), - [sym_comment] = ACTIONS(2821), + [187] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2823), + [anon_sym_RBRACE] = ACTIONS(3289), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20992,63 +25177,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [148] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [188] = { + [sym__gap] = STATE(195), + [sym_dis_expr] = STATE(195), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(196), + [sym__ws] = ACTIONS(3291), + [sym_comment] = ACTIONS(3291), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2825), + [anon_sym_RPAREN] = ACTIONS(3293), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21059,63 +25244,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [149] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [189] = { + [sym__gap] = STATE(197), + [sym_dis_expr] = STATE(197), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(197), + [sym__ws] = ACTIONS(3295), + [sym_comment] = ACTIONS(3295), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2827), + [anon_sym_RPAREN] = ACTIONS(3293), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21126,63 +25311,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [150] = { - [sym__gap] = STATE(111), - [sym_dis_expr] = STATE(111), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(111), - [sym__ws] = ACTIONS(2829), - [sym_comment] = ACTIONS(2829), + [190] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2831), + [anon_sym_RPAREN] = ACTIONS(3297), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21193,63 +25378,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [151] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [191] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2833), + [anon_sym_RPAREN] = ACTIONS(3299), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21260,63 +25445,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [152] = { - [sym__gap] = STATE(200), - [sym_dis_expr] = STATE(200), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(204), - [sym__ws] = ACTIONS(2835), - [sym_comment] = ACTIONS(2835), + [192] = { + [sym__gap] = STATE(179), + [sym_dis_expr] = STATE(179), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(179), + [sym__ws] = ACTIONS(3301), + [sym_comment] = ACTIONS(3301), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2837), + [anon_sym_RPAREN] = ACTIONS(3303), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21327,63 +25512,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [153] = { - [sym__gap] = STATE(159), - [sym_dis_expr] = STATE(159), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(159), - [sym__ws] = ACTIONS(2839), - [sym_comment] = ACTIONS(2839), + [193] = { + [sym__gap] = STATE(183), + [sym_dis_expr] = STATE(183), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(181), + [sym__ws] = ACTIONS(3305), + [sym_comment] = ACTIONS(3305), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2841), + [anon_sym_RPAREN] = ACTIONS(3303), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21394,63 +25579,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [154] = { - [sym__gap] = STATE(99), - [sym_dis_expr] = STATE(99), - [sym__form] = STATE(1664), - [sym_num_lit] = STATE(1664), - [sym_kwd_lit] = STATE(1664), - [sym_str_lit] = STATE(1664), - [sym_char_lit] = STATE(1664), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1664), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1664), - [sym_set_lit] = STATE(1664), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1664), - [sym_splicing_read_cond_lit] = STATE(1664), - [sym_var_quoting_lit] = STATE(1664), - [sym_quoting_lit] = STATE(1664), - [sym_syn_quoting_lit] = STATE(1664), - [sym_unquote_splicing_lit] = STATE(1664), - [sym_unquoting_lit] = STATE(1664), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1664), - [sym_package_lit] = STATE(1664), - [sym_include_reader_macro] = STATE(1664), - [sym_complex_num_lit] = STATE(1664), - [aux_sym_source_repeat1] = STATE(99), - [aux_sym_list_lit_repeat1] = STATE(2089), - [ts_builtin_sym_end] = ACTIONS(2843), - [sym__ws] = ACTIONS(2845), - [sym_comment] = ACTIONS(2845), + [194] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_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(3020), [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(3307), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21461,63 +25646,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(3020), [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(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [155] = { - [sym__gap] = STATE(164), - [sym_dis_expr] = STATE(164), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(165), - [sym__ws] = ACTIONS(2847), - [sym_comment] = ACTIONS(2847), + [195] = { + [sym__gap] = STATE(201), + [sym_dis_expr] = STATE(201), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(201), + [sym__ws] = ACTIONS(3309), + [sym_comment] = ACTIONS(3309), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2849), + [anon_sym_RPAREN] = ACTIONS(3311), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21528,63 +25713,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [156] = { - [sym__gap] = STATE(196), - [sym_dis_expr] = STATE(196), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(196), - [sym__ws] = ACTIONS(2851), - [sym_comment] = ACTIONS(2851), + [196] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2837), + [anon_sym_RPAREN] = ACTIONS(3313), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21595,63 +25780,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [157] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [197] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2853), + [anon_sym_RPAREN] = ACTIONS(3315), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21662,63 +25847,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [158] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [198] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2855), + [anon_sym_RPAREN] = ACTIONS(3317), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21729,63 +25914,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [159] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [199] = { + [sym__gap] = STATE(192), + [sym_dis_expr] = STATE(192), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(191), + [sym__ws] = ACTIONS(3319), + [sym_comment] = ACTIONS(3319), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2857), + [anon_sym_RPAREN] = ACTIONS(3321), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21796,63 +25981,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [160] = { - [sym__gap] = STATE(168), - [sym_dis_expr] = STATE(168), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(169), - [sym__ws] = ACTIONS(2859), - [sym_comment] = ACTIONS(2859), + [200] = { + [sym__gap] = STATE(194), + [sym_dis_expr] = STATE(194), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(194), + [sym__ws] = ACTIONS(3323), + [sym_comment] = ACTIONS(3323), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2861), + [anon_sym_RBRACE] = ACTIONS(3325), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21863,63 +26048,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [161] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [201] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2863), + [anon_sym_RPAREN] = ACTIONS(3327), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21930,63 +26115,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [162] = { - [sym__gap] = STATE(170), - [sym_dis_expr] = STATE(170), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(170), - [sym__ws] = ACTIONS(2865), - [sym_comment] = ACTIONS(2865), + [202] = { + [sym__gap] = STATE(202), + [sym_dis_expr] = STATE(202), + [sym__form] = STATE(1851), + [sym_num_lit] = STATE(1851), + [sym_kwd_lit] = STATE(1851), + [sym_str_lit] = STATE(1851), + [sym_char_lit] = STATE(1851), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1851), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1851), + [sym_set_lit] = STATE(1851), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1851), + [sym_splicing_read_cond_lit] = STATE(1851), + [sym_var_quoting_lit] = STATE(1851), + [sym_quoting_lit] = STATE(1851), + [sym_syn_quoting_lit] = STATE(1851), + [sym_unquote_splicing_lit] = STATE(1851), + [sym_unquoting_lit] = STATE(1851), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1851), + [sym_package_lit] = STATE(1851), + [sym_include_reader_macro] = STATE(1851), + [sym_complex_num_lit] = STATE(1851), + [aux_sym_source_repeat1] = STATE(202), + [aux_sym_list_lit_repeat1] = STATE(2330), + [ts_builtin_sym_end] = ACTIONS(3329), + [sym__ws] = ACTIONS(3331), + [sym_comment] = ACTIONS(3331), + [anon_sym_POUND_] = ACTIONS(3334), + [anon_sym_POUND] = ACTIONS(3337), + [anon_sym_DOT] = ACTIONS(3340), + [aux_sym_num_lit_token1] = ACTIONS(3343), + [anon_sym_COLON] = ACTIONS(3346), + [anon_sym_COLON_COLON] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3352), + [sym_nil_lit] = ACTIONS(3340), + [aux_sym_sym_lit_token1] = ACTIONS(3355), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_POUND_CARET] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3364), + [anon_sym_POUND0A] = ACTIONS(3367), + [anon_sym_POUND0a] = ACTIONS(3367), + [anon_sym_POUND_QMARK] = ACTIONS(3370), + [anon_sym_POUND_QMARK_AT] = ACTIONS(3373), + [anon_sym_POUND_SQUOTE] = ACTIONS(3376), + [anon_sym_SQUOTE] = ACTIONS(3379), + [anon_sym_BQUOTE] = ACTIONS(3382), + [anon_sym_COMMA_AT] = ACTIONS(3385), + [anon_sym_COMMA] = ACTIONS(3388), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3340), + [anon_sym_cl] = ACTIONS(3391), + [anon_sym_POUNDP] = ACTIONS(3394), + [anon_sym_POUNDp] = ACTIONS(3394), + [sym_self_referential_reader_macro] = ACTIONS(3397), + [anon_sym_POUND_PLUS] = ACTIONS(3400), + [anon_sym_POUND_DASH] = ACTIONS(3400), + [anon_sym_POUNDC] = ACTIONS(3403), + [anon_sym_POUNDc] = ACTIONS(3403), + }, + [203] = { + [sym__gap] = STATE(210), + [sym_dis_expr] = STATE(210), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(210), + [sym__ws] = ACTIONS(3406), + [sym_comment] = ACTIONS(3406), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2861), + [anon_sym_RBRACE] = ACTIONS(3408), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21997,63 +26249,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [163] = { - [sym__gap] = STATE(166), - [sym_dis_expr] = STATE(166), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(174), - [sym__ws] = ACTIONS(2867), - [sym_comment] = ACTIONS(2867), + [204] = { + [sym__gap] = STATE(216), + [sym_dis_expr] = STATE(216), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(217), + [sym__ws] = ACTIONS(3410), + [sym_comment] = ACTIONS(3410), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2869), + [anon_sym_RPAREN] = ACTIONS(3412), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -22064,63 +26316,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [164] = { - [sym__gap] = STATE(179), - [sym_dis_expr] = STATE(179), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(179), - [sym__ws] = ACTIONS(2871), - [sym_comment] = ACTIONS(2871), + [205] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2869), + [anon_sym_RPAREN] = ACTIONS(3414), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -22131,63 +26383,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [165] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [206] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2873), + [anon_sym_RPAREN] = ACTIONS(3416), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -22198,63 +26450,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [166] = { - [sym__gap] = STATE(181), - [sym_dis_expr] = STATE(181), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(181), - [sym__ws] = ACTIONS(2875), - [sym_comment] = ACTIONS(2875), + [207] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2877), + [anon_sym_RPAREN] = ACTIONS(3418), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -22265,63 +26517,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [167] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [208] = { + [sym__gap] = STATE(205), + [sym_dis_expr] = STATE(205), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(205), + [sym__ws] = ACTIONS(3420), + [sym_comment] = ACTIONS(3420), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2879), + [anon_sym_RPAREN] = ACTIONS(3422), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -22332,63 +26584,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [168] = { - [sym__gap] = STATE(171), - [sym_dis_expr] = STATE(171), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(171), - [sym__ws] = ACTIONS(2881), - [sym_comment] = ACTIONS(2881), + [209] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2883), + [anon_sym_RPAREN] = ACTIONS(3424), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -22399,63 +26651,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [169] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [210] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2885), + [anon_sym_RBRACE] = ACTIONS(3426), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -22466,63 +26718,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [170] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [211] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2887), + [anon_sym_RPAREN] = ACTIONS(3428), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -22533,63 +26785,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [171] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [212] = { + [sym__gap] = STATE(206), + [sym_dis_expr] = STATE(206), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(206), + [sym__ws] = ACTIONS(3430), + [sym_comment] = ACTIONS(3430), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2889), + [anon_sym_RPAREN] = ACTIONS(3432), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -22600,63 +26852,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [172] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [213] = { + [sym__gap] = STATE(208), + [sym_dis_expr] = STATE(208), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(207), + [sym__ws] = ACTIONS(3434), + [sym_comment] = ACTIONS(3434), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2891), + [anon_sym_RPAREN] = ACTIONS(3432), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -22667,63 +26919,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [173] = { - [sym__gap] = STATE(134), - [sym_dis_expr] = STATE(134), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(134), - [sym__ws] = ACTIONS(2893), - [sym_comment] = ACTIONS(2893), + [214] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2895), + [anon_sym_RBRACE] = ACTIONS(3436), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -22734,63 +26986,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [174] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [215] = { + [sym__gap] = STATE(218), + [sym_dis_expr] = STATE(218), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(219), + [sym__ws] = ACTIONS(3438), + [sym_comment] = ACTIONS(3438), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2897), + [anon_sym_RPAREN] = ACTIONS(3440), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -22801,63 +27053,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [175] = { - [sym__gap] = STATE(188), - [sym_dis_expr] = STATE(188), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(188), - [sym__ws] = ACTIONS(2899), - [sym_comment] = ACTIONS(2899), + [216] = { + [sym__gap] = STATE(220), + [sym_dis_expr] = STATE(220), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(220), + [sym__ws] = ACTIONS(3442), + [sym_comment] = ACTIONS(3442), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2901), + [anon_sym_RPAREN] = ACTIONS(3440), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -22868,63 +27120,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [176] = { - [sym__gap] = STATE(193), - [sym_dis_expr] = STATE(193), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(194), - [sym__ws] = ACTIONS(2903), - [sym_comment] = ACTIONS(2903), + [217] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2905), + [anon_sym_RPAREN] = ACTIONS(3444), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -22935,63 +27187,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [177] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [218] = { + [sym__gap] = STATE(221), + [sym_dis_expr] = STATE(221), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(221), + [sym__ws] = ACTIONS(3446), + [sym_comment] = ACTIONS(3446), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2907), + [anon_sym_RPAREN] = ACTIONS(3448), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -23002,63 +27254,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [178] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [219] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2909), + [anon_sym_RPAREN] = ACTIONS(3450), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -23069,63 +27321,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [179] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [220] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2911), + [anon_sym_RPAREN] = ACTIONS(3452), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -23136,63 +27388,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [180] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [221] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2913), + [anon_sym_RPAREN] = ACTIONS(3454), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -23203,63 +27455,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [181] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [222] = { + [sym__gap] = STATE(260), + [sym_dis_expr] = STATE(260), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(260), + [sym__ws] = ACTIONS(3456), + [sym_comment] = ACTIONS(3456), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2915), + [anon_sym_RPAREN] = ACTIONS(3458), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -23270,63 +27522,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [182] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [223] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2917), + [anon_sym_RPAREN] = ACTIONS(3460), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -23337,63 +27589,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [183] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [224] = { + [sym__gap] = STATE(156), + [sym_dis_expr] = STATE(156), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(157), + [sym__ws] = ACTIONS(3462), + [sym_comment] = ACTIONS(3462), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2919), + [anon_sym_RPAREN] = ACTIONS(3464), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -23404,63 +27656,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [184] = { - [sym__gap] = STATE(180), - [sym_dis_expr] = STATE(180), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(180), - [sym__ws] = ACTIONS(2921), - [sym_comment] = ACTIONS(2921), + [225] = { + [sym__gap] = STATE(228), + [sym_dis_expr] = STATE(228), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(230), + [sym__ws] = ACTIONS(3466), + [sym_comment] = ACTIONS(3466), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2923), + [anon_sym_RPAREN] = ACTIONS(3468), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -23471,63 +27723,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [185] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [226] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2925), + [anon_sym_RPAREN] = ACTIONS(3470), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -23538,130 +27790,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [186] = { - [sym__gap] = STATE(229), - [sym_dis_expr] = STATE(229), - [sym__form] = STATE(778), - [sym_num_lit] = STATE(778), - [sym_kwd_lit] = STATE(778), - [sym_str_lit] = STATE(778), - [sym_char_lit] = STATE(778), - [sym_sym_lit] = STATE(1003), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(778), - [sym__bare_list_lit] = STATE(1024), - [sym_vec_lit] = STATE(778), - [sym_set_lit] = STATE(778), - [sym__bare_set_lit] = STATE(1023), - [sym_read_cond_lit] = STATE(778), - [sym_splicing_read_cond_lit] = STATE(778), - [sym_var_quoting_lit] = STATE(778), - [sym_quoting_lit] = STATE(778), - [sym_syn_quoting_lit] = STATE(778), - [sym_unquote_splicing_lit] = STATE(778), - [sym_unquoting_lit] = STATE(778), - [sym_defun] = STATE(1024), - [sym_loop_macro] = STATE(1024), - [sym_path_lit] = STATE(778), - [sym_package_lit] = STATE(778), - [sym_include_reader_macro] = STATE(778), - [sym_complex_num_lit] = STATE(778), - [aux_sym_dis_expr_repeat1] = STATE(229), - [aux_sym_list_lit_repeat1] = STATE(2101), - [aux_sym_do_clause_repeat1] = STATE(10), - [sym__ws] = ACTIONS(2797), - [sym_comment] = ACTIONS(2797), + [227] = { + [sym__gap] = STATE(234), + [sym_dis_expr] = STATE(234), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(235), + [sym__ws] = ACTIONS(3472), + [sym_comment] = ACTIONS(3472), [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [aux_sym_num_lit_token1] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(290), - [anon_sym_COLON_COLON] = ACTIONS(292), - [anon_sym_DQUOTE] = ACTIONS(294), - [sym_nil_lit] = ACTIONS(286), - [aux_sym_sym_lit_token1] = ACTIONS(296), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(3020), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(3020), + [aux_sym_sym_lit_token1] = ACTIONS(23), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2799), - [anon_sym_POUND0A] = ACTIONS(298), - [anon_sym_POUND0a] = ACTIONS(298), - [anon_sym_POUND_QMARK] = ACTIONS(300), - [anon_sym_POUND_QMARK_AT] = ACTIONS(302), - [anon_sym_POUND_SQUOTE] = ACTIONS(304), - [anon_sym_SQUOTE] = ACTIONS(306), - [anon_sym_BQUOTE] = ACTIONS(308), - [anon_sym_COMMA_AT] = ACTIONS(310), - [anon_sym_COMMA] = ACTIONS(312), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(3474), + [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(286), - [anon_sym_cl] = ACTIONS(2801), - [anon_sym_POUNDP] = ACTIONS(316), - [anon_sym_POUNDp] = ACTIONS(316), - [sym_self_referential_reader_macro] = ACTIONS(318), - [anon_sym_POUND_PLUS] = ACTIONS(320), - [anon_sym_POUND_DASH] = ACTIONS(320), - [anon_sym_POUNDC] = ACTIONS(322), - [anon_sym_POUNDc] = ACTIONS(322), + [sym_fancy_literal] = ACTIONS(3020), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(3032), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, - [187] = { - [sym__gap] = STATE(182), - [sym_dis_expr] = STATE(182), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(182), - [sym__ws] = ACTIONS(2927), - [sym_comment] = ACTIONS(2927), + [228] = { + [sym__gap] = STATE(236), + [sym_dis_expr] = STATE(236), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(236), + [sym__ws] = ACTIONS(3476), + [sym_comment] = ACTIONS(3476), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2929), + [anon_sym_RPAREN] = ACTIONS(3474), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -23672,63 +27924,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [188] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [229] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2931), + [anon_sym_RPAREN] = ACTIONS(3478), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -23739,63 +27991,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [189] = { - [sym__gap] = STATE(199), - [sym_dis_expr] = STATE(199), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(198), - [sym__ws] = ACTIONS(2933), - [sym_comment] = ACTIONS(2933), + [230] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2935), + [anon_sym_RPAREN] = ACTIONS(3480), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -23806,63 +28058,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [190] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [231] = { + [sym__gap] = STATE(212), + [sym_dis_expr] = STATE(212), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(211), + [sym__ws] = ACTIONS(3482), + [sym_comment] = ACTIONS(3482), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2937), + [anon_sym_RPAREN] = ACTIONS(3484), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -23873,63 +28125,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [191] = { - [sym__gap] = STATE(161), - [sym_dis_expr] = STATE(161), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(161), - [sym__ws] = ACTIONS(2939), - [sym_comment] = ACTIONS(2939), + [232] = { + [sym__gap] = STATE(171), + [sym_dis_expr] = STATE(171), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(171), + [sym__ws] = ACTIONS(3486), + [sym_comment] = ACTIONS(3486), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2941), + [anon_sym_RBRACE] = ACTIONS(3488), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -23940,63 +28192,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [192] = { - [sym__gap] = STATE(173), - [sym_dis_expr] = STATE(173), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(172), - [sym__ws] = ACTIONS(2943), - [sym_comment] = ACTIONS(2943), + [233] = { + [sym__gap] = STATE(214), + [sym_dis_expr] = STATE(214), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(214), + [sym__ws] = ACTIONS(3490), + [sym_comment] = ACTIONS(3490), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2941), + [anon_sym_RBRACE] = ACTIONS(3492), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -24007,63 +28259,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [193] = { - [sym__gap] = STATE(195), - [sym_dis_expr] = STATE(195), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(195), - [sym__ws] = ACTIONS(2945), - [sym_comment] = ACTIONS(2945), + [234] = { + [sym__gap] = STATE(245), + [sym_dis_expr] = STATE(245), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(245), + [sym__ws] = ACTIONS(3494), + [sym_comment] = ACTIONS(3494), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2935), + [anon_sym_RPAREN] = ACTIONS(3496), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -24074,63 +28326,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [194] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [235] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2947), + [anon_sym_RPAREN] = ACTIONS(3498), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -24141,63 +28393,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [195] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [236] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2949), + [anon_sym_RPAREN] = ACTIONS(3500), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -24208,63 +28460,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [196] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [237] = { + [sym__gap] = STATE(253), + [sym_dis_expr] = STATE(253), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(253), + [sym__ws] = ACTIONS(3502), + [sym_comment] = ACTIONS(3502), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2951), + [anon_sym_RBRACE] = ACTIONS(3504), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -24275,63 +28527,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [197] = { - [sym__gap] = STATE(184), - [sym_dis_expr] = STATE(184), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(183), - [sym__ws] = ACTIONS(2953), - [sym_comment] = ACTIONS(2953), + [238] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2929), + [anon_sym_RPAREN] = ACTIONS(3506), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -24342,63 +28594,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [198] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [239] = { + [sym__gap] = STATE(223), + [sym_dis_expr] = STATE(223), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(223), + [sym__ws] = ACTIONS(3508), + [sym_comment] = ACTIONS(3508), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2955), + [anon_sym_RPAREN] = ACTIONS(3510), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -24409,63 +28661,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [199] = { - [sym__gap] = STATE(207), - [sym_dis_expr] = STATE(207), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(207), - [sym__ws] = ACTIONS(2957), - [sym_comment] = ACTIONS(2957), + [240] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2959), + [anon_sym_RPAREN] = ACTIONS(3512), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -24476,63 +28728,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [200] = { - [sym__gap] = STATE(178), - [sym_dis_expr] = STATE(178), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(178), - [sym__ws] = ACTIONS(2961), - [sym_comment] = ACTIONS(2961), + [241] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2963), + [anon_sym_RPAREN] = ACTIONS(3514), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -24543,63 +28795,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [201] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [242] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2965), + [anon_sym_RPAREN] = ACTIONS(3516), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -24610,63 +28862,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [202] = { - [sym__gap] = STATE(191), - [sym_dis_expr] = STATE(191), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(190), - [sym__ws] = ACTIONS(2967), - [sym_comment] = ACTIONS(2967), + [243] = { + [sym__gap] = STATE(238), + [sym_dis_expr] = STATE(238), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(238), + [sym__ws] = ACTIONS(3518), + [sym_comment] = ACTIONS(3518), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2969), + [anon_sym_RPAREN] = ACTIONS(3520), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -24677,63 +28929,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [203] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [244] = { + [sym__gap] = STATE(364), + [sym_dis_expr] = STATE(364), + [sym__form] = STATE(830), + [sym_num_lit] = STATE(830), + [sym_kwd_lit] = STATE(830), + [sym_str_lit] = STATE(830), + [sym_char_lit] = STATE(830), + [sym_sym_lit] = STATE(976), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(830), + [sym__bare_list_lit] = STATE(983), + [sym_vec_lit] = STATE(830), + [sym_set_lit] = STATE(830), + [sym__bare_set_lit] = STATE(986), + [sym_read_cond_lit] = STATE(830), + [sym_splicing_read_cond_lit] = STATE(830), + [sym_var_quoting_lit] = STATE(830), + [sym_quoting_lit] = STATE(830), + [sym_syn_quoting_lit] = STATE(830), + [sym_unquote_splicing_lit] = STATE(830), + [sym_unquoting_lit] = STATE(830), + [sym_defun] = STATE(983), + [sym_loop_macro] = STATE(983), + [sym_path_lit] = STATE(830), + [sym_package_lit] = STATE(830), + [sym_include_reader_macro] = STATE(830), + [sym_complex_num_lit] = STATE(830), + [aux_sym_dis_expr_repeat1] = STATE(364), + [aux_sym_list_lit_repeat1] = STATE(2347), + [aux_sym_do_clause_repeat1] = STATE(21), + [sym__ws] = ACTIONS(3217), + [sym_comment] = ACTIONS(3217), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(773), + [anon_sym_DOT] = ACTIONS(775), + [aux_sym_num_lit_token1] = ACTIONS(777), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_COLON_COLON] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(783), + [sym_nil_lit] = ACTIONS(775), + [aux_sym_sym_lit_token1] = ACTIONS(785), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_POUND0A] = ACTIONS(787), + [anon_sym_POUND0a] = ACTIONS(787), + [anon_sym_POUND_QMARK] = ACTIONS(789), + [anon_sym_POUND_QMARK_AT] = ACTIONS(791), + [anon_sym_POUND_SQUOTE] = ACTIONS(793), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_BQUOTE] = ACTIONS(797), + [anon_sym_COMMA_AT] = ACTIONS(799), + [anon_sym_COMMA] = ACTIONS(801), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(775), + [anon_sym_cl] = ACTIONS(3221), + [anon_sym_POUNDP] = ACTIONS(805), + [anon_sym_POUNDp] = ACTIONS(805), + [sym_self_referential_reader_macro] = ACTIONS(807), + [anon_sym_POUND_PLUS] = ACTIONS(809), + [anon_sym_POUND_DASH] = ACTIONS(809), + [anon_sym_POUNDC] = ACTIONS(811), + [anon_sym_POUNDc] = ACTIONS(811), + }, + [245] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2971), + [anon_sym_RPAREN] = ACTIONS(3522), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -24744,63 +29063,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [204] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [246] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2973), + [anon_sym_RPAREN] = ACTIONS(3524), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -24811,63 +29130,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [205] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [247] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2975), + [anon_sym_RPAREN] = ACTIONS(3526), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -24878,63 +29197,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [206] = { - [sym__gap] = STATE(187), - [sym_dis_expr] = STATE(187), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(185), - [sym__ws] = ACTIONS(2977), - [sym_comment] = ACTIONS(2977), + [248] = { + [sym__gap] = STATE(241), + [sym_dis_expr] = STATE(241), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(241), + [sym__ws] = ACTIONS(3528), + [sym_comment] = ACTIONS(3528), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2979), + [anon_sym_RPAREN] = ACTIONS(3530), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -24945,63 +29264,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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [207] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1653), - [sym_num_lit] = STATE(1653), - [sym_kwd_lit] = STATE(1653), - [sym_str_lit] = STATE(1653), - [sym_char_lit] = STATE(1653), - [sym_sym_lit] = STATE(1618), - [sym__metadata_lit] = STATE(2197), - [sym_meta_lit] = STATE(2148), - [sym_old_meta_lit] = STATE(2152), - [sym_list_lit] = STATE(1653), - [sym__bare_list_lit] = STATE(1617), - [sym_vec_lit] = STATE(1653), - [sym_set_lit] = STATE(1653), - [sym__bare_set_lit] = STATE(1616), - [sym_read_cond_lit] = STATE(1653), - [sym_splicing_read_cond_lit] = STATE(1653), - [sym_var_quoting_lit] = STATE(1653), - [sym_quoting_lit] = STATE(1653), - [sym_syn_quoting_lit] = STATE(1653), - [sym_unquote_splicing_lit] = STATE(1653), - [sym_unquoting_lit] = STATE(1653), - [sym_defun] = STATE(1617), - [sym_loop_macro] = STATE(1617), - [sym_path_lit] = STATE(1653), - [sym_package_lit] = STATE(1653), - [sym_include_reader_macro] = STATE(1653), - [sym_complex_num_lit] = STATE(1653), - [aux_sym_list_lit_repeat1] = STATE(2089), - [aux_sym__bare_list_lit_repeat1] = STATE(93), - [sym__ws] = ACTIONS(2598), - [sym_comment] = ACTIONS(2598), + [249] = { + [sym__gap] = STATE(243), + [sym_dis_expr] = STATE(243), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(242), + [sym__ws] = ACTIONS(3532), + [sym_comment] = ACTIONS(3532), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(3020), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(2431), + [sym_nil_lit] = ACTIONS(3020), [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(2981), + [anon_sym_RPAREN] = ACTIONS(3530), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -25012,500 +29331,1038 @@ 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(2431), + [sym_fancy_literal] = ACTIONS(3020), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(2443), + [sym_self_referential_reader_macro] = ACTIONS(3032), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2985), 1, - anon_sym_POUND, - ACTIONS(2989), 1, - aux_sym_num_lit_token1, - ACTIONS(2991), 1, - anon_sym_COLON, - ACTIONS(2993), 1, - anon_sym_COLON_COLON, - ACTIONS(2995), 1, - anon_sym_DQUOTE, - ACTIONS(2997), 1, - aux_sym_sym_lit_token1, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3003), 1, - anon_sym_POUND_QMARK, - ACTIONS(3005), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, - anon_sym_SQUOTE, - ACTIONS(3011), 1, - anon_sym_BQUOTE, - ACTIONS(3013), 1, - anon_sym_COMMA_AT, - ACTIONS(3015), 1, - anon_sym_COMMA, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3021), 1, - sym_self_referential_reader_macro, - STATE(2103), 1, - aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3001), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3023), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(2987), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2277), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1827), 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, - [135] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(154), 1, - anon_sym_POUND, - ACTIONS(158), 1, - aux_sym_num_lit_token1, - ACTIONS(160), 1, - anon_sym_COLON, - ACTIONS(162), 1, - anon_sym_COLON_COLON, - ACTIONS(164), 1, - anon_sym_DQUOTE, - ACTIONS(166), 1, - aux_sym_sym_lit_token1, - ACTIONS(181), 1, - anon_sym_POUND_QMARK, - ACTIONS(183), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, - anon_sym_SQUOTE, - ACTIONS(189), 1, - anon_sym_BQUOTE, - ACTIONS(191), 1, - anon_sym_COMMA_AT, - ACTIONS(193), 1, - anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3033), 1, - sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2102), 1, - aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - ACTIONS(179), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(202), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(206), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(208), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3027), 2, - sym__ws, - sym_comment, - ACTIONS(3029), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(706), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1902), 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, - [270] = 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(3037), 1, - anon_sym_POUND, - ACTIONS(3041), 1, - aux_sym_num_lit_token1, - ACTIONS(3045), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, - anon_sym_SQUOTE, - ACTIONS(3049), 1, - anon_sym_BQUOTE, - ACTIONS(3051), 1, - anon_sym_COMMA_AT, - ACTIONS(3053), 1, - anon_sym_COMMA, - ACTIONS(3055), 1, - sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2093), 1, - aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3035), 2, - sym__ws, - sym_comment, - ACTIONS(3043), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3057), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3039), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(386), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 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, - [405] = 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(3037), 1, - anon_sym_POUND, - ACTIONS(3041), 1, - aux_sym_num_lit_token1, - ACTIONS(3045), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, - anon_sym_SQUOTE, - ACTIONS(3049), 1, - anon_sym_BQUOTE, - ACTIONS(3051), 1, - anon_sym_COMMA_AT, - ACTIONS(3053), 1, - anon_sym_COMMA, - ACTIONS(3063), 1, - sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2093), 1, - aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3043), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3057), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3059), 2, - sym__ws, - sym_comment, - ACTIONS(3061), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(350), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1572), 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, - [540] = 35, + [250] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(3020), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(3020), + [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(3534), + [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(3020), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(3032), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [251] = { + [sym__gap] = STATE(222), + [sym_dis_expr] = STATE(222), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(263), + [sym__ws] = ACTIONS(3536), + [sym_comment] = ACTIONS(3536), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(3020), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(3020), + [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(3538), + [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(3020), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(3032), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [252] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(3020), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(3020), + [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(3540), + [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(3020), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(3032), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [253] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(3020), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(3020), + [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(3542), + [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(3020), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(3032), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [254] = { + [sym__gap] = STATE(262), + [sym_dis_expr] = STATE(262), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(261), + [sym__ws] = ACTIONS(3544), + [sym_comment] = ACTIONS(3544), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(3020), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(3020), + [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(3458), + [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(3020), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(3032), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [255] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(3020), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(3020), + [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(3546), + [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(3020), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(3032), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [256] = { + [sym__gap] = STATE(248), + [sym_dis_expr] = STATE(248), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(246), + [sym__ws] = ACTIONS(3548), + [sym_comment] = ACTIONS(3548), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(3020), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(3020), + [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(3550), + [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(3020), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(3032), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [257] = { + [sym__gap] = STATE(250), + [sym_dis_expr] = STATE(250), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(250), + [sym__ws] = ACTIONS(3552), + [sym_comment] = ACTIONS(3552), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(3020), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(3020), + [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(3554), + [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(3020), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(3032), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [258] = { + [sym__gap] = STATE(186), + [sym_dis_expr] = STATE(186), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(186), + [sym__ws] = ACTIONS(3556), + [sym_comment] = ACTIONS(3556), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(3020), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(3020), + [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(3558), + [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(3020), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(3032), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [259] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(3020), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(3020), + [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(3560), + [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(3020), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(3032), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [260] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(3020), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(3020), + [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(3562), + [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(3020), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(3032), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [261] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(3020), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(3020), + [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(3564), + [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(3020), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(3032), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [262] = { + [sym__gap] = STATE(259), + [sym_dis_expr] = STATE(259), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(259), + [sym__ws] = ACTIONS(3566), + [sym_comment] = ACTIONS(3566), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(3020), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(3020), + [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(3568), + [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(3020), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(3032), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [263] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(1717), + [sym_num_lit] = STATE(1717), + [sym_kwd_lit] = STATE(1717), + [sym_str_lit] = STATE(1717), + [sym_char_lit] = STATE(1717), + [sym_sym_lit] = STATE(1634), + [sym__metadata_lit] = STATE(2426), + [sym_meta_lit] = STATE(2386), + [sym_old_meta_lit] = STATE(2384), + [sym_list_lit] = STATE(1717), + [sym__bare_list_lit] = STATE(1632), + [sym_vec_lit] = STATE(1717), + [sym_set_lit] = STATE(1717), + [sym__bare_set_lit] = STATE(1631), + [sym_read_cond_lit] = STATE(1717), + [sym_splicing_read_cond_lit] = STATE(1717), + [sym_var_quoting_lit] = STATE(1717), + [sym_quoting_lit] = STATE(1717), + [sym_syn_quoting_lit] = STATE(1717), + [sym_unquote_splicing_lit] = STATE(1717), + [sym_unquoting_lit] = STATE(1717), + [sym_defun] = STATE(1632), + [sym_loop_macro] = STATE(1632), + [sym_path_lit] = STATE(1717), + [sym_package_lit] = STATE(1717), + [sym_include_reader_macro] = STATE(1717), + [sym_complex_num_lit] = STATE(1717), + [aux_sym_list_lit_repeat1] = STATE(2330), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(3183), + [sym_comment] = ACTIONS(3183), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(3020), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(3020), + [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(3570), + [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(3020), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(3032), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 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(3574), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(3578), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3069), 1, + ACTIONS(3610), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1314), 1, sym_sym_lit, - STATE(2089), 1, + STATE(1373), 1, + sym__bare_set_lit, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3608), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3614), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3065), 2, - sym__ws, - sym_comment, - ACTIONS(3067), 3, + ACTIONS(3576), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(326), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(463), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1392), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25525,10 +30382,110 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [675] = 35, + [135] = 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(1412), 1, + anon_sym_POUND, + ACTIONS(1416), 1, + aux_sym_num_lit_token1, + ACTIONS(1418), 1, + anon_sym_COLON, + ACTIONS(1420), 1, + anon_sym_COLON_COLON, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + aux_sym_sym_lit_token1, + ACTIONS(1439), 1, + anon_sym_POUND_QMARK, + ACTIONS(1441), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(1443), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1445), 1, + anon_sym_SQUOTE, + ACTIONS(1447), 1, + anon_sym_BQUOTE, + ACTIONS(1449), 1, + anon_sym_COMMA_AT, + ACTIONS(1451), 1, + anon_sym_COMMA, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_cl, + ACTIONS(3624), 1, + sym_self_referential_reader_macro, + STATE(1235), 1, + sym__bare_set_lit, + STATE(1237), 1, + sym_sym_lit, + STATE(2334), 1, + aux_sym_list_lit_repeat1, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, + sym__metadata_lit, + ACTIONS(1437), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(1458), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1462), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1464), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3616), 2, + sym__ws, + sym_comment, + ACTIONS(3618), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(543), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1236), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1169), 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, + [270] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(11), 1, anon_sym_POUND, ACTIONS(15), 1, aux_sym_num_lit_token1, @@ -25564,19 +30521,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3075), 1, + ACTIONS(3630), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -25590,22 +30547,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3071), 2, + ACTIONS(3626), 2, sym__ws, sym_comment, - ACTIONS(3073), 3, + ACTIONS(3628), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(277), 3, + STATE(349), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(461), 19, + STATE(1686), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25625,7 +30582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [810] = 35, + [405] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -25664,19 +30621,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3079), 1, + ACTIONS(3636), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -25690,22 +30647,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3632), 2, sym__ws, sym_comment, - ACTIONS(3077), 3, + ACTIONS(3634), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(761), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(394), 19, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1630), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25725,7 +30682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [945] = 35, + [540] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -25734,78 +30691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, + ACTIONS(3654), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(3085), 1, + ACTIONS(3676), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2076), 1, + STATE(1547), 1, sym_sym_lit, - STATE(2109), 1, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + ACTIONS(3638), 2, + sym__ws, + sym_comment, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3081), 3, + ACTIONS(3642), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(655), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1790), 19, + STATE(1544), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25825,9 +30782,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [1080] = 35, + [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, @@ -25846,66 +30807,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(3037), 1, - anon_sym_POUND, - ACTIONS(3041), 1, - aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3089), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3684), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2093), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 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(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3043), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3057), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3087), 3, + ACTIONS(3682), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1574), 19, + STATE(1700), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25925,9 +30882,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [1215] = 35, + [810] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -25946,66 +30907,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(3037), 1, - anon_sym_POUND, - ACTIONS(3041), 1, - aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3093), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3688), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2093), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 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(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3043), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3057), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3091), 3, + ACTIONS(3686), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1575), 19, + STATE(646), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26025,87 +30982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [1350] = 35, + [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(160), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 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(183), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3115), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3692), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(208), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3095), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3103), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3117), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3099), 3, + ACTIONS(3690), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(416), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1906), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(644), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26125,7 +31082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [1485] = 35, + [1080] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -26164,19 +31121,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3123), 1, + ACTIONS(3698), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -26190,22 +31147,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3119), 2, + ACTIONS(3694), 2, sym__ws, sym_comment, - ACTIONS(3121), 3, + ACTIONS(3696), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(214), 3, + STATE(346), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(355), 19, + STATE(1693), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26225,87 +31182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [1620] = 35, + [1215] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 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(1470), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3131), 1, + ACTIONS(3704), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3700), 2, sym__ws, sym_comment, - ACTIONS(3125), 3, + ACTIONS(3702), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1226), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(275), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1222), 19, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(661), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26325,87 +31282,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [1755] = 35, + [1350] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(160), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 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(183), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3135), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3710), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(208), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3706), 2, sym__ws, sym_comment, - ACTIONS(3103), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3117), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3133), 3, + ACTIONS(3708), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(394), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1904), 19, + STATE(751), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26425,87 +31382,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [1890] = 35, + [1485] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3139), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3173), 1, + ACTIONS(3714), 1, sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2329), 1, - sym_sym_lit, - ACTIONS(3019), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3137), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3155), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3175), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3141), 3, + ACTIONS(3712), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(714), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2236), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(667), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26525,9 +31482,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [2025] = 35, + [1620] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -26546,66 +31507,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(3037), 1, - anon_sym_POUND, - ACTIONS(3041), 1, - aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3179), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3720), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2093), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 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(2983), 2, + ACTIONS(3716), 2, sym__ws, sym_comment, - ACTIONS(3043), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3057), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3177), 3, + ACTIONS(3718), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(270), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1576), 19, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(640), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26625,87 +31582,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [2160] = 35, + [1755] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(160), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 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(183), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3033), 1, - sym_self_referential_reader_macro, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(45), 1, anon_sym_COMMA, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3726), 1, + sym_self_referential_reader_macro, + STATE(1631), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(208), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3103), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3117), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3181), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3722), 2, sym__ws, sym_comment, - ACTIONS(3029), 3, + ACTIONS(3724), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(426), 3, + STATE(271), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1902), 19, + STATE(639), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26725,87 +31682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [2295] = 35, + [1890] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 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(1470), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3187), 1, + ACTIONS(3730), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3183), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3185), 3, + ACTIONS(3728), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(220), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1226), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1228), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(633), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26825,87 +31782,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [2430] = 35, + [2025] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 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(1470), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3191), 1, + ACTIONS(3736), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3732), 2, sym__ws, sym_comment, - ACTIONS(3189), 3, + ACTIONS(3734), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1226), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(284), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(73), 19, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(678), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26925,87 +31882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [2565] = 35, + [2160] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3229), 1, + ACTIONS(3742), 1, sym_self_referential_reader_macro, - STATE(784), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(786), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2081), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3209), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3195), 3, + ACTIONS(3738), 2, + sym__ws, + sym_comment, + ACTIONS(3740), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(785), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(288), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(14), 19, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(681), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27025,7 +31982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [2700] = 35, + [2295] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -27034,78 +31991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(3239), 1, + ACTIONS(3748), 1, sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1235), 1, + sym__bare_set_lit, + STATE(1237), 1, + sym_sym_lit, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2329), 1, - sym_sym_lit, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(1458), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3235), 2, + ACTIONS(1464), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3744), 2, sym__ws, sym_comment, - ACTIONS(3237), 3, + ACTIONS(3746), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(718), 3, + STATE(363), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2234), 19, + STATE(130), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27125,87 +32082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [2835] = 35, + [2430] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(284), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 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(302), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2799), 1, - anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3243), 1, + ACTIONS(3752), 1, sym_self_referential_reader_macro, - STATE(1003), 1, - sym_sym_lit, - STATE(1023), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3241), 3, + ACTIONS(3750), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1024), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(776), 19, + STATE(1597), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27225,7 +32182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [2970] = 35, + [2565] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -27234,78 +32191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(2799), 1, + ACTIONS(3758), 1, anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(3249), 1, + ACTIONS(3762), 1, sym_self_referential_reader_macro, - STATE(1003), 1, + STATE(840), 1, sym_sym_lit, - STATE(1023), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3245), 2, + ACTIONS(3754), 2, sym__ws, sym_comment, - ACTIONS(3247), 3, + ACTIONS(3756), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(340), 3, + STATE(366), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1024), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(994), 19, + STATE(24), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27325,187 +32282,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [3105] = 35, + [2700] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(154), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, - anon_sym_POUND_QMARK, - ACTIONS(183), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, - anon_sym_SQUOTE, - ACTIONS(189), 1, - anon_sym_BQUOTE, - ACTIONS(191), 1, - anon_sym_COMMA_AT, - ACTIONS(193), 1, - anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3253), 1, - sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2102), 1, - aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - ACTIONS(179), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(202), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(206), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(208), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3251), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1959), 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, - [3240] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(284), 1, - anon_sym_POUND, - ACTIONS(288), 1, - aux_sym_num_lit_token1, - ACTIONS(290), 1, - anon_sym_COLON, - ACTIONS(292), 1, - anon_sym_COLON_COLON, - ACTIONS(294), 1, - anon_sym_DQUOTE, - ACTIONS(296), 1, - aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2799), 1, - anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3259), 1, + ACTIONS(3766), 1, sym_self_referential_reader_macro, - STATE(1003), 1, - sym_sym_lit, - STATE(1023), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3255), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3257), 3, + ACTIONS(3764), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(327), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1024), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(998), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(688), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27525,7 +32382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [3375] = 35, + [2835] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -27534,78 +32391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3263), 1, + ACTIONS(3776), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1853), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3768), 2, sym__ws, sym_comment, - ACTIONS(3261), 3, + ACTIONS(3770), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(369), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1958), 19, + STATE(2274), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27625,7 +32482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [3510] = 35, + [2970] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -27634,78 +32491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(2799), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3269), 1, + ACTIONS(3782), 1, sym_self_referential_reader_macro, - STATE(1003), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1023), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3265), 2, + ACTIONS(3778), 2, sym__ws, sym_comment, - ACTIONS(3267), 3, + ACTIONS(3780), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(319), 3, + STATE(371), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1024), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1002), 19, + STATE(2273), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27725,7 +32582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [3645] = 35, + [3105] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -27734,78 +32591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3273), 1, + ACTIONS(3788), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1853), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3784), 2, sym__ws, sym_comment, - ACTIONS(3271), 3, + ACTIONS(3786), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(373), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1957), 19, + STATE(2270), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27825,87 +32682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [3780] = 35, + [3240] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(284), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 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(302), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2799), 1, - anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3279), 1, + ACTIONS(3792), 1, sym_self_referential_reader_macro, - STATE(1003), 1, - sym_sym_lit, - STATE(1023), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3275), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3277), 3, + ACTIONS(3790), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(305), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1024), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1004), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(692), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27925,7 +32782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [3915] = 35, + [3375] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -27934,78 +32791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3283), 1, + ACTIONS(3798), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1853), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3794), 2, sym__ws, sym_comment, - ACTIONS(3281), 3, + ACTIONS(3796), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(375), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1956), 19, + STATE(2268), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28025,187 +32882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [4050] = 35, + [3510] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(284), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, - anon_sym_POUND_QMARK, - ACTIONS(302), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, - anon_sym_SQUOTE, - ACTIONS(308), 1, - anon_sym_BQUOTE, - ACTIONS(310), 1, - anon_sym_COMMA_AT, - ACTIONS(312), 1, - anon_sym_COMMA, - ACTIONS(2799), 1, - anon_sym_LPAREN, - ACTIONS(2801), 1, - anon_sym_cl, - ACTIONS(3289), 1, - sym_self_referential_reader_macro, - STATE(1003), 1, - sym_sym_lit, - STATE(1023), 1, - sym__bare_set_lit, - STATE(2101), 1, - aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - ACTIONS(298), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(316), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(320), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(322), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3285), 2, - sym__ws, - sym_comment, - ACTIONS(3287), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(302), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1024), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1006), 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, - [4185] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(154), 1, - anon_sym_POUND, - ACTIONS(158), 1, - aux_sym_num_lit_token1, - ACTIONS(160), 1, - anon_sym_COLON, - ACTIONS(162), 1, - anon_sym_COLON_COLON, - ACTIONS(164), 1, - anon_sym_DQUOTE, - ACTIONS(166), 1, - aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3293), 1, + ACTIONS(3804), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3800), 2, sym__ws, sym_comment, - ACTIONS(3291), 3, + ACTIONS(3802), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(278), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1812), 19, + STATE(620), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28225,7 +32982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [4320] = 35, + [3645] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(17), 1, @@ -28250,33 +33007,33 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3037), 1, + ACTIONS(3636), 1, + sym_self_referential_reader_macro, + ACTIONS(3808), 1, anon_sym_POUND, - ACTIONS(3041), 1, + ACTIONS(3810), 1, aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(3297), 1, - sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2093), 1, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(51), 2, anon_sym_POUNDP, @@ -28284,28 +33041,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3806), 2, sym__ws, sym_comment, - ACTIONS(3043), 2, + ACTIONS(3812), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3057), 2, + ACTIONS(3824), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3295), 3, + ACTIONS(3634), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(717), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1577), 19, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1630), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28325,7 +33082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [4455] = 35, + [3780] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(17), 1, @@ -28350,33 +33107,33 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3037), 1, + ACTIONS(3808), 1, anon_sym_POUND, - ACTIONS(3041), 1, + ACTIONS(3810), 1, aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(3301), 1, + ACTIONS(3828), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2093), 1, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(51), 2, anon_sym_POUNDP, @@ -28384,28 +33141,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3043), 2, + ACTIONS(3812), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3057), 2, + ACTIONS(3824), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3299), 3, + ACTIONS(3826), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1578), 19, + STATE(1651), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28425,7 +33182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [4590] = 35, + [3915] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -28434,78 +33191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(3574), 1, + anon_sym_POUND, + ACTIONS(3578), 1, + aux_sym_num_lit_token1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3325), 1, + ACTIONS(3834), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1314), 1, + sym_sym_lit, + STATE(1373), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, + ACTIONS(3590), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3608), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2369), 2, + ACTIONS(3612), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3614), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3830), 2, sym__ws, sym_comment, - ACTIONS(3309), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3327), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3305), 3, + ACTIONS(3832), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(381), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2083), 19, + STATE(1323), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28525,87 +33282,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [4725] = 35, + [4050] = 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(3037), 1, + ACTIONS(3838), 1, anon_sym_POUND, - ACTIONS(3041), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(3844), 1, + anon_sym_COLON, + ACTIONS(3846), 1, + anon_sym_COLON_COLON, + ACTIONS(3848), 1, + anon_sym_DQUOTE, + ACTIONS(3850), 1, + aux_sym_sym_lit_token1, + ACTIONS(3852), 1, + anon_sym_LPAREN, + ACTIONS(3856), 1, + anon_sym_POUND_QMARK, + ACTIONS(3858), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(3333), 1, + ACTIONS(3870), 1, + anon_sym_cl, + ACTIONS(3874), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2093), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3043), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3836), 2, + sym__ws, + sym_comment, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3057), 2, + ACTIONS(3872), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3329), 2, - sym__ws, - sym_comment, - ACTIONS(3331), 3, + ACTIONS(3878), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3840), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(216), 3, + STATE(482), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1596), 19, + STATE(2339), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28625,7 +33382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [4860] = 35, + [4185] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(17), 1, @@ -28650,33 +33407,33 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3037), 1, + ACTIONS(3808), 1, anon_sym_POUND, - ACTIONS(3041), 1, + ACTIONS(3810), 1, aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(3339), 1, + ACTIONS(3882), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2093), 1, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(51), 2, anon_sym_POUNDP, @@ -28684,28 +33441,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3043), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3812), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3057), 2, + ACTIONS(3824), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3335), 2, - sym__ws, - sym_comment, - ACTIONS(3337), 3, + ACTIONS(3880), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(217), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1597), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1652), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28725,87 +33482,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [4995] = 35, + [4320] = 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(3037), 1, + ACTIONS(3574), 1, anon_sym_POUND, - ACTIONS(3041), 1, + ACTIONS(3578), 1, aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(3580), 1, + anon_sym_COLON, + ACTIONS(3582), 1, + anon_sym_COLON_COLON, + ACTIONS(3584), 1, + anon_sym_DQUOTE, + ACTIONS(3586), 1, + aux_sym_sym_lit_token1, + ACTIONS(3588), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, + anon_sym_POUND_QMARK, + ACTIONS(3594), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(3345), 1, + ACTIONS(3606), 1, + anon_sym_cl, + ACTIONS(3886), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1314), 1, sym_sym_lit, - STATE(2093), 1, + STATE(1373), 1, + sym__bare_set_lit, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3043), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3057), 2, + ACTIONS(3608), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3341), 2, - sym__ws, - sym_comment, - ACTIONS(3343), 3, + ACTIONS(3614), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3884), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(223), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1598), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1372), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28825,9 +33582,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [5130] = 35, + [4455] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -28846,66 +33607,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(3037), 1, - anon_sym_POUND, - ACTIONS(3041), 1, - aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3351), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3892), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2093), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 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(3043), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3057), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3347), 2, + ACTIONS(3888), 2, sym__ws, sym_comment, - ACTIONS(3349), 3, + ACTIONS(3890), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(240), 3, + STATE(304), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1599), 19, + STATE(734), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28925,87 +33682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [5265] = 35, + [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(3037), 1, + ACTIONS(3574), 1, anon_sym_POUND, - ACTIONS(3041), 1, + ACTIONS(3578), 1, aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(3580), 1, + anon_sym_COLON, + ACTIONS(3582), 1, + anon_sym_COLON_COLON, + ACTIONS(3584), 1, + anon_sym_DQUOTE, + ACTIONS(3586), 1, + aux_sym_sym_lit_token1, + ACTIONS(3588), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, + anon_sym_POUND_QMARK, + ACTIONS(3594), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(3357), 1, + ACTIONS(3606), 1, + anon_sym_cl, + ACTIONS(3896), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1314), 1, sym_sym_lit, - STATE(2093), 1, + STATE(1373), 1, + sym__bare_set_lit, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3043), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3057), 2, + ACTIONS(3608), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3353), 2, - sym__ws, - sym_comment, - ACTIONS(3355), 3, + ACTIONS(3614), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3894), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(241), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1600), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1366), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29025,7 +33782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [5400] = 35, + [4725] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -29034,78 +33791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3397), 1, + ACTIONS(3900), 1, sym_self_referential_reader_macro, - STATE(1251), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1370), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3359), 2, - sym__ws, - sym_comment, - ACTIONS(3377), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3363), 3, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3898), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(324), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1361), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1319), 19, + STATE(1872), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29125,7 +33882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [5535] = 35, + [4860] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -29134,78 +33891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(3574), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(3578), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3407), 1, + ACTIONS(3906), 1, sym_self_referential_reader_macro, - STATE(1251), 1, + STATE(1314), 1, sym_sym_lit, - STATE(1370), 1, + STATE(1373), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3377), 2, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(3608), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(3614), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3403), 2, + ACTIONS(3902), 2, sym__ws, sym_comment, - ACTIONS(3405), 3, + ACTIONS(3904), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(325), 3, + STATE(296), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1361), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1296), 19, + STATE(1395), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29225,7 +33982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [5670] = 35, + [4995] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -29234,178 +33991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, - anon_sym_COLON, - ACTIONS(3147), 1, - anon_sym_COLON_COLON, - ACTIONS(3149), 1, - anon_sym_DQUOTE, - ACTIONS(3151), 1, - aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, - anon_sym_POUND_QMARK, - ACTIONS(3303), 1, + ACTIONS(3838), 1, anon_sym_POUND, - ACTIONS(3307), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(3311), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, - anon_sym_SQUOTE, - ACTIONS(3317), 1, - anon_sym_BQUOTE, - ACTIONS(3319), 1, - anon_sym_COMMA_AT, - ACTIONS(3321), 1, - anon_sym_COMMA, - ACTIONS(3323), 1, - anon_sym_cl, - ACTIONS(3411), 1, - sym_self_referential_reader_macro, - STATE(1689), 1, - sym__bare_set_lit, - STATE(2118), 1, - aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, - sym__metadata_lit, - ACTIONS(2363), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2369), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3309), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3327), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3409), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1654), 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, - [5805] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(3415), 1, + ACTIONS(3912), 1, sym_self_referential_reader_macro, - STATE(1689), 1, - sym__bare_set_lit, - STATE(2118), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3854), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2369), 2, + ACTIONS(3876), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3908), 2, sym__ws, sym_comment, - ACTIONS(3309), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3327), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3413), 3, + ACTIONS(3910), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(617), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1734), 19, + STATE(2472), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29425,7 +34082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [5940] = 35, + [5130] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -29434,78 +34091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(129), 1, + anon_sym_POUND, + ACTIONS(133), 1, + aux_sym_num_lit_token1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3419), 1, + ACTIONS(3916), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, + ACTIONS(158), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2369), 2, + ACTIONS(187), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3309), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3327), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3417), 3, + ACTIONS(3914), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1735), 19, + STATE(2250), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29525,7 +34182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6075] = 35, + [5265] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -29534,78 +34191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(129), 1, + anon_sym_POUND, + ACTIONS(133), 1, + aux_sym_num_lit_token1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3423), 1, + ACTIONS(3920), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, + ACTIONS(158), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2369), 2, + ACTIONS(187), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3309), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3327), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3421), 3, + ACTIONS(3918), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1736), 19, + STATE(2261), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29625,7 +34282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6210] = 35, + [5400] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -29664,19 +34321,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3427), 1, + ACTIONS(3924), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -29690,22 +34347,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3425), 3, + ACTIONS(3922), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1546), 19, + STATE(745), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29725,7 +34382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6345] = 35, + [5535] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -29734,78 +34391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(129), 1, + anon_sym_POUND, + ACTIONS(133), 1, + aux_sym_num_lit_token1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3431), 1, + ACTIONS(3928), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, + ACTIONS(158), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2369), 2, + ACTIONS(187), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3309), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3327), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3429), 3, + ACTIONS(3926), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1737), 19, + STATE(2240), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29825,87 +34482,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6480] = 35, + [5670] = 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(2325), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3808), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(3810), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, - anon_sym_COLON, - ACTIONS(2333), 1, - anon_sym_COLON_COLON, - ACTIONS(2335), 1, - anon_sym_DQUOTE, - ACTIONS(2337), 1, - aux_sym_sym_lit_token1, - ACTIONS(2339), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, - anon_sym_POUND_QMARK, - ACTIONS(2345), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(3083), 1, - anon_sym_cl, - ACTIONS(3435), 1, + ACTIONS(3932), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2076), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2109), 1, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3433), 3, + ACTIONS(3812), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3824), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3930), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1781), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1655), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29925,87 +34582,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6615] = 35, + [5805] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3441), 1, + ACTIONS(3938), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2369), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3309), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3327), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3437), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3934), 2, sym__ws, sym_comment, - ACTIONS(3439), 3, + ACTIONS(3936), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(264), 3, + STATE(706), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1739), 19, + STATE(410), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30025,87 +34682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6750] = 35, + [5940] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3447), 1, + ACTIONS(3944), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2369), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3309), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3327), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3443), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3940), 2, sym__ws, sym_comment, - ACTIONS(3445), 3, + ACTIONS(3942), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(275), 3, + STATE(392), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1744), 19, + STATE(750), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30125,7 +34782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6885] = 35, + [6075] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -30134,78 +34791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(3574), 1, + anon_sym_POUND, + ACTIONS(3578), 1, + aux_sym_num_lit_token1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3453), 1, + ACTIONS(3948), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1314), 1, + sym_sym_lit, + STATE(1373), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2369), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3309), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3327), 2, + ACTIONS(3608), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3449), 2, - sym__ws, - sym_comment, - ACTIONS(3451), 3, + ACTIONS(3614), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3946), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(276), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1746), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1394), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30225,7 +34882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7020] = 35, + [6210] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -30234,78 +34891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(3574), 1, + anon_sym_POUND, + ACTIONS(3578), 1, + aux_sym_num_lit_token1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3459), 1, + ACTIONS(3954), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1314), 1, + sym_sym_lit, + STATE(1373), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2369), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3309), 2, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3327), 2, + ACTIONS(3608), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3455), 2, + ACTIONS(3614), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3950), 2, sym__ws, sym_comment, - ACTIONS(3457), 3, + ACTIONS(3952), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(278), 3, + STATE(298), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1748), 19, + STATE(1391), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30325,7 +34982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7155] = 35, + [6345] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -30334,78 +34991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(3574), 1, + anon_sym_POUND, + ACTIONS(3578), 1, + aux_sym_num_lit_token1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3465), 1, + ACTIONS(3958), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1314), 1, + sym_sym_lit, + STATE(1373), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2369), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3309), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3327), 2, + ACTIONS(3608), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3461), 2, - sym__ws, - sym_comment, - ACTIONS(3463), 3, + ACTIONS(3614), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3956), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(242), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2080), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1389), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30425,87 +35082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7290] = 35, + [6480] = 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(3574), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(3578), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3469), 1, + ACTIONS(3962), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1314), 1, sym_sym_lit, - STATE(2089), 1, + STATE(1373), 1, + sym__bare_set_lit, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3608), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3614), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3467), 3, + ACTIONS(3960), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1544), 19, + STATE(1319), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30525,87 +35182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7425] = 35, + [6615] = 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(3574), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(3578), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3475), 1, + ACTIONS(3968), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1314), 1, sym_sym_lit, - STATE(2089), 1, + STATE(1373), 1, + sym__bare_set_lit, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3608), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3614), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3471), 2, + ACTIONS(3964), 2, sym__ws, sym_comment, - ACTIONS(3473), 3, + ACTIONS(3966), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(346), 3, + STATE(309), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1543), 19, + STATE(1369), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30625,7 +35282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7560] = 35, + [6750] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -30634,78 +35291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(129), 1, + anon_sym_POUND, + ACTIONS(133), 1, + aux_sym_num_lit_token1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3479), 1, + ACTIONS(3974), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, + ACTIONS(158), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2369), 2, + ACTIONS(187), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3970), 2, sym__ws, sym_comment, - ACTIONS(3309), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3327), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3477), 3, + ACTIONS(3972), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(407), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1758), 19, + STATE(2246), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30725,87 +35382,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7695] = 35, + [6885] = 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(3574), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(3578), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3483), 1, + ACTIONS(3980), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1314), 1, sym_sym_lit, - STATE(2089), 1, + STATE(1373), 1, + sym__bare_set_lit, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3608), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3614), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3976), 2, sym__ws, sym_comment, - ACTIONS(3481), 3, + ACTIONS(3978), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(311), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1542), 19, + STATE(1374), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1320), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30825,87 +35482,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7830] = 35, + [7020] = 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(3574), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(3578), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3489), 1, + ACTIONS(3984), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1314), 1, sym_sym_lit, - STATE(2089), 1, + STATE(1373), 1, + sym__bare_set_lit, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3608), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3614), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3485), 2, - sym__ws, - sym_comment, - ACTIONS(3487), 3, + ACTIONS(3982), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(349), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1541), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1321), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30925,7 +35582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7965] = 35, + [7155] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -30934,78 +35591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(3574), 1, + anon_sym_POUND, + ACTIONS(3578), 1, + aux_sym_num_lit_token1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(3511), 1, + ACTIONS(3606), 1, + anon_sym_cl, + ACTIONS(3988), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1314), 1, + sym_sym_lit, + STATE(1373), 1, + sym__bare_set_lit, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(3608), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3493), 3, + ACTIONS(3614), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3986), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2263), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1324), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31025,7 +35682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8100] = 35, + [7290] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -31034,78 +35691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(3574), 1, + anon_sym_POUND, + ACTIONS(3578), 1, + aux_sym_num_lit_token1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3519), 1, + ACTIONS(3992), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1314), 1, + sym_sym_lit, + STATE(1373), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2369), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3309), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3327), 2, + ACTIONS(3608), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3515), 2, - sym__ws, - sym_comment, - ACTIONS(3517), 3, + ACTIONS(3614), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3990), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(298), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1759), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1325), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31125,87 +35782,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8235] = 35, + [7425] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(141), 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(160), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3523), 1, + ACTIONS(3996), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3521), 3, + ACTIONS(3994), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(395), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2271), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31225,87 +35882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8370] = 35, + [7560] = 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(3574), 1, + anon_sym_POUND, + ACTIONS(3578), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3527), 1, + ACTIONS(4002), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1314), 1, sym_sym_lit, - STATE(2089), 1, + STATE(1373), 1, + sym__bare_set_lit, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3608), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3614), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3998), 2, sym__ws, sym_comment, - ACTIONS(3525), 3, + ACTIONS(4000), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(312), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(403), 19, + STATE(1374), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1328), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31325,7 +35982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8505] = 35, + [7695] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -31334,78 +35991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(3574), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(3578), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(3588), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(2799), 1, - anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3531), 1, + ACTIONS(4006), 1, sym_self_referential_reader_macro, - STATE(1003), 1, + STATE(1314), 1, sym_sym_lit, - STATE(1023), 1, + STATE(1373), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(3608), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(3614), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3529), 3, + ACTIONS(4004), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1024), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(929), 19, + STATE(1329), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31425,7 +36082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8640] = 35, + [7830] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -31434,78 +36091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(3574), 1, + anon_sym_POUND, + ACTIONS(3578), 1, + aux_sym_num_lit_token1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(3588), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(3535), 1, + ACTIONS(3606), 1, + anon_sym_cl, + ACTIONS(4012), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(1314), 1, sym_sym_lit, - STATE(1853), 1, + STATE(1373), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, + ACTIONS(3590), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3608), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(208), 2, + ACTIONS(3612), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3614), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4008), 2, sym__ws, sym_comment, - ACTIONS(3103), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3117), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3533), 3, + ACTIONS(4010), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(316), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1907), 19, + STATE(1335), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31525,87 +36182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8775] = 35, + [7965] = 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(3037), 1, + ACTIONS(3574), 1, anon_sym_POUND, - ACTIONS(3041), 1, + ACTIONS(3578), 1, aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(3580), 1, + anon_sym_COLON, + ACTIONS(3582), 1, + anon_sym_COLON_COLON, + ACTIONS(3584), 1, + anon_sym_DQUOTE, + ACTIONS(3586), 1, + aux_sym_sym_lit_token1, + ACTIONS(3588), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, + anon_sym_POUND_QMARK, + ACTIONS(3594), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(3541), 1, + ACTIONS(3606), 1, + anon_sym_cl, + ACTIONS(4018), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1314), 1, sym_sym_lit, - STATE(2093), 1, + STATE(1373), 1, + sym__bare_set_lit, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3043), 2, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3057), 2, + ACTIONS(3608), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3537), 2, + ACTIONS(3614), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4014), 2, sym__ws, sym_comment, - ACTIONS(3539), 3, + ACTIONS(4016), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(400), 3, + STATE(317), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1567), 19, + STATE(1336), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31625,7 +36282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8910] = 35, + [8100] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -31634,78 +36291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(3574), 1, + anon_sym_POUND, + ACTIONS(3578), 1, + aux_sym_num_lit_token1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(3545), 1, + ACTIONS(3606), 1, + anon_sym_cl, + ACTIONS(4024), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1314), 1, + sym_sym_lit, + STATE(1373), 1, + sym__bare_set_lit, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(3608), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3543), 3, + ACTIONS(3614), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4020), 2, + sym__ws, + sym_comment, + ACTIONS(4022), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(318), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2267), 19, + STATE(1337), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31725,7 +36382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9045] = 35, + [8235] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -31734,78 +36391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(3574), 1, + anon_sym_POUND, + ACTIONS(3578), 1, + aux_sym_num_lit_token1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3549), 1, + ACTIONS(4030), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1314), 1, + sym_sym_lit, + STATE(1373), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, + ACTIONS(3590), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3608), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2369), 2, + ACTIONS(3612), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3614), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4026), 2, sym__ws, sym_comment, - ACTIONS(3309), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3327), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3547), 3, + ACTIONS(4028), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(321), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1763), 19, + STATE(1339), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31825,7 +36482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9180] = 35, + [8370] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -31834,78 +36491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(3574), 1, + anon_sym_POUND, + ACTIONS(3578), 1, + aux_sym_num_lit_token1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3553), 1, + ACTIONS(4034), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1314), 1, + sym_sym_lit, + STATE(1373), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2369), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3309), 2, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3327), 2, + ACTIONS(3608), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3551), 3, + ACTIONS(3614), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4032), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1764), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1341), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31925,87 +36582,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9315] = 35, + [8505] = 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(3574), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(3578), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3557), 1, + ACTIONS(4038), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1314), 1, sym_sym_lit, - STATE(2089), 1, + STATE(1373), 1, + sym__bare_set_lit, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3608), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3614), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3555), 3, + ACTIONS(4036), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(551), 19, + STATE(1342), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32025,7 +36682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9450] = 35, + [8640] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -32034,78 +36691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(3574), 1, + anon_sym_POUND, + ACTIONS(3578), 1, + aux_sym_num_lit_token1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3561), 1, + ACTIONS(4042), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1314), 1, + sym_sym_lit, + STATE(1373), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2369), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3309), 2, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3327), 2, + ACTIONS(3608), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3559), 3, + ACTIONS(3614), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4040), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1765), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1318), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32125,7 +36782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9585] = 35, + [8775] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -32134,78 +36791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(3574), 1, + anon_sym_POUND, + ACTIONS(3578), 1, + aux_sym_num_lit_token1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3567), 1, + ACTIONS(4046), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1314), 1, + sym_sym_lit, + STATE(1373), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2369), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3309), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3327), 2, + ACTIONS(3608), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3563), 2, - sym__ws, - sym_comment, - ACTIONS(3565), 3, + ACTIONS(3614), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4044), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(312), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1766), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1344), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32225,7 +36882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9720] = 35, + [8910] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -32234,78 +36891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(3574), 1, + anon_sym_POUND, + ACTIONS(3578), 1, + aux_sym_num_lit_token1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(3573), 1, + ACTIONS(3606), 1, + anon_sym_cl, + ACTIONS(4050), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1314), 1, + sym_sym_lit, + STATE(1373), 1, + sym__bare_set_lit, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(3608), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3569), 2, - sym__ws, - sym_comment, - ACTIONS(3571), 3, + ACTIONS(3614), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4048), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(267), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2280), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1345), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32325,7 +36982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9855] = 35, + [9045] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -32334,78 +36991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(3574), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(3578), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3588), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3579), 1, + ACTIONS(4056), 1, sym_self_referential_reader_macro, - STATE(1225), 1, + STATE(1314), 1, sym_sym_lit, - STATE(1227), 1, + STATE(1373), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(3608), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(3614), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3575), 2, + ACTIONS(4052), 2, sym__ws, sym_comment, - ACTIONS(3577), 3, + ACTIONS(4054), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(363), 3, + STATE(326), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1226), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(76), 19, + STATE(1358), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32425,87 +37082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9990] = 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(3574), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(3578), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3583), 1, + ACTIONS(4062), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1314), 1, sym_sym_lit, - STATE(2089), 1, + STATE(1373), 1, + sym__bare_set_lit, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3608), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3614), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4058), 2, sym__ws, sym_comment, - ACTIONS(3581), 3, + ACTIONS(4060), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(327), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(266), 19, + STATE(1374), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1359), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32525,7 +37182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10125] = 35, + [9315] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -32534,78 +37191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(3574), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(3578), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3589), 1, + ACTIONS(4068), 1, sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(786), 1, + STATE(1314), 1, sym_sym_lit, - STATE(2081), 1, + STATE(1373), 1, + sym__bare_set_lit, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3209), 2, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(3608), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(3614), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3585), 2, + ACTIONS(4064), 2, sym__ws, sym_comment, - ACTIONS(3587), 3, + ACTIONS(4066), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(366), 3, + STATE(328), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(785), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(20), 19, + STATE(1360), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32625,87 +37282,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10260] = 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(3574), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(3578), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3595), 1, + ACTIONS(4074), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1314), 1, sym_sym_lit, - STATE(2089), 1, + STATE(1373), 1, + sym__bare_set_lit, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3608), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3614), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3591), 2, + ACTIONS(4070), 2, sym__ws, sym_comment, - ACTIONS(3593), 3, + ACTIONS(4072), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(265), 3, + STATE(329), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1552), 19, + STATE(1361), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32725,7 +37382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10395] = 35, + [9585] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -32734,78 +37391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(3574), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(3578), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(3588), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3601), 1, + ACTIONS(4080), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(1314), 1, sym_sym_lit, - STATE(1853), 1, + STATE(1373), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(3608), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(3614), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3597), 2, + ACTIONS(4076), 2, sym__ws, sym_comment, - ACTIONS(3599), 3, + ACTIONS(4078), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(369), 3, + STATE(330), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1968), 19, + STATE(1362), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32825,7 +37482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10530] = 35, + [9720] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -32834,78 +37491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(2914), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(2918), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(2928), 1, + anon_sym_LPAREN, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(4084), 1, anon_sym_cl, - ACTIONS(3607), 1, + ACTIONS(4086), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3603), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3605), 3, + ACTIONS(4082), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(371), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1969), 19, + STATE(1785), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32925,7 +37582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10665] = 35, + [9855] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -32934,78 +37591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(2914), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(2918), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(2928), 1, + anon_sym_LPAREN, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(4084), 1, anon_sym_cl, - ACTIONS(3613), 1, + ACTIONS(4090), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3609), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3611), 3, + ACTIONS(4088), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(373), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1970), 19, + STATE(1786), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33025,7 +37682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10800] = 35, + [9990] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -33034,78 +37691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(2914), 1, + anon_sym_POUND, + ACTIONS(2918), 1, + aux_sym_num_lit_token1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(3617), 1, + ACTIONS(4084), 1, + anon_sym_cl, + ACTIONS(4096), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3615), 3, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4092), 2, + sym__ws, + sym_comment, + ACTIONS(4094), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2284), 19, + STATE(1790), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33125,7 +37782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10935] = 35, + [10125] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -33134,78 +37791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(2914), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(2918), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(2928), 1, + anon_sym_LPAREN, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(4084), 1, anon_sym_cl, - ACTIONS(3623), 1, + ACTIONS(4100), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3619), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3621), 3, + ACTIONS(4098), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(375), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1971), 19, + STATE(1718), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33225,7 +37882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11070] = 35, + [10260] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -33234,78 +37891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(2914), 1, + anon_sym_POUND, + ACTIONS(2918), 1, + aux_sym_num_lit_token1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(4084), 1, anon_sym_cl, - ACTIONS(3629), 1, + ACTIONS(4106), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2369), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3309), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3327), 2, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3625), 2, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4102), 2, sym__ws, sym_comment, - ACTIONS(3627), 3, + ACTIONS(4104), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(321), 3, + STATE(337), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1769), 19, + STATE(1792), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33325,7 +37982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11205] = 35, + [10395] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -33334,78 +37991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(2914), 1, + anon_sym_POUND, + ACTIONS(2918), 1, + aux_sym_num_lit_token1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(3635), 1, + ACTIONS(4084), 1, + anon_sym_cl, + ACTIONS(4110), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3631), 2, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3633), 3, + ACTIONS(4108), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(274), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2285), 19, + STATE(1793), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33425,7 +38082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11340] = 35, + [10530] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -33434,78 +38091,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(2914), 1, + anon_sym_POUND, + ACTIONS(2918), 1, + aux_sym_num_lit_token1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(3639), 1, + ACTIONS(4084), 1, + anon_sym_cl, + ACTIONS(4114), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, + ACTIONS(2930), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(2956), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4112), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1844), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1796), 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, + [10665] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(2914), 1, + anon_sym_POUND, + ACTIONS(2918), 1, + aux_sym_num_lit_token1, + ACTIONS(2920), 1, + anon_sym_COLON, + ACTIONS(2922), 1, + anon_sym_COLON_COLON, + ACTIONS(2924), 1, + anon_sym_DQUOTE, + ACTIONS(2926), 1, + aux_sym_sym_lit_token1, + ACTIONS(2928), 1, + anon_sym_LPAREN, + ACTIONS(2932), 1, + anon_sym_POUND_QMARK, + ACTIONS(2934), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(2936), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(2938), 1, + anon_sym_SQUOTE, + ACTIONS(2940), 1, + anon_sym_BQUOTE, + ACTIONS(2942), 1, + anon_sym_COMMA_AT, + ACTIONS(2944), 1, + anon_sym_COMMA, + ACTIONS(4084), 1, + anon_sym_cl, + ACTIONS(4120), 1, + sym_self_referential_reader_macro, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, + aux_sym_list_lit_repeat1, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, + sym__metadata_lit, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3637), 3, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4116), 2, + sym__ws, + sym_comment, + ACTIONS(4118), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(339), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2288), 19, + STATE(1719), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33525,7 +38282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11475] = 35, + [10800] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -33534,78 +38291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(2914), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(2918), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(4084), 1, anon_sym_cl, - ACTIONS(3645), 1, + ACTIONS(4126), 1, sym_self_referential_reader_macro, - STATE(1251), 1, - sym_sym_lit, - STATE(1370), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3377), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3641), 2, + ACTIONS(4122), 2, sym__ws, sym_comment, - ACTIONS(3643), 3, + ACTIONS(4124), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(381), 3, + STATE(341), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1361), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1368), 19, + STATE(1799), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33625,7 +38382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11610] = 35, + [10935] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -33634,78 +38391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(2914), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(2918), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(4084), 1, anon_sym_cl, - ACTIONS(3651), 1, + ACTIONS(4130), 1, sym_self_referential_reader_macro, - STATE(1251), 1, - sym_sym_lit, - STATE(1370), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3377), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3647), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3649), 3, + ACTIONS(4128), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(335), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1361), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1371), 19, + STATE(1800), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33725,7 +38482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11745] = 35, + [11070] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -33764,19 +38521,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3655), 1, + ACTIONS(4134), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -33790,22 +38547,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3653), 3, + ACTIONS(4132), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(263), 19, + STATE(1663), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33825,7 +38582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11880] = 35, + [11205] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -33834,78 +38591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(2914), 1, + anon_sym_POUND, + ACTIONS(2918), 1, + aux_sym_num_lit_token1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(3659), 1, + ACTIONS(4084), 1, + anon_sym_cl, + ACTIONS(4138), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3657), 3, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4136), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2290), 19, + STATE(1801), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33925,87 +38682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12015] = 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(2914), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(2918), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4084), 1, anon_sym_cl, - ACTIONS(3665), 1, + ACTIONS(4142), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(2304), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3661), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3663), 3, + ACTIONS(4140), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(262), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1553), 19, + STATE(1802), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34025,107 +38782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12150] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3145), 1, - anon_sym_COLON, - ACTIONS(3147), 1, - anon_sym_COLON_COLON, - ACTIONS(3149), 1, - anon_sym_DQUOTE, - ACTIONS(3151), 1, - aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, - anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, - anon_sym_SQUOTE, - ACTIONS(3317), 1, - anon_sym_BQUOTE, - ACTIONS(3319), 1, - anon_sym_COMMA_AT, - ACTIONS(3321), 1, - anon_sym_COMMA, - ACTIONS(3323), 1, - anon_sym_cl, - ACTIONS(3669), 1, - sym_self_referential_reader_macro, - STATE(1689), 1, - sym__bare_set_lit, - STATE(2118), 1, - aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, - sym__metadata_lit, - ACTIONS(2363), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2369), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3309), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3327), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3667), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1776), 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, - [12285] = 35, + [11475] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -34164,19 +38821,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3673), 1, + ACTIONS(4146), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -34190,22 +38847,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3671), 3, + ACTIONS(4144), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1548), 19, + STATE(1662), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34225,7 +38882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12420] = 35, + [11610] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -34234,78 +38891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(2914), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(2918), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(4084), 1, anon_sym_cl, - ACTIONS(3679), 1, + ACTIONS(4152), 1, sym_self_referential_reader_macro, - STATE(1251), 1, - sym_sym_lit, - STATE(1370), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3377), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3675), 2, + ACTIONS(4148), 2, sym__ws, sym_comment, - ACTIONS(3677), 3, + ACTIONS(4150), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(345), 3, + STATE(342), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1361), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1315), 19, + STATE(1804), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34325,7 +38982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12555] = 35, + [11745] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -34334,78 +38991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(2914), 1, + anon_sym_POUND, + ACTIONS(2918), 1, + aux_sym_num_lit_token1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(3685), 1, + ACTIONS(4084), 1, + anon_sym_cl, + ACTIONS(4156), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3681), 2, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3683), 3, + ACTIONS(4154), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(288), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2291), 19, + STATE(1805), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34425,7 +39082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12690] = 35, + [11880] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -34434,78 +39091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(2914), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(2918), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(2928), 1, + anon_sym_LPAREN, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(2799), 1, - anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(4084), 1, anon_sym_cl, - ACTIONS(3689), 1, + ACTIONS(4162), 1, sym_self_referential_reader_macro, - STATE(1003), 1, - sym_sym_lit, - STATE(1023), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4158), 2, sym__ws, sym_comment, - ACTIONS(3687), 3, + ACTIONS(4160), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1024), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(345), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(965), 19, + STATE(1844), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1809), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34525,7 +39182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12825] = 35, + [12015] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -34534,78 +39191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(2914), 1, + anon_sym_POUND, + ACTIONS(2918), 1, + aux_sym_num_lit_token1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(3695), 1, + ACTIONS(4084), 1, + anon_sym_cl, + ACTIONS(4168), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3691), 2, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4164), 2, sym__ws, sym_comment, - ACTIONS(3693), 3, + ACTIONS(4166), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(292), 3, + STATE(347), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2200), 19, + STATE(1810), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34625,87 +39282,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12960] = 35, + [12150] = 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(2914), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(2918), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4084), 1, anon_sym_cl, - ACTIONS(3699), 1, + ACTIONS(4174), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(2304), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4170), 2, sym__ws, sym_comment, - ACTIONS(3697), 3, + ACTIONS(4172), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(348), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1555), 19, + STATE(1844), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1811), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34725,7 +39382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13095] = 35, + [12285] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -34734,78 +39391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(2914), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(2918), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(2928), 1, + anon_sym_LPAREN, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(2799), 1, - anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(4084), 1, anon_sym_cl, - ACTIONS(3703), 1, + ACTIONS(4180), 1, sym_self_referential_reader_macro, - STATE(1003), 1, - sym_sym_lit, - STATE(1023), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4176), 2, sym__ws, sym_comment, - ACTIONS(3701), 3, + ACTIONS(4178), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1024), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(351), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(964), 19, + STATE(1844), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1814), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34825,7 +39482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13230] = 35, + [12420] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -34834,78 +39491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, + ACTIONS(2914), 1, anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(2918), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(4084), 1, anon_sym_cl, - ACTIONS(3709), 1, + ACTIONS(4184), 1, sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2329), 1, - sym_sym_lit, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3705), 2, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3707), 3, + ACTIONS(4182), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(723), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2232), 19, + STATE(1816), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34925,7 +39582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13365] = 35, + [12555] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -34934,78 +39591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, + ACTIONS(2914), 1, anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(2918), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(4084), 1, anon_sym_cl, - ACTIONS(3713), 1, + ACTIONS(4188), 1, sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2329), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3711), 3, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4186), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2225), 19, + STATE(1817), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35025,87 +39682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13500] = 35, + [12690] = 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(2914), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(2918), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4084), 1, anon_sym_cl, - ACTIONS(3717), 1, + ACTIONS(4192), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(2304), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3715), 3, + ACTIONS(4190), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1556), 19, + STATE(1844), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1818), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35125,7 +39782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13635] = 35, + [12825] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -35134,78 +39791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(2914), 1, + anon_sym_POUND, + ACTIONS(2918), 1, + aux_sym_num_lit_token1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(3721), 1, + ACTIONS(4084), 1, + anon_sym_cl, + ACTIONS(4196), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3719), 3, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4194), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2294), 19, + STATE(1819), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35225,7 +39882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13770] = 35, + [12960] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -35234,78 +39891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(2914), 1, + anon_sym_POUND, + ACTIONS(2918), 1, + aux_sym_num_lit_token1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(3725), 1, + ACTIONS(4084), 1, + anon_sym_cl, + ACTIONS(4200), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3723), 3, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4198), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2244), 19, + STATE(1820), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35325,7 +39982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13905] = 35, + [13095] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -35334,78 +39991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(2914), 1, + anon_sym_POUND, + ACTIONS(2918), 1, + aux_sym_num_lit_token1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(3729), 1, + ACTIONS(4084), 1, + anon_sym_cl, + ACTIONS(4204), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3727), 3, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4202), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2296), 19, + STATE(2352), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35425,87 +40082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14040] = 35, + [13230] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3733), 1, + ACTIONS(4208), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2369), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3309), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3327), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3731), 3, + ACTIONS(4206), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1778), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(536), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35525,87 +40182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14175] = 35, + [13365] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1424), 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(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(3739), 1, + ACTIONS(4212), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1237), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3735), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3737), 3, + ACTIONS(4210), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(269), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(431), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(129), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35625,7 +40282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14310] = 35, + [13500] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -35634,78 +40291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(3745), 1, + ACTIONS(4216), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(976), 1, sym_sym_lit, - STATE(1853), 1, + STATE(986), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3741), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3743), 3, + ACTIONS(4214), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(404), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1993), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(831), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35725,13 +40382,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14445] = 35, + [13635] = 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, @@ -35750,62 +40403,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(3808), 1, + anon_sym_POUND, + ACTIONS(3810), 1, + aux_sym_num_lit_token1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(3751), 1, + ACTIONS(4222), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 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(3747), 2, + ACTIONS(3812), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3824), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4218), 2, sym__ws, sym_comment, - ACTIONS(3749), 3, + ACTIONS(4220), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(270), 3, + STATE(498), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(432), 19, + STATE(1653), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35825,7 +40482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14580] = 35, + [13770] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -35834,78 +40491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(3757), 1, + ACTIONS(4226), 1, sym_self_referential_reader_macro, - STATE(1251), 1, + STATE(840), 1, sym_sym_lit, - STATE(1370), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3377), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3753), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3755), 3, + ACTIONS(4224), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(347), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1361), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1329), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(10), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35925,7 +40582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14715] = 35, + [13905] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -35934,78 +40591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(65), 1, + anon_sym_POUND, + ACTIONS(69), 1, + aux_sym_num_lit_token1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(3763), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, + anon_sym_cl, + ACTIONS(4230), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(840), 1, + sym_sym_lit, + STATE(842), 1, + sym__bare_set_lit, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(113), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3759), 2, + ACTIONS(119), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3761), 3, + ACTIONS(4228), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(296), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2298), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(16), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36025,7 +40682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14850] = 35, + [14040] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36034,78 +40691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(2914), 1, + anon_sym_POUND, + ACTIONS(2918), 1, + aux_sym_num_lit_token1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(3767), 1, + ACTIONS(4084), 1, + anon_sym_cl, + ACTIONS(4236), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3765), 3, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4232), 2, + sym__ws, + sym_comment, + ACTIONS(4234), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(356), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2299), 19, + STATE(1829), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36125,7 +40782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14985] = 35, + [14175] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36134,78 +40791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(2799), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3771), 1, + ACTIONS(4240), 1, sym_self_referential_reader_macro, - STATE(1003), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1023), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3769), 3, + ACTIONS(4238), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1024), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(963), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2255), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36225,7 +40882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15120] = 35, + [14310] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36234,78 +40891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(2914), 1, + anon_sym_POUND, + ACTIONS(2918), 1, + aux_sym_num_lit_token1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(4084), 1, anon_sym_cl, - ACTIONS(3777), 1, + ACTIONS(4246), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2369), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3309), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3327), 2, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3773), 2, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4242), 2, sym__ws, sym_comment, - ACTIONS(3775), 3, + ACTIONS(4244), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(328), 3, + STATE(357), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1779), 19, + STATE(1830), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36325,7 +40982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15255] = 35, + [14445] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36334,78 +40991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(129), 1, + anon_sym_POUND, + ACTIONS(133), 1, + aux_sym_num_lit_token1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3435), 1, + ACTIONS(4250), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, + ACTIONS(158), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2369), 2, + ACTIONS(187), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3309), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3327), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3433), 3, + ACTIONS(4248), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1781), 19, + STATE(2254), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36425,7 +41082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15390] = 35, + [14580] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36434,178 +41091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, - anon_sym_COLON, - ACTIONS(3147), 1, - anon_sym_COLON_COLON, - ACTIONS(3149), 1, - anon_sym_DQUOTE, - ACTIONS(3151), 1, - aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, - anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, - anon_sym_SQUOTE, - ACTIONS(3317), 1, - anon_sym_BQUOTE, - ACTIONS(3319), 1, - anon_sym_COMMA_AT, - ACTIONS(3321), 1, - anon_sym_COMMA, - ACTIONS(3323), 1, - anon_sym_cl, - ACTIONS(3783), 1, - sym_self_referential_reader_macro, - STATE(1689), 1, - sym__bare_set_lit, - STATE(2118), 1, - aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, - sym__metadata_lit, - ACTIONS(2363), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2369), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3309), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3327), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3779), 2, - sym__ws, - sym_comment, - ACTIONS(3781), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(329), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1782), 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, - [15525] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(2914), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(2918), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4084), 1, anon_sym_cl, - ACTIONS(3787), 1, + ACTIONS(4256), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(2304), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4252), 2, sym__ws, sym_comment, - ACTIONS(3785), 3, + ACTIONS(4254), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(358), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(465), 19, + STATE(1844), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1831), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36625,7 +41182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15660] = 35, + [14715] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36634,78 +41191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3791), 1, + ACTIONS(4260), 1, sym_self_referential_reader_macro, - STATE(1251), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1370), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3377), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3789), 3, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4258), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1361), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1290), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2248), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36725,7 +41282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15795] = 35, + [14850] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36734,78 +41291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(2914), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(2918), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(4084), 1, anon_sym_cl, - ACTIONS(3795), 1, + ACTIONS(4266), 1, sym_self_referential_reader_macro, - STATE(1251), 1, - sym_sym_lit, - STATE(1370), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3377), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3793), 3, + ACTIONS(4262), 2, + sym__ws, + sym_comment, + ACTIONS(4264), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1361), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(359), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1291), 19, + STATE(1844), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1832), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36825,87 +41382,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15930] = 35, + [14985] = 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(129), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(141), 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(160), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3799), 1, + ACTIONS(4270), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3797), 3, + ACTIONS(4268), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(556), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2247), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36925,7 +41482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16065] = 35, + [15120] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36934,78 +41491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(2914), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(2918), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(2928), 1, + anon_sym_LPAREN, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(2799), 1, - anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(4084), 1, anon_sym_cl, - ACTIONS(3803), 1, + ACTIONS(4276), 1, sym_self_referential_reader_macro, - STATE(1003), 1, - sym_sym_lit, - STATE(1023), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(2304), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4272), 2, sym__ws, sym_comment, - ACTIONS(3801), 3, + ACTIONS(4274), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1024), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(360), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(962), 19, + STATE(1844), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1833), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37025,7 +41582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16200] = 35, + [15255] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37034,78 +41591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, + ACTIONS(162), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, anon_sym_POUND, - ACTIONS(3307), 1, + ACTIONS(4282), 1, aux_sym_num_lit_token1, - ACTIONS(3311), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3323), 1, - anon_sym_cl, - ACTIONS(3807), 1, + ACTIONS(4296), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2369), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3309), 2, + ACTIONS(4284), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3327), 2, + ACTIONS(4298), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3805), 3, + ACTIONS(4280), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1789), 19, + STATE(2229), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37125,7 +41682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16335] = 35, + [15390] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37134,78 +41691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3085), 1, - sym_self_referential_reader_macro, - ACTIONS(3145), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, + ACTIONS(162), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, anon_sym_POUND, - ACTIONS(3307), 1, + ACTIONS(4282), 1, aux_sym_num_lit_token1, - ACTIONS(3311), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3323), 1, - anon_sym_cl, - STATE(1689), 1, + ACTIONS(4302), 1, + sym_self_referential_reader_macro, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2369), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3309), 2, + ACTIONS(4284), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3327), 2, + ACTIONS(4298), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3081), 3, + ACTIONS(4300), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1790), 19, + STATE(2195), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37225,7 +41782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16470] = 35, + [15525] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37234,78 +41791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3813), 1, + ACTIONS(4308), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3019), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(4284), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(4298), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3809), 2, + ACTIONS(4304), 2, sym__ws, sym_comment, - ACTIONS(3811), 3, + ACTIONS(4306), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(309), 3, + STATE(377), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2242), 19, + STATE(2237), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37325,7 +41882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16605] = 35, + [15660] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37334,78 +41891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3173), 1, - sym_self_referential_reader_macro, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - STATE(2092), 1, + ACTIONS(4312), 1, + sym_self_referential_reader_macro, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3019), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4284), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(4298), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3815), 2, - sym__ws, - sym_comment, - ACTIONS(3141), 3, + ACTIONS(4310), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(310), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2236), 19, + STATE(2234), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37425,87 +41982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16740] = 35, + [15795] = 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(3574), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(3578), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3606), 1, anon_sym_cl, - ACTIONS(3821), 1, + ACTIONS(4316), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1314), 1, sym_sym_lit, - STATE(2089), 1, + STATE(1373), 1, + sym__bare_set_lit, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3608), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3614), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3817), 2, - sym__ws, - sym_comment, - ACTIONS(3819), 3, + ACTIONS(4314), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(588), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(211), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1393), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37525,7 +42082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16875] = 35, + [15930] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37534,78 +42091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3239), 1, - sym_self_referential_reader_macro, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - STATE(2092), 1, + ACTIONS(4322), 1, + sym_self_referential_reader_macro, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3019), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(4284), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(4298), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3823), 2, + ACTIONS(4318), 2, sym__ws, sym_comment, - ACTIONS(3237), 3, + ACTIONS(4320), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(311), 3, + STATE(378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2234), 19, + STATE(2233), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37625,7 +42182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17010] = 35, + [16065] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37634,78 +42191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(3574), 1, + anon_sym_POUND, + ACTIONS(3578), 1, + aux_sym_num_lit_token1, + ACTIONS(3580), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(3584), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(3586), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3592), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(3598), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(3600), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(3602), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(3604), 1, anon_sym_COMMA, - ACTIONS(3709), 1, + ACTIONS(3606), 1, + anon_sym_cl, + ACTIONS(4328), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1314), 1, + sym_sym_lit, + STATE(1373), 1, + sym__bare_set_lit, + STATE(2348), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(3590), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(3608), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3825), 2, + ACTIONS(3614), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4324), 2, sym__ws, sym_comment, - ACTIONS(3707), 3, + ACTIONS(4326), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(318), 3, + STATE(264), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2232), 19, + STATE(1396), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37725,7 +42282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17145] = 35, + [16200] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37734,78 +42291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3393), 1, - anon_sym_cl, - ACTIONS(3829), 1, + ACTIONS(4332), 1, sym_self_referential_reader_macro, - STATE(1251), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1370), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, + ACTIONS(183), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(189), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3377), 2, + ACTIONS(4284), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(4298), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3827), 3, + ACTIONS(4330), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1361), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1294), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2231), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37825,7 +42382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17280] = 35, + [16335] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37834,78 +42391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3713), 1, + ACTIONS(4336), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4284), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(4298), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3711), 3, + ACTIONS(4334), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2225), 19, + STATE(2204), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37925,7 +42482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17415] = 35, + [16470] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37934,78 +42491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(1412), 1, + anon_sym_POUND, + ACTIONS(1416), 1, + aux_sym_num_lit_token1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(3833), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_cl, + ACTIONS(4340), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1235), 1, + sym__bare_set_lit, + STATE(1237), 1, + sym_sym_lit, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(1458), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3831), 3, + ACTIONS(1464), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4338), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2224), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(127), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38025,7 +42582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17550] = 35, + [16605] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38034,78 +42591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3837), 1, + ACTIONS(4346), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(4284), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(4298), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3835), 3, + ACTIONS(4342), 2, + sym__ws, + sym_comment, + ACTIONS(4344), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(380), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2223), 19, + STATE(2142), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38125,87 +42682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17685] = 35, + [16740] = 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(135), 1, + anon_sym_COLON, + ACTIONS(137), 1, + anon_sym_COLON_COLON, + ACTIONS(139), 1, + anon_sym_DQUOTE, + ACTIONS(141), 1, + aux_sym_sym_lit_token1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(3843), 1, + ACTIONS(4352), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3839), 2, + ACTIONS(4284), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4298), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4348), 2, sym__ws, sym_comment, - ACTIONS(3841), 3, + ACTIONS(4350), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(323), 3, + STATE(384), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(515), 19, + STATE(2146), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38225,7 +42782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17820] = 35, + [16875] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38234,78 +42791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, - anon_sym_POUND, - ACTIONS(288), 1, - aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(2799), 1, - anon_sym_LPAREN, - ACTIONS(2801), 1, - anon_sym_cl, - ACTIONS(3847), 1, + ACTIONS(4356), 1, sym_self_referential_reader_macro, - STATE(1003), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1023), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3845), 3, + ACTIONS(4284), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4298), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4354), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1024), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(961), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2193), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38325,7 +42882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17955] = 35, + [17010] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38334,78 +42891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, - anon_sym_POUND, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3171), 1, - anon_sym_cl, - ACTIONS(3833), 1, + ACTIONS(4360), 1, sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2329), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4284), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(4298), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3831), 3, + ACTIONS(4358), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2224), 19, + STATE(2192), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38425,7 +42982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18090] = 35, + [17145] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38434,78 +42991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3853), 1, + ACTIONS(4364), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3019), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4284), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(4298), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3849), 2, - sym__ws, - sym_comment, - ACTIONS(3851), 3, + ACTIONS(4362), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(563), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2366), 19, + STATE(2187), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38525,87 +43082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18225] = 35, + [17280] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3857), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(4368), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3855), 3, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4366), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2222), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(756), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38625,7 +43182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18360] = 35, + [17415] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38634,178 +43191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3861), 1, + ACTIONS(4374), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(4284), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(4298), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3859), 3, + ACTIONS(4370), 2, + sym__ws, + sym_comment, + ACTIONS(4372), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(385), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2220), 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, - [18495] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3361), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_num_lit_token1, - ACTIONS(3367), 1, - anon_sym_COLON, - ACTIONS(3369), 1, - anon_sym_COLON_COLON, - ACTIONS(3371), 1, - anon_sym_DQUOTE, - ACTIONS(3373), 1, - aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_POUND_QMARK, - ACTIONS(3381), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, - anon_sym_SQUOTE, - ACTIONS(3387), 1, - anon_sym_BQUOTE, - ACTIONS(3389), 1, - anon_sym_COMMA_AT, - ACTIONS(3391), 1, - anon_sym_COMMA, - ACTIONS(3393), 1, - anon_sym_cl, - ACTIONS(3865), 1, - sym_self_referential_reader_macro, - STATE(1251), 1, - sym_sym_lit, - STATE(1370), 1, - sym__bare_set_lit, - STATE(2110), 1, - aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3377), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3395), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3399), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3401), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3863), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1361), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1295), 19, + STATE(2184), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38825,7 +43282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18630] = 35, + [17550] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -38864,19 +43321,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3869), 1, + ACTIONS(4378), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -38890,22 +43347,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3867), 3, + ACTIONS(4376), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1535), 19, + STATE(758), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38925,7 +43382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18765] = 35, + [17685] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38934,78 +43391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3393), 1, - anon_sym_cl, - ACTIONS(3873), 1, + ACTIONS(4382), 1, sym_self_referential_reader_macro, - STATE(1251), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1370), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, + ACTIONS(183), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(189), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3377), 2, + ACTIONS(4284), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(4298), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3871), 3, + ACTIONS(4380), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1361), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1258), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2179), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39025,7 +43482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18900] = 35, + [17820] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -39034,78 +43491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, - anon_sym_POUND, - ACTIONS(3197), 1, - aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(3874), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(3877), 1, - sym_self_referential_reader_macro, - STATE(784), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(786), 1, - sym_sym_lit, - STATE(2081), 1, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, + sym_sym_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4384), 2, sym__ws, sym_comment, - ACTIONS(3209), 2, + ACTIONS(4390), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(4406), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3875), 3, + ACTIONS(3840), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(785), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(789), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(862), 19, + STATE(1844), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2339), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39125,87 +43582,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19035] = 35, + [17955] = 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(3838), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(3881), 1, + ACTIONS(4412), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2089), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4408), 2, sym__ws, sym_comment, - ACTIONS(3879), 3, + ACTIONS(4410), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(584), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1534), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2449), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39225,7 +43682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19170] = 35, + [18090] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(17), 1, @@ -39250,33 +43707,33 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3037), 1, + ACTIONS(3808), 1, anon_sym_POUND, - ACTIONS(3041), 1, + ACTIONS(3810), 1, aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(3885), 1, + ACTIONS(4418), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2093), 1, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(51), 2, anon_sym_POUNDP, @@ -39284,28 +43741,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3043), 2, + ACTIONS(3812), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3057), 2, + ACTIONS(3824), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3883), 3, + ACTIONS(4414), 2, + sym__ws, + sym_comment, + ACTIONS(4416), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(580), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1560), 19, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1702), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39325,87 +43782,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19305] = 35, + [18225] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3891), 1, + ACTIONS(4424), 1, sym_self_referential_reader_macro, - STATE(1251), 1, - sym_sym_lit, - STATE(1370), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3377), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3887), 2, + ACTIONS(4420), 2, sym__ws, sym_comment, - ACTIONS(3889), 3, + ACTIONS(4422), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(380), 3, + STATE(401), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1361), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1298), 19, + STATE(801), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39425,7 +43882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19440] = 35, + [18360] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -39434,78 +43891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(3838), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(3897), 1, + ACTIONS(4430), 1, sym_self_referential_reader_macro, - STATE(1251), 1, - sym_sym_lit, - STATE(1370), 1, - sym__bare_set_lit, - STATE(2110), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3377), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3893), 2, + ACTIONS(4426), 2, sym__ws, sym_comment, - ACTIONS(3895), 3, + ACTIONS(4428), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(475), 3, + STATE(619), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1361), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1300), 19, + STATE(2445), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39525,7 +43982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19575] = 35, + [18495] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -39564,19 +44021,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3903), 1, + ACTIONS(4434), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -39590,22 +44047,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3899), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3901), 3, + ACTIONS(4432), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(254), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1559), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(549), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39625,7 +44082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19710] = 35, + [18630] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -39664,19 +44121,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3885), 1, + ACTIONS(4440), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -39690,22 +44147,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4436), 2, sym__ws, sym_comment, - ACTIONS(3883), 3, + ACTIONS(4438), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(362), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1560), 19, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(365), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39725,87 +44182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19845] = 35, + [18765] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(284), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 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(302), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2799), 1, - anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3909), 1, + ACTIONS(4446), 1, sym_self_referential_reader_macro, - STATE(1003), 1, - sym_sym_lit, - STATE(1023), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3905), 2, + ACTIONS(4442), 2, sym__ws, sym_comment, - ACTIONS(3907), 3, + ACTIONS(4444), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(271), 3, + STATE(464), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1024), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(959), 19, + STATE(398), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39825,7 +44282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19980] = 35, + [18900] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(17), 1, @@ -39850,33 +44307,33 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3037), 1, + ACTIONS(3752), 1, + sym_self_referential_reader_macro, + ACTIONS(3808), 1, anon_sym_POUND, - ACTIONS(3041), 1, + ACTIONS(3810), 1, aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(3913), 1, - sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2093), 1, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(51), 2, anon_sym_POUNDP, @@ -39884,28 +44341,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3043), 2, + ACTIONS(3812), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3057), 2, + ACTIONS(3824), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3911), 3, + ACTIONS(3750), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1592), 19, + STATE(1597), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39925,7 +44382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20115] = 35, + [19035] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -39934,78 +44391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3919), 1, + ACTIONS(4452), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3019), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(4284), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(4298), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3915), 2, + ACTIONS(4448), 2, sym__ws, sym_comment, - ACTIONS(3917), 3, + ACTIONS(4450), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(336), 3, + STATE(389), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2226), 19, + STATE(2172), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40025,87 +44482,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20250] = 35, + [19170] = 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(135), 1, + anon_sym_COLON, + ACTIONS(137), 1, + anon_sym_COLON_COLON, + ACTIONS(139), 1, + anon_sym_DQUOTE, + ACTIONS(141), 1, + aux_sym_sym_lit_token1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(3923), 1, + ACTIONS(4458), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4284), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4298), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4454), 2, sym__ws, sym_comment, - ACTIONS(3921), 3, + ACTIONS(4456), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(390), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(604), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2171), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40125,87 +44582,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20385] = 35, + [19305] = 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(129), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(141), 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(160), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3927), 1, + ACTIONS(4462), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3925), 3, + ACTIONS(4460), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(607), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2260), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40225,7 +44682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20520] = 35, + [19440] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -40234,78 +44691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, - anon_sym_POUND, - ACTIONS(288), 1, - aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(2799), 1, - anon_sym_LPAREN, - ACTIONS(2801), 1, - anon_sym_cl, - ACTIONS(3933), 1, + ACTIONS(4468), 1, sym_self_referential_reader_macro, - STATE(1003), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1023), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3929), 2, + ACTIONS(4284), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4298), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4464), 2, sym__ws, sym_comment, - ACTIONS(3931), 3, + ACTIONS(4466), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(427), 3, + STATE(391), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1024), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(954), 19, + STATE(2170), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40325,107 +44782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20655] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2991), 1, - anon_sym_COLON, - ACTIONS(2993), 1, - anon_sym_COLON_COLON, - ACTIONS(2995), 1, - anon_sym_DQUOTE, - ACTIONS(2997), 1, - aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, - anon_sym_POUND_QMARK, - ACTIONS(3499), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, - anon_sym_SQUOTE, - ACTIONS(3505), 1, - anon_sym_BQUOTE, - ACTIONS(3507), 1, - anon_sym_COMMA_AT, - ACTIONS(3509), 1, - anon_sym_COMMA, - ACTIONS(3939), 1, - sym_self_referential_reader_macro, - STATE(2092), 1, - aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3513), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3935), 2, - sym__ws, - sym_comment, - ACTIONS(3937), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(337), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2277), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2207), 19, - sym__form, - sym_num_lit, - sym_kwd_lit, - sym_str_lit, - sym_char_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - sym_path_lit, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [20790] = 35, + [19575] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -40434,78 +44791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(2799), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3945), 1, + ACTIONS(4474), 1, sym_self_referential_reader_macro, - STATE(1003), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1023), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3941), 2, + ACTIONS(4470), 2, sym__ws, sym_comment, - ACTIONS(3943), 3, + ACTIONS(4472), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(444), 3, + STATE(517), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1024), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(952), 19, + STATE(2249), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40525,7 +44882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20925] = 35, + [19710] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -40534,78 +44891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, - anon_sym_POUND, - ACTIONS(1445), 1, - aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, - anon_sym_cl, - ACTIONS(3949), 1, + ACTIONS(4480), 1, sym_self_referential_reader_macro, - STATE(1225), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1227), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4284), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4298), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4476), 2, sym__ws, sym_comment, - ACTIONS(3947), 3, + ACTIONS(4478), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1226), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(395), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(71), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2157), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40625,7 +44982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21060] = 35, + [19845] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -40634,78 +44991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(2799), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3955), 1, + ACTIONS(4486), 1, sym_self_referential_reader_macro, - STATE(1003), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1023), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3951), 2, + ACTIONS(4482), 2, sym__ws, sym_comment, - ACTIONS(3953), 3, + ACTIONS(4484), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(448), 3, + STATE(520), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1024), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(949), 19, + STATE(2241), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40725,87 +45082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21195] = 35, + [19980] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - 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(135), 1, + anon_sym_COLON, + ACTIONS(137), 1, + anon_sym_COLON_COLON, + ACTIONS(139), 1, + anon_sym_DQUOTE, + ACTIONS(141), 1, + aux_sym_sym_lit_token1, + ACTIONS(160), 1, + anon_sym_POUND_QMARK, + ACTIONS(162), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3037), 1, + ACTIONS(4278), 1, anon_sym_POUND, - ACTIONS(3041), 1, + ACTIONS(4282), 1, aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3903), 1, + ACTIONS(4490), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2093), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3043), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4284), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3057), 2, + ACTIONS(4298), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3957), 2, - sym__ws, - sym_comment, - ACTIONS(3901), 3, + ACTIONS(4488), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(434), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1559), 19, + STATE(2151), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40825,7 +45182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21330] = 35, + [20115] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -40834,78 +45191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, - anon_sym_POUND, - ACTIONS(3197), 1, - aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3225), 1, - anon_sym_cl, - ACTIONS(3961), 1, + ACTIONS(4494), 1, sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(786), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2081), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, + ACTIONS(183), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(189), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3209), 2, + ACTIONS(4284), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(4298), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3959), 3, + ACTIONS(4492), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(785), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(12), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2149), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40925,7 +45282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21465] = 35, + [20250] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -40934,78 +45291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3097), 1, + ACTIONS(4278), 1, anon_sym_POUND, - ACTIONS(3101), 1, + ACTIONS(4282), 1, aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3965), 1, + ACTIONS(4498), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1853), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(208), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3103), 2, + ACTIONS(4284), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3117), 2, + ACTIONS(4298), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3963), 3, + ACTIONS(4496), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1910), 19, + STATE(2144), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41025,7 +45382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21600] = 35, + [20385] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41034,78 +45391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3971), 1, + ACTIONS(4502), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3019), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4284), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(4298), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3967), 2, - sym__ws, - sym_comment, - ACTIONS(3969), 3, + ACTIONS(4500), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(338), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2255), 19, + STATE(2128), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41125,7 +45482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21735] = 35, + [20520] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41134,78 +45491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, - anon_sym_POUND, - ACTIONS(158), 1, - aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3975), 1, + ACTIONS(4506), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1853), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3973), 3, + ACTIONS(4284), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4298), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4504), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1947), 19, + STATE(2138), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41225,7 +45582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21870] = 35, + [20655] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41234,78 +45591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(3979), 1, + ACTIONS(4510), 1, sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(786), 1, + STATE(976), 1, sym_sym_lit, - STATE(2081), 1, + STATE(986), 1, + sym__bare_set_lit, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3209), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3977), 3, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4508), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(785), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(861), 19, + STATE(1028), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41325,7 +45682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22005] = 35, + [20790] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41334,178 +45691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, - anon_sym_POUND, - ACTIONS(158), 1, - aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, - anon_sym_SQUOTE, - ACTIONS(189), 1, - anon_sym_BQUOTE, - ACTIONS(191), 1, - anon_sym_COMMA_AT, - ACTIONS(193), 1, - anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3983), 1, - sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2102), 1, - aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - ACTIONS(179), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(202), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(206), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(208), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3981), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2014), 19, - sym__form, - sym_num_lit, - sym_kwd_lit, - sym_str_lit, - sym_char_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - sym_path_lit, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [22140] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2991), 1, - anon_sym_COLON, - ACTIONS(2993), 1, - anon_sym_COLON_COLON, - ACTIONS(2995), 1, - anon_sym_DQUOTE, - ACTIONS(2997), 1, - aux_sym_sym_lit_token1, - ACTIONS(3017), 1, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, + ACTIONS(4278), 1, anon_sym_POUND, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, - anon_sym_POUND_QMARK, - ACTIONS(3499), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3989), 1, + ACTIONS(4516), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3019), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(4284), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(4298), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3985), 2, + ACTIONS(4512), 2, sym__ws, sym_comment, - ACTIONS(3987), 3, + ACTIONS(4514), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(343), 3, + STATE(412), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2257), 19, + STATE(2140), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41525,7 +45782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22275] = 35, + [20925] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41534,78 +45791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, - anon_sym_POUND, - ACTIONS(158), 1, - aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3993), 1, + ACTIONS(4522), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1853), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4284), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4298), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4518), 2, sym__ws, sym_comment, - ACTIONS(3991), 3, + ACTIONS(4520), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(413), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2015), 19, + STATE(2145), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41625,7 +45882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22410] = 35, + [21060] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41634,78 +45891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3999), 1, + ACTIONS(4528), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3019), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(4284), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(4298), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3995), 2, + ACTIONS(4524), 2, sym__ws, sym_comment, - ACTIONS(3997), 3, + ACTIONS(4526), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(344), 3, + STATE(414), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2258), 19, + STATE(2148), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41725,7 +45982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22545] = 35, + [21195] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41734,78 +45991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, - anon_sym_POUND, - ACTIONS(158), 1, - aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(4003), 1, + ACTIONS(4534), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1853), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4284), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4298), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4530), 2, sym__ws, sym_comment, - ACTIONS(4001), 3, + ACTIONS(4532), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(415), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2021), 19, + STATE(2150), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41825,7 +46082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22680] = 35, + [21330] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41834,78 +46091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3097), 1, + ACTIONS(4278), 1, anon_sym_POUND, - ACTIONS(3101), 1, + ACTIONS(4282), 1, aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(4009), 1, + ACTIONS(4540), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1853), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(208), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3103), 2, + ACTIONS(4284), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3117), 2, + ACTIONS(4298), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4005), 2, + ACTIONS(4536), 2, sym__ws, sym_comment, - ACTIONS(4007), 3, + ACTIONS(4538), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(221), 3, + STATE(416), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1913), 19, + STATE(2154), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41925,7 +46182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22815] = 35, + [21465] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41934,78 +46191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, + anon_sym_POUND, + ACTIONS(4546), 1, + aux_sym_num_lit_token1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(4015), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4574), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2104), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(208), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3103), 2, + ACTIONS(4556), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3117), 2, + ACTIONS(4576), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4011), 2, - sym__ws, - sym_comment, - ACTIONS(4013), 3, + ACTIONS(4544), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(272), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1914), 19, + STATE(2487), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42025,7 +46282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22950] = 35, + [21600] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42034,78 +46291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(4021), 1, + ACTIONS(4580), 1, sym_self_referential_reader_macro, - STATE(1251), 1, - sym_sym_lit, - STATE(1370), 1, - sym__bare_set_lit, - STATE(2110), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3377), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3395), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4017), 2, - sym__ws, - sym_comment, - ACTIONS(4019), 3, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4578), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(511), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1361), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1308), 19, + STATE(2486), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42125,7 +46382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23085] = 35, + [21735] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42134,78 +46391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(4027), 1, + ACTIONS(4586), 1, sym_self_referential_reader_macro, - STATE(1251), 1, - sym_sym_lit, - STATE(1370), 1, - sym__bare_set_lit, - STATE(2110), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3377), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3395), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4023), 2, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4582), 2, sym__ws, sym_comment, - ACTIONS(4025), 3, + ACTIONS(4584), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(516), 3, + STATE(423), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1361), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1311), 19, + STATE(2482), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42225,7 +46482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23220] = 35, + [21870] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42234,78 +46491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(4031), 1, + ACTIONS(4590), 1, sym_self_referential_reader_macro, - STATE(1251), 1, - sym_sym_lit, - STATE(1370), 1, - sym__bare_set_lit, - STATE(2110), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3377), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4029), 3, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4588), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1361), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1321), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2479), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42325,7 +46582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23355] = 35, + [22005] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42334,78 +46591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(4035), 1, + ACTIONS(4596), 1, sym_self_referential_reader_macro, - STATE(1251), 1, - sym_sym_lit, - STATE(1370), 1, - sym__bare_set_lit, - STATE(2110), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3377), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3395), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4033), 3, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4592), 2, + sym__ws, + sym_comment, + ACTIONS(4594), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1361), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(424), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1293), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2478), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42425,7 +46682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23490] = 35, + [22140] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42434,78 +46691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, + anon_sym_POUND, + ACTIONS(4546), 1, + aux_sym_num_lit_token1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(4039), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4600), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2104), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(208), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3103), 2, + ACTIONS(4556), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3117), 2, + ACTIONS(4576), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4037), 3, + ACTIONS(4598), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1940), 19, + STATE(2477), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42525,7 +46782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23625] = 35, + [22275] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42534,78 +46791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(4045), 1, + ACTIONS(4604), 1, sym_self_referential_reader_macro, - STATE(1251), 1, - sym_sym_lit, - STATE(1370), 1, - sym__bare_set_lit, - STATE(2110), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3377), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3395), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4041), 2, - sym__ws, - sym_comment, - ACTIONS(4043), 3, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4602), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(479), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1361), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1292), 19, + STATE(2475), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42625,7 +46882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23760] = 35, + [22410] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42634,78 +46891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(4051), 1, + ACTIONS(4610), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2102), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(202), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4047), 2, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4606), 2, sym__ws, sym_comment, - ACTIONS(4049), 3, + ACTIONS(4608), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(399), 3, + STATE(426), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1875), 19, + STATE(2474), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42725,7 +46982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23895] = 35, + [22545] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42734,78 +46991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(4057), 1, + ACTIONS(4616), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2102), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(202), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4053), 2, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4612), 2, sym__ws, sym_comment, - ACTIONS(4055), 3, + ACTIONS(4614), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(402), 3, + STATE(428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1882), 19, + STATE(2471), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42825,87 +47082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24030] = 35, + [22680] = 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(3037), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(3041), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(4548), 1, + anon_sym_COLON, + ACTIONS(4550), 1, + anon_sym_COLON_COLON, + ACTIONS(4552), 1, + anon_sym_DQUOTE, + ACTIONS(4554), 1, + aux_sym_sym_lit_token1, + ACTIONS(4558), 1, + anon_sym_POUND_QMARK, + ACTIONS(4560), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(3717), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4620), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2093), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(51), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3043), 2, + ACTIONS(4556), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3057), 2, + ACTIONS(4576), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3715), 3, + ACTIONS(4618), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1556), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2470), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42925,7 +47182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24165] = 35, + [22815] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42934,78 +47191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(4063), 1, + ACTIONS(4624), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2102), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(202), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4059), 2, - sym__ws, - sym_comment, - ACTIONS(4061), 3, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4622), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(410), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1896), 19, + STATE(2469), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43025,7 +47282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24300] = 35, + [22950] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43034,78 +47291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(4069), 1, + ACTIONS(4628), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2102), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(202), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4065), 2, - sym__ws, - sym_comment, - ACTIONS(4067), 3, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4626), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(415), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1897), 19, + STATE(2468), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43125,7 +47382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24435] = 35, + [23085] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43134,78 +47391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(4075), 1, + ACTIONS(4634), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2102), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(202), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4071), 2, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4630), 2, sym__ws, sym_comment, - ACTIONS(4073), 3, + ACTIONS(4632), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(419), 3, + STATE(429), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1898), 19, + STATE(2465), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43225,7 +47482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24570] = 35, + [23220] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43234,78 +47491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(3813), 1, + ACTIONS(4638), 1, sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2329), 1, + STATE(2621), 1, sym_sym_lit, - ACTIONS(3019), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(4556), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(4576), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4077), 2, - sym__ws, - sym_comment, - ACTIONS(3811), 3, + ACTIONS(4636), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(710), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2242), 19, + STATE(2464), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43325,7 +47582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24705] = 35, + [23355] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43334,78 +47591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(4115), 1, + ACTIONS(4644), 1, sym_self_referential_reader_macro, - STATE(1389), 1, - sym_sym_lit, - STATE(1391), 1, - sym__bare_set_lit, - STATE(2106), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(4095), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4113), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4081), 3, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4640), 2, + sym__ws, + sym_comment, + ACTIONS(4642), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1390), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(432), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1467), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2461), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43425,7 +47682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24840] = 35, + [23490] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43434,78 +47691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, + anon_sym_POUND, + ACTIONS(4546), 1, + aux_sym_num_lit_token1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(4123), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4650), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2104), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(208), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3103), 2, + ACTIONS(4556), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3117), 2, + ACTIONS(4576), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4121), 3, + ACTIONS(4646), 2, + sym__ws, + sym_comment, + ACTIONS(4648), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(433), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1939), 19, + STATE(2460), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43525,7 +47782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24975] = 35, + [23625] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43534,78 +47791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(4127), 1, + ACTIONS(4656), 1, sym_self_referential_reader_macro, - STATE(1389), 1, - sym_sym_lit, - STATE(1391), 1, - sym__bare_set_lit, - STATE(2106), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(4095), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4113), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4125), 3, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4652), 2, + sym__ws, + sym_comment, + ACTIONS(4654), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1390), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(434), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1466), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2459), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43625,7 +47882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25110] = 35, + [23760] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43634,78 +47891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(2799), 1, - anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(4133), 1, + ACTIONS(4662), 1, sym_self_referential_reader_macro, - STATE(1003), 1, - sym_sym_lit, - STATE(1023), 1, - sym__bare_set_lit, - STATE(2101), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(316), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4129), 2, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4658), 2, sym__ws, sym_comment, - ACTIONS(4131), 3, + ACTIONS(4660), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(546), 3, + STATE(436), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1024), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(928), 19, + STATE(2457), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43725,7 +47982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25245] = 35, + [23895] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43734,78 +47991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(4139), 1, + ACTIONS(4666), 1, sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(786), 1, - sym_sym_lit, - STATE(2081), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3209), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3227), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4135), 2, - sym__ws, - sym_comment, - ACTIONS(4137), 3, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4664), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(348), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(785), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(855), 19, + STATE(2455), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43825,7 +48082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25380] = 35, + [24030] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43834,78 +48091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, + anon_sym_POUND, + ACTIONS(4546), 1, + aux_sym_num_lit_token1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(4143), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4670), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2396), 1, + STATE(2621), 1, sym_sym_lit, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3019), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(4556), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(4576), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4141), 3, + ACTIONS(4668), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2060), 19, + STATE(2451), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43925,7 +48182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25515] = 35, + [24165] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43934,78 +48191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(4147), 1, + ACTIONS(4674), 1, sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(786), 1, - sym_sym_lit, - STATE(2081), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3209), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4145), 3, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4672), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(785), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(854), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2450), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44025,87 +48282,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25650] = 35, + [24300] = 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(3037), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(3041), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(4548), 1, + anon_sym_COLON, + ACTIONS(4550), 1, + anon_sym_COLON_COLON, + ACTIONS(4552), 1, + anon_sym_DQUOTE, + ACTIONS(4554), 1, + aux_sym_sym_lit_token1, + ACTIONS(4558), 1, + anon_sym_POUND_QMARK, + ACTIONS(4560), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(3699), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4678), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2093), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(51), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3043), 2, + ACTIONS(4556), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3057), 2, + ACTIONS(4576), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3697), 3, + ACTIONS(4676), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1555), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2447), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44125,7 +48382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25785] = 35, + [24435] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -44134,78 +48391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(4151), 1, + ACTIONS(4682), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2102), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(202), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(4149), 3, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4680), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1938), 19, + STATE(2446), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44225,87 +48482,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25920] = 35, + [24570] = 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(3037), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(3041), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(71), 1, + anon_sym_COLON, + ACTIONS(73), 1, + anon_sym_COLON_COLON, + ACTIONS(75), 1, + anon_sym_DQUOTE, + ACTIONS(77), 1, + aux_sym_sym_lit_token1, + ACTIONS(92), 1, + anon_sym_POUND_QMARK, + ACTIONS(94), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(3673), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, + anon_sym_cl, + ACTIONS(4686), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(840), 1, sym_sym_lit, - STATE(2093), 1, + STATE(842), 1, + sym__bare_set_lit, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(90), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(117), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3043), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3057), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3671), 3, + ACTIONS(4684), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1548), 19, + STATE(864), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44325,7 +48582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26055] = 35, + [24705] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -44334,78 +48591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3912), 1, + sym_self_referential_reader_macro, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(3837), 1, - sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2329), 1, + STATE(2621), 1, sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(4556), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(4576), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3835), 3, + ACTIONS(4688), 2, + sym__ws, + sym_comment, + ACTIONS(3910), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(441), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2223), 19, + STATE(2472), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44425,7 +48682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26190] = 35, + [24840] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -44434,78 +48691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, + sym_self_referential_reader_macro, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(4123), 1, - sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2102), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(202), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4690), 2, sym__ws, sym_comment, - ACTIONS(4121), 3, + ACTIONS(4410), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(442), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1939), 19, + STATE(2449), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44525,7 +48782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26325] = 35, + [24975] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -44534,78 +48791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4430), 1, + sym_self_referential_reader_macro, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(4157), 1, - sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(786), 1, - sym_sym_lit, - STATE(2081), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3209), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3227), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4153), 2, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4692), 2, sym__ws, sym_comment, - ACTIONS(4155), 3, + ACTIONS(4428), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(370), 3, + STATE(443), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(785), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(853), 19, + STATE(2445), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44625,7 +48882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26460] = 35, + [25110] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -44634,78 +48891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(4161), 1, + ACTIONS(4698), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2102), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(202), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4694), 2, sym__ws, sym_comment, - ACTIONS(4159), 3, + ACTIONS(4696), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(444), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2031), 19, + STATE(2442), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44725,7 +48982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26595] = 35, + [25245] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -44734,78 +48991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(4165), 1, + ACTIONS(4704), 1, sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(786), 1, - sym_sym_lit, - STATE(2081), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3209), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3227), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4163), 3, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4700), 2, + sym__ws, + sym_comment, + ACTIONS(4702), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(785), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(445), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(852), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2463), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44825,7 +49082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26730] = 35, + [25380] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -44834,178 +49091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4171), 1, + ACTIONS(4708), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(976), 1, sym_sym_lit, - STATE(1853), 1, + STATE(986), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4167), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4169), 3, + ACTIONS(4706), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(503), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2032), 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, - [26865] = 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(3037), 1, - anon_sym_POUND, - ACTIONS(3041), 1, - aux_sym_num_lit_token1, - ACTIONS(3045), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, - anon_sym_SQUOTE, - ACTIONS(3049), 1, - anon_sym_BQUOTE, - ACTIONS(3051), 1, - anon_sym_COMMA_AT, - ACTIONS(3053), 1, - anon_sym_COMMA, - ACTIONS(3665), 1, - sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2093), 1, - aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3043), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3057), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4173), 2, - sym__ws, - sym_comment, - ACTIONS(3663), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(466), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1553), 19, + STATE(1075), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45025,7 +49182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27000] = 35, + [25515] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45034,78 +49191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4179), 1, + ACTIONS(4712), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(976), 1, sym_sym_lit, - STATE(1853), 1, + STATE(986), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4175), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4177), 3, + ACTIONS(4710), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(506), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2033), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1077), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45125,87 +49282,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27135] = 35, + [25650] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(785), 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(789), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4185), 1, + ACTIONS(4718), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(976), 1, sym_sym_lit, - STATE(2089), 1, + STATE(986), 1, + sym__bare_set_lit, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4181), 2, + ACTIONS(4714), 2, sym__ws, sym_comment, - ACTIONS(4183), 3, + ACTIONS(4716), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(358), 3, + STATE(452), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(615), 19, + STATE(1084), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45225,7 +49382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27270] = 35, + [25785] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45234,78 +49391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4039), 1, + ACTIONS(4722), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(976), 1, sym_sym_lit, - STATE(1853), 1, + STATE(986), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4037), 3, + ACTIONS(4720), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1940), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1085), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45325,7 +49482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27405] = 35, + [25920] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45334,78 +49491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4191), 1, + ACTIONS(4728), 1, sym_self_referential_reader_macro, - STATE(1389), 1, + STATE(976), 1, sym_sym_lit, - STATE(1391), 1, + STATE(986), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(4095), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4187), 2, + ACTIONS(4724), 2, sym__ws, sym_comment, - ACTIONS(4189), 3, + ACTIONS(4726), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(391), 3, + STATE(453), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1390), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1460), 19, + STATE(1086), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45425,7 +49582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27540] = 35, + [26055] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45434,78 +49591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4195), 1, + ACTIONS(4732), 1, sym_self_referential_reader_macro, - STATE(1389), 1, + STATE(976), 1, sym_sym_lit, - STATE(1391), 1, + STATE(986), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(4095), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4193), 3, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4730), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1390), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1459), 19, + STATE(1087), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45525,7 +49682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27675] = 35, + [26190] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45534,78 +49691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4201), 1, + ACTIONS(4736), 1, sym_self_referential_reader_macro, - STATE(1389), 1, + STATE(976), 1, sym_sym_lit, - STATE(1391), 1, + STATE(986), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(4095), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4197), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4199), 3, + ACTIONS(4734), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(393), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1390), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1458), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1083), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45625,7 +49782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27810] = 35, + [26325] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45634,78 +49791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4205), 1, + ACTIONS(4742), 1, sym_self_referential_reader_macro, - STATE(1389), 1, + STATE(976), 1, sym_sym_lit, - STATE(1391), 1, + STATE(986), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(4095), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4203), 3, + ACTIONS(4738), 2, + sym__ws, + sym_comment, + ACTIONS(4740), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1390), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(455), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1457), 19, + STATE(983), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1058), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45725,7 +49882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27945] = 35, + [26460] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45734,78 +49891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4209), 1, + ACTIONS(4748), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(976), 1, sym_sym_lit, - STATE(1853), 1, + STATE(986), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4744), 2, sym__ws, sym_comment, - ACTIONS(4207), 3, + ACTIONS(4746), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(457), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1944), 19, + STATE(1044), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45825,7 +49982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28080] = 35, + [26595] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45834,78 +49991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(773), 1, + anon_sym_POUND, + ACTIONS(777), 1, + aux_sym_num_lit_token1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(4213), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, + anon_sym_cl, + ACTIONS(4752), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(976), 1, sym_sym_lit, - STATE(1853), 1, + STATE(986), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, + ACTIONS(787), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(208), 2, + ACTIONS(809), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3103), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3117), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4211), 3, + ACTIONS(4750), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1891), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1043), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45925,7 +50082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28215] = 35, + [26730] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45934,78 +50091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(4217), 1, + ACTIONS(4758), 1, sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(786), 1, - sym_sym_lit, - STATE(2081), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3209), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3227), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4215), 3, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4754), 2, + sym__ws, + sym_comment, + ACTIONS(4756), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(785), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(606), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(850), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2089), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46025,87 +50182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28350] = 35, + [26865] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(785), 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(789), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4223), 1, + ACTIONS(4762), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(976), 1, sym_sym_lit, - STATE(2089), 1, + STATE(986), 1, + sym__bare_set_lit, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4219), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4221), 3, + ACTIONS(4760), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(359), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(617), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1017), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46125,87 +50282,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28485] = 35, + [27000] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(154), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 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(183), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4227), 1, + ACTIONS(4766), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4225), 3, + ACTIONS(4764), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1850), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(618), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46225,7 +50382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28620] = 35, + [27135] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46234,78 +50391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4233), 1, + ACTIONS(4770), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(976), 1, sym_sym_lit, - STATE(1853), 1, + STATE(986), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4229), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4231), 3, + ACTIONS(4768), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(451), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1934), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(977), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46325,7 +50482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28755] = 35, + [27270] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -46364,19 +50521,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4237), 1, + ACTIONS(4774), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -46390,22 +50547,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4235), 3, + ACTIONS(4772), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(622), 19, + STATE(266), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46425,7 +50582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28890] = 35, + [27405] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46434,66 +50591,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4243), 1, + ACTIONS(4780), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(976), 1, sym_sym_lit, - STATE(1853), 1, + STATE(986), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4239), 2, + ACTIONS(4776), 2, sym__ws, sym_comment, - ACTIONS(4241), 3, + ACTIONS(4778), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, @@ -46501,11 +50658,11 @@ static const uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1930), 19, + STATE(978), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46525,7 +50682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29025] = 35, + [27540] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46534,78 +50691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(3838), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(4247), 1, + ACTIONS(4698), 1, sym_self_referential_reader_macro, - STATE(1389), 1, - sym_sym_lit, - STATE(1391), 1, - sym__bare_set_lit, - STATE(2106), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(4095), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4245), 3, + ACTIONS(4782), 2, + sym__ws, + sym_comment, + ACTIONS(4696), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1390), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(510), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1455), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2442), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46625,9 +50782,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29160] = 35, + [27675] = 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, @@ -46646,66 +50807,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(3037), 1, - anon_sym_POUND, - ACTIONS(3041), 1, - aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3595), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(4418), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2093), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 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(3043), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3057), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4249), 2, + ACTIONS(4784), 2, sym__ws, sym_comment, - ACTIONS(3593), 3, + ACTIONS(4416), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(549), 3, + STATE(614), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1552), 19, + STATE(1702), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46725,87 +50882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29295] = 35, + [27810] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(154), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 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(183), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4255), 1, + ACTIONS(4788), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4251), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4253), 3, + ACTIONS(4786), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(462), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1929), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(272), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46825,87 +50982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29430] = 35, + [27945] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(160), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 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(183), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4259), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(4222), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(208), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4790), 2, sym__ws, sym_comment, - ACTIONS(3103), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3117), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4257), 3, + ACTIONS(4220), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(269), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1890), 19, + STATE(1653), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46925,87 +51082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29565] = 35, + [28080] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(284), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 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(302), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2799), 1, - anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4263), 1, + ACTIONS(3932), 1, sym_self_referential_reader_macro, - STATE(1003), 1, - sym_sym_lit, - STATE(1023), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4261), 3, + ACTIONS(3930), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1024), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(924), 19, + STATE(1655), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47025,7 +51182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29700] = 35, + [28215] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47034,78 +51191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4269), 1, + ACTIONS(4794), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(976), 1, sym_sym_lit, - STATE(1853), 1, + STATE(986), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4265), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4267), 3, + ACTIONS(4792), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(464), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1928), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(979), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47125,7 +51282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29835] = 35, + [28350] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47134,78 +51291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(3777), 1, + ACTIONS(4800), 1, sym_self_referential_reader_macro, - STATE(1689), 1, - sym__bare_set_lit, - STATE(2076), 1, + STATE(976), 1, sym_sym_lit, - STATE(2109), 1, + STATE(986), 1, + sym__bare_set_lit, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4271), 2, + ACTIONS(4796), 2, sym__ws, sym_comment, - ACTIONS(3775), 3, + ACTIONS(4798), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(692), 3, + STATE(461), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1779), 19, + STATE(1061), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47225,7 +51382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29970] = 35, + [28485] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47234,78 +51391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4277), 1, + ACTIONS(4806), 1, sym_self_referential_reader_macro, - STATE(1389), 1, + STATE(976), 1, sym_sym_lit, - STATE(1391), 1, + STATE(986), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(4095), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4273), 2, + ACTIONS(4802), 2, sym__ws, sym_comment, - ACTIONS(4275), 3, + ACTIONS(4804), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(412), 3, + STATE(463), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1390), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1450), 19, + STATE(1059), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47325,7 +51482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30105] = 35, + [28620] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47334,78 +51491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4283), 1, + ACTIONS(4812), 1, sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(786), 1, + STATE(976), 1, sym_sym_lit, - STATE(2081), 1, + STATE(986), 1, + sym__bare_set_lit, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3209), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4279), 2, + ACTIONS(4808), 2, sym__ws, sym_comment, - ACTIONS(4281), 3, + ACTIONS(4810), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(397), 3, + STATE(465), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(785), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(845), 19, + STATE(1053), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47425,7 +51582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30240] = 35, + [28755] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47434,78 +51591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4289), 1, + ACTIONS(4818), 1, sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(786), 1, + STATE(976), 1, sym_sym_lit, - STATE(2081), 1, + STATE(986), 1, + sym__bare_set_lit, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3209), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4285), 2, + ACTIONS(4814), 2, sym__ws, sym_comment, - ACTIONS(4287), 3, + ACTIONS(4816), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(405), 3, + STATE(473), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(785), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(844), 19, + STATE(1050), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47525,7 +51682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30375] = 35, + [28890] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47534,78 +51691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4293), 1, + ACTIONS(4822), 1, sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(786), 1, + STATE(976), 1, sym_sym_lit, - STATE(2081), 1, + STATE(986), 1, + sym__bare_set_lit, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3209), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4291), 3, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4820), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(785), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(843), 19, + STATE(1048), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47625,87 +51782,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30510] = 35, + [29025] = 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(3037), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(3041), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(779), 1, + anon_sym_COLON, + ACTIONS(781), 1, + anon_sym_COLON_COLON, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + aux_sym_sym_lit_token1, + ACTIONS(789), 1, + anon_sym_POUND_QMARK, + ACTIONS(791), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(3427), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, + anon_sym_cl, + ACTIONS(4826), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(976), 1, sym_sym_lit, - STATE(2093), 1, + STATE(986), 1, + sym__bare_set_lit, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(787), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(809), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3043), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3057), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3425), 3, + ACTIONS(4824), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1546), 19, + STATE(1047), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47725,7 +51882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30645] = 35, + [29160] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47734,78 +51891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4299), 1, + ACTIONS(4830), 1, sym_self_referential_reader_macro, - STATE(1389), 1, + STATE(976), 1, sym_sym_lit, - STATE(1391), 1, + STATE(986), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(4095), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4295), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4297), 3, + ACTIONS(4828), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(414), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1390), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1449), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1046), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47825,87 +51982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30780] = 35, + [29295] = 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(773), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(785), 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(789), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4305), 1, + ACTIONS(4834), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(976), 1, sym_sym_lit, - STATE(2089), 1, + STATE(986), 1, + sym__bare_set_lit, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4301), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4303), 3, + ACTIONS(4832), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(421), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(645), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1045), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47925,7 +52082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30915] = 35, + [29430] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47934,78 +52091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(3838), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(3852), 1, + anon_sym_LPAREN, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(4311), 1, + ACTIONS(4838), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2102), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4307), 2, - sym__ws, - sym_comment, - ACTIONS(4309), 3, + ACTIONS(4836), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(239), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1809), 19, + STATE(2331), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48025,7 +52182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31050] = 35, + [29565] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48034,78 +52191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4213), 1, + ACTIONS(4842), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(976), 1, sym_sym_lit, - STATE(1853), 1, + STATE(986), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4211), 3, + ACTIONS(4840), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1891), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1042), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48125,7 +52282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31185] = 35, + [29700] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48134,78 +52291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(1412), 1, + anon_sym_POUND, + ACTIONS(1416), 1, + aux_sym_num_lit_token1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(4317), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_cl, + ACTIONS(4846), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(1237), 1, + sym_sym_lit, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(208), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3103), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3117), 2, + ACTIONS(1458), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4313), 2, + ACTIONS(1464), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4315), 3, + ACTIONS(4844), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1824), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1202), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48225,7 +52382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31320] = 35, + [29835] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48234,78 +52391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4321), 1, + ACTIONS(4852), 1, sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(786), 1, + STATE(976), 1, sym_sym_lit, - STATE(2081), 1, + STATE(986), 1, + sym__bare_set_lit, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3209), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4319), 3, + ACTIONS(4848), 2, + sym__ws, + sym_comment, + ACTIONS(4850), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(785), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(478), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(842), 19, + STATE(983), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1022), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48325,87 +52482,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31455] = 35, + [29970] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4325), 1, + ACTIONS(3882), 1, sym_self_referential_reader_macro, - STATE(1389), 1, - sym_sym_lit, - STATE(1391), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(4095), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4323), 3, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3880), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1390), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1448), 19, + STATE(1652), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48425,7 +52582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31590] = 35, + [30105] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48434,78 +52591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4329), 1, + ACTIONS(4858), 1, sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(786), 1, + STATE(976), 1, sym_sym_lit, - STATE(2081), 1, + STATE(986), 1, + sym__bare_set_lit, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3209), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4327), 3, + ACTIONS(4854), 2, + sym__ws, + sym_comment, + ACTIONS(4856), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(785), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(479), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(841), 19, + STATE(983), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1020), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48525,7 +52682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31725] = 35, + [30240] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48534,78 +52691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4333), 1, + ACTIONS(4864), 1, sym_self_referential_reader_macro, - STATE(1389), 1, + STATE(976), 1, sym_sym_lit, - STATE(1391), 1, + STATE(986), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(4095), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4331), 3, + ACTIONS(4860), 2, + sym__ws, + sym_comment, + ACTIONS(4862), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1390), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(480), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1447), 19, + STATE(983), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1016), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48625,7 +52782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31860] = 35, + [30375] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48634,78 +52791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(2799), 1, + ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4337), 1, + ACTIONS(4870), 1, sym_self_referential_reader_macro, - STATE(1003), 1, + STATE(976), 1, sym_sym_lit, - STATE(1023), 1, + STATE(986), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4866), 2, sym__ws, sym_comment, - ACTIONS(4335), 3, + ACTIONS(4868), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1024), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(481), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(923), 19, + STATE(983), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1015), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48725,7 +52882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31995] = 35, + [30510] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48734,78 +52891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(773), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(4341), 1, + ACTIONS(4876), 1, sym_self_referential_reader_macro, - STATE(1389), 1, + STATE(976), 1, sym_sym_lit, - STATE(1391), 1, + STATE(986), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(4095), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4339), 3, + ACTIONS(4872), 2, + sym__ws, + sym_comment, + ACTIONS(4874), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1390), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(483), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1446), 19, + STATE(983), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1014), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48825,87 +52982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32130] = 35, + [30645] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4347), 1, + ACTIONS(3828), 1, sym_self_referential_reader_macro, - STATE(1389), 1, - sym_sym_lit, - STATE(1391), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(4095), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4343), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4345), 3, + ACTIONS(3826), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(423), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1390), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1442), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1651), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48925,7 +53082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32265] = 35, + [30780] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48934,78 +53091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(3838), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(3852), 1, + anon_sym_LPAREN, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(4353), 1, + ACTIONS(4704), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2102), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4349), 2, + ACTIONS(4878), 2, sym__ws, sym_comment, - ACTIONS(4351), 3, + ACTIONS(4702), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(237), 3, + STATE(616), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1988), 19, + STATE(2463), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49025,7 +53182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32400] = 35, + [30915] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -49034,78 +53191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(2799), 1, + ACTIONS(3758), 1, anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4357), 1, + ACTIONS(4882), 1, sym_self_referential_reader_macro, - STATE(1003), 1, + STATE(840), 1, sym_sym_lit, - STATE(1023), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4355), 3, + ACTIONS(4880), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1024), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(922), 19, + STATE(919), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49125,7 +53282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32535] = 35, + [31050] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -49134,78 +53291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4363), 1, + ACTIONS(4758), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1853), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4359), 2, + ACTIONS(4884), 2, sym__ws, sym_comment, - ACTIONS(4361), 3, + ACTIONS(4756), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(235), 3, + STATE(804), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1989), 19, + STATE(2089), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49225,7 +53382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32670] = 35, + [31185] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -49234,78 +53391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4367), 1, + ACTIONS(4888), 1, sym_self_referential_reader_macro, - STATE(1389), 1, + STATE(840), 1, sym_sym_lit, - STATE(1391), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(4095), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4365), 3, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4886), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1390), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1441), 19, + STATE(918), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49325,7 +53482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32805] = 35, + [31320] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -49334,78 +53491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3758), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4371), 1, + ACTIONS(4894), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(840), 1, sym_sym_lit, - STATE(1853), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4890), 2, sym__ws, sym_comment, - ACTIONS(4369), 3, + ACTIONS(4892), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(493), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1925), 19, + STATE(912), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49425,7 +53582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32940] = 35, + [31455] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -49434,178 +53591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3758), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4377), 1, + ACTIONS(4898), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(840), 1, sym_sym_lit, - STATE(1853), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - ACTIONS(179), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(202), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(206), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(208), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4373), 2, - sym__ws, - sym_comment, - ACTIONS(4375), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(484), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1924), 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, - [33075] = 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(4381), 1, - sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2089), 1, - aux_sym_list_lit_repeat1, - STATE(2148), 1, + STATE(2386), 1, sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4379), 3, + ACTIONS(4896), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(209), 19, + STATE(911), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49625,13 +53682,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33210] = 35, + [31590] = 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, @@ -49650,62 +53703,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(4385), 1, + ACTIONS(3684), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + ACTIONS(3808), 1, + anon_sym_POUND, + ACTIONS(3810), 1, + aux_sym_num_lit_token1, + ACTIONS(3814), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(3816), 1, + anon_sym_SQUOTE, + ACTIONS(3818), 1, + anon_sym_BQUOTE, + ACTIONS(3820), 1, + anon_sym_COMMA_AT, + ACTIONS(3822), 1, + anon_sym_COMMA, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 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(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4383), 3, + ACTIONS(3812), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3824), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3682), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(490), 19, + STATE(1700), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49725,7 +53782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33345] = 35, + [31725] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -49734,78 +53791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3758), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4391), 1, + ACTIONS(4904), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(840), 1, sym_sym_lit, - STATE(1853), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4387), 2, + ACTIONS(4900), 2, sym__ws, sym_comment, - ACTIONS(4389), 3, + ACTIONS(4902), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(233), 3, + STATE(495), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1990), 19, + STATE(910), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49825,187 +53882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33480] = 35, + [31860] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(154), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, - anon_sym_POUND_QMARK, - ACTIONS(183), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, - anon_sym_SQUOTE, - ACTIONS(189), 1, - anon_sym_BQUOTE, - ACTIONS(191), 1, - anon_sym_COMMA_AT, - ACTIONS(193), 1, - anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(4397), 1, - sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2102), 1, - aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - ACTIONS(179), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(202), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(206), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(208), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4393), 2, - sym__ws, - sym_comment, - ACTIONS(4395), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(231), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1991), 19, - sym__form, - sym_num_lit, - sym_kwd_lit, - sym_str_lit, - sym_char_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - sym_path_lit, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [33615] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3193), 1, - anon_sym_POUND, - ACTIONS(3197), 1, - aux_sym_num_lit_token1, - ACTIONS(3199), 1, - anon_sym_COLON, - ACTIONS(3201), 1, - anon_sym_COLON_COLON, - ACTIONS(3203), 1, - anon_sym_DQUOTE, - ACTIONS(3205), 1, - aux_sym_sym_lit_token1, - ACTIONS(3207), 1, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4403), 1, + ACTIONS(4910), 1, sym_self_referential_reader_macro, - STATE(784), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(786), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2081), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3209), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4399), 2, + ACTIONS(4906), 2, sym__ws, sym_comment, - ACTIONS(4401), 3, + ACTIONS(4908), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(227), 3, + STATE(507), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(785), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3), 19, + STATE(771), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50025,7 +53982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33750] = 35, + [31995] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50034,78 +53991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3758), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4407), 1, + ACTIONS(4914), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(840), 1, sym_sym_lit, - STATE(1853), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4405), 3, + ACTIONS(4912), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1920), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(909), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50125,87 +54082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33885] = 35, + [32130] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 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(1470), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4413), 1, + ACTIONS(4920), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4409), 2, + ACTIONS(4916), 2, sym__ws, sym_comment, - ACTIONS(4411), 3, + ACTIONS(4918), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(226), 3, + STATE(282), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1226), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(75), 19, + STATE(1636), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50225,7 +54182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34020] = 35, + [32265] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50234,78 +54191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4419), 1, + ACTIONS(4924), 1, sym_self_referential_reader_macro, - STATE(1251), 1, + STATE(840), 1, sym_sym_lit, - STATE(1370), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3377), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4415), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4417), 3, + ACTIONS(4922), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(524), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1361), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1322), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(907), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50325,7 +54282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34155] = 35, + [32400] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50334,78 +54291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(2799), 1, + ACTIONS(3758), 1, anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4425), 1, + ACTIONS(4930), 1, sym_self_referential_reader_macro, - STATE(1003), 1, + STATE(840), 1, sym_sym_lit, - STATE(1023), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4421), 2, + ACTIONS(4926), 2, sym__ws, sym_comment, - ACTIONS(4423), 3, + ACTIONS(4928), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(550), 3, + STATE(497), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1024), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(921), 19, + STATE(901), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50425,87 +54382,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34290] = 35, + [32535] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(154), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 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(183), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4429), 1, + ACTIONS(4934), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4427), 3, + ACTIONS(4932), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1919), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1635), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50525,7 +54482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34425] = 35, + [32670] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50534,78 +54491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(2799), 1, + ACTIONS(3758), 1, anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4435), 1, + ACTIONS(4940), 1, sym_self_referential_reader_macro, - STATE(1003), 1, + STATE(840), 1, sym_sym_lit, - STATE(1023), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4431), 2, + ACTIONS(4936), 2, sym__ws, sym_comment, - ACTIONS(4433), 3, + ACTIONS(4938), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(552), 3, + STATE(501), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1024), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(917), 19, + STATE(900), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50625,87 +54582,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34560] = 35, + [32805] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(154), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 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(183), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4439), 1, + ACTIONS(4944), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4437), 3, + ACTIONS(4942), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1916), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(739), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50725,7 +54682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34695] = 35, + [32940] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50734,78 +54691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4445), 1, + ACTIONS(4948), 1, sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(786), 1, + STATE(840), 1, sym_sym_lit, - STATE(2081), 1, + STATE(842), 1, + sym__bare_set_lit, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3209), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4441), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4443), 3, + ACTIONS(4946), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(417), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(785), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(838), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(899), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50825,9 +54782,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34830] = 35, + [33075] = 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, @@ -50846,66 +54807,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(3037), 1, - anon_sym_POUND, - ACTIONS(3041), 1, - aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3469), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(4954), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2093), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 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(2983), 2, + ACTIONS(4950), 2, sym__ws, sym_comment, - ACTIONS(3043), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3057), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3467), 3, + ACTIONS(4952), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(512), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1544), 19, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(725), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50925,7 +54882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34965] = 35, + [33210] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50934,78 +54891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(3838), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(4449), 1, + ACTIONS(4678), 1, sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(786), 1, - sym_sym_lit, - STATE(2081), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3209), 2, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4447), 3, + ACTIONS(4676), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(785), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(837), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2447), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51025,87 +54982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35100] = 35, + [33345] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4455), 1, + ACTIONS(4960), 1, sym_self_referential_reader_macro, - STATE(784), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(786), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2081), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3209), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4451), 2, + ACTIONS(4956), 2, sym__ws, sym_comment, - ACTIONS(4453), 3, + ACTIONS(4958), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(680), 3, + STATE(570), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(785), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(783), 19, + STATE(724), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51125,7 +55082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35235] = 35, + [33480] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -51164,19 +55121,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4459), 1, + ACTIONS(4964), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -51190,22 +55147,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4457), 3, + ACTIONS(4962), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(739), 19, + STATE(699), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51225,7 +55182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35370] = 35, + [33615] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51234,78 +55191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4465), 1, + ACTIONS(4970), 1, sym_self_referential_reader_macro, - STATE(1389), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1391), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(4095), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4461), 2, + ACTIONS(4966), 2, sym__ws, sym_comment, - ACTIONS(4463), 3, + ACTIONS(4968), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(441), 3, + STATE(628), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1390), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1434), 19, + STATE(2251), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51325,7 +55282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35505] = 35, + [33750] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51334,78 +55291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4471), 1, + ACTIONS(4974), 1, sym_self_referential_reader_macro, - STATE(1389), 1, + STATE(840), 1, sym_sym_lit, - STATE(1391), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(4095), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4467), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4469), 3, + ACTIONS(4972), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(443), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1390), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1433), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(898), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51425,7 +55382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35640] = 35, + [33885] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51434,78 +55391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4477), 1, + ACTIONS(4978), 1, sym_self_referential_reader_macro, - STATE(1389), 1, + STATE(840), 1, sym_sym_lit, - STATE(1391), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(4095), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4473), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4475), 3, + ACTIONS(4976), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(445), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1390), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1432), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(897), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51525,7 +55482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35775] = 35, + [34020] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51534,78 +55491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4483), 1, + ACTIONS(4984), 1, sym_self_referential_reader_macro, - STATE(1389), 1, + STATE(840), 1, sym_sym_lit, - STATE(1391), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(4095), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4479), 2, + ACTIONS(4980), 2, sym__ws, sym_comment, - ACTIONS(4481), 3, + ACTIONS(4982), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(450), 3, + STATE(503), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1390), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1429), 19, + STATE(894), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51625,7 +55582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35910] = 35, + [34155] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51634,78 +55591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4015), 1, + ACTIONS(4988), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1853), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4485), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4013), 3, + ACTIONS(4986), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(485), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1914), 19, + STATE(2245), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51725,7 +55682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36045] = 35, + [34290] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51734,78 +55691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4489), 1, + ACTIONS(4992), 1, sym_self_referential_reader_macro, - STATE(1251), 1, + STATE(840), 1, sym_sym_lit, - STATE(1370), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3377), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4487), 3, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4990), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1361), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1327), 19, + STATE(893), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51825,7 +55782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36180] = 35, + [34425] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51834,78 +55791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4493), 1, + ACTIONS(4998), 1, sym_self_referential_reader_macro, - STATE(1389), 1, + STATE(840), 1, sym_sym_lit, - STATE(1391), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(4095), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4491), 3, + ACTIONS(4994), 2, + sym__ws, + sym_comment, + ACTIONS(4996), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1390), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(508), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1427), 19, + STATE(841), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(886), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51925,7 +55882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36315] = 35, + [34560] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51934,78 +55891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4009), 1, + ACTIONS(5002), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1853), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4495), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4007), 3, + ACTIONS(5000), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(492), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1913), 19, + STATE(2243), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52025,7 +55982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36450] = 35, + [34695] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52034,78 +55991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4499), 1, + ACTIONS(5008), 1, sym_self_referential_reader_macro, - STATE(1389), 1, + STATE(840), 1, sym_sym_lit, - STATE(1391), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(4095), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4497), 3, + ACTIONS(5004), 2, + sym__ws, + sym_comment, + ACTIONS(5006), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1390), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(514), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1426), 19, + STATE(841), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(885), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52125,7 +56082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36585] = 35, + [34830] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52134,78 +56091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4503), 1, + ACTIONS(5014), 1, sym_self_referential_reader_macro, - STATE(1251), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1370), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3377), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4501), 3, + ACTIONS(5010), 2, + sym__ws, + sym_comment, + ACTIONS(5012), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1361), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(635), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1360), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2242), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52225,7 +56182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36720] = 35, + [34965] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52234,78 +56191,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4507), 1, + ACTIONS(5020), 1, sym_self_referential_reader_macro, - STATE(1389), 1, + STATE(840), 1, sym_sym_lit, - STATE(1391), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(4095), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4505), 3, + ACTIONS(5016), 2, + sym__ws, + sym_comment, + ACTIONS(5018), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1390), 3, + STATE(515), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(884), 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, + [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(65), 1, + anon_sym_POUND, + ACTIONS(69), 1, + aux_sym_num_lit_token1, + ACTIONS(71), 1, + anon_sym_COLON, + ACTIONS(73), 1, + anon_sym_COLON_COLON, + ACTIONS(75), 1, + anon_sym_DQUOTE, + ACTIONS(77), 1, + aux_sym_sym_lit_token1, + ACTIONS(92), 1, + anon_sym_POUND_QMARK, + ACTIONS(94), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(96), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(98), 1, + anon_sym_SQUOTE, + ACTIONS(100), 1, + anon_sym_BQUOTE, + ACTIONS(102), 1, + anon_sym_COMMA_AT, + ACTIONS(104), 1, + anon_sym_COMMA, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, + anon_sym_cl, + ACTIONS(5026), 1, + sym_self_referential_reader_macro, + STATE(840), 1, + sym_sym_lit, + STATE(842), 1, + sym__bare_set_lit, + STATE(2335), 1, + aux_sym_list_lit_repeat1, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, + sym__metadata_lit, + ACTIONS(90), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(113), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(117), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(119), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5022), 2, + sym__ws, + sym_comment, + ACTIONS(5024), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(518), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1425), 19, + STATE(841), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(881), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52325,7 +56382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36855] = 35, + [35235] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52334,78 +56391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4511), 1, + ACTIONS(5030), 1, sym_self_referential_reader_macro, - STATE(1389), 1, + STATE(840), 1, sym_sym_lit, - STATE(1391), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(4095), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4509), 3, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(5028), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1390), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1424), 19, + STATE(879), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52425,7 +56482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36990] = 35, + [35370] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52434,78 +56491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4515), 1, + ACTIONS(5034), 1, sym_self_referential_reader_macro, - STATE(1389), 1, + STATE(840), 1, sym_sym_lit, - STATE(1391), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(4095), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4513), 3, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(5032), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1390), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1423), 19, + STATE(878), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52525,87 +56582,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37125] = 35, + [35505] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(77), 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(92), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4521), 1, + ACTIONS(5038), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(840), 1, sym_sym_lit, - STATE(2089), 1, + STATE(842), 1, + sym__bare_set_lit, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4517), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4519), 3, + ACTIONS(5036), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(487), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(698), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(877), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52625,7 +56682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37260] = 35, + [35640] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52634,78 +56691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3758), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(3965), 1, + ACTIONS(5042), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(840), 1, sym_sym_lit, - STATE(1853), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3963), 3, + ACTIONS(5040), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1910), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(876), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52725,7 +56782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37395] = 35, + [35775] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52734,78 +56791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3758), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(3535), 1, + ACTIONS(5046), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(840), 1, sym_sym_lit, - STATE(1853), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3533), 3, + ACTIONS(5044), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1907), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(875), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52825,7 +56882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37530] = 35, + [35910] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52834,78 +56891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, - anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(4111), 1, - anon_sym_cl, - ACTIONS(4525), 1, + ACTIONS(5068), 1, sym_self_referential_reader_macro, - STATE(1389), 1, - sym_sym_lit, - STATE(1391), 1, - sym__bare_set_lit, - STATE(2106), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4095), 2, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4523), 3, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5050), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1390), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1413), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2620), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52925,87 +56982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37665] = 35, + [36045] = 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(65), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(77), 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(92), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4529), 1, + ACTIONS(5076), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(840), 1, sym_sym_lit, - STATE(2089), 1, + STATE(842), 1, + sym__bare_set_lit, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5072), 2, sym__ws, sym_comment, - ACTIONS(4527), 3, + ACTIONS(5074), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(525), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(711), 19, + STATE(841), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(860), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53025,7 +57082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37800] = 35, + [36180] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53034,78 +57091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4535), 1, + ACTIONS(5082), 1, sym_self_referential_reader_macro, - STATE(1689), 1, - sym__bare_set_lit, - STATE(2076), 1, + STATE(840), 1, sym_sym_lit, - STATE(2109), 1, + STATE(842), 1, + sym__bare_set_lit, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4531), 2, + ACTIONS(5078), 2, sym__ws, sym_comment, - ACTIONS(4533), 3, + ACTIONS(5080), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(545), 3, + STATE(526), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1704), 19, + STATE(859), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53125,87 +57182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37935] = 35, + [36315] = 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(65), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(77), 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(92), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(4541), 1, + ACTIONS(5088), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(840), 1, sym_sym_lit, - STATE(2089), 1, + STATE(842), 1, + sym__bare_set_lit, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4537), 2, + ACTIONS(5084), 2, sym__ws, sym_comment, - ACTIONS(4539), 3, + ACTIONS(5086), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(496), 3, + STATE(527), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(725), 19, + STATE(858), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53225,7 +57282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38070] = 35, + [36450] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53234,78 +57291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3758), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(3115), 1, + ACTIONS(5094), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(840), 1, sym_sym_lit, - STATE(1853), 1, + STATE(842), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4543), 2, + ACTIONS(5090), 2, sym__ws, sym_comment, - ACTIONS(3099), 3, + ACTIONS(5092), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(438), 3, + STATE(528), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1906), 19, + STATE(857), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53325,87 +57382,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38205] = 35, + [36585] = 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(3037), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(3041), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(71), 1, + anon_sym_COLON, + ACTIONS(73), 1, + anon_sym_COLON_COLON, + ACTIONS(75), 1, + anon_sym_DQUOTE, + ACTIONS(77), 1, + aux_sym_sym_lit_token1, + ACTIONS(92), 1, + anon_sym_POUND_QMARK, + ACTIONS(94), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(3475), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, + anon_sym_cl, + ACTIONS(5100), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(840), 1, sym_sym_lit, - STATE(2093), 1, + STATE(842), 1, + sym__bare_set_lit, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3043), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3057), 2, + ACTIONS(113), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4545), 2, + ACTIONS(119), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5096), 2, sym__ws, sym_comment, - ACTIONS(3473), 3, + ACTIONS(5098), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(679), 3, + STATE(529), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1543), 19, + STATE(856), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53425,87 +57482,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38340] = 35, + [36720] = 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(154), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3698), 1, + sym_self_referential_reader_macro, + ACTIONS(3808), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(3810), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, - anon_sym_COLON, - ACTIONS(162), 1, - anon_sym_COLON_COLON, - ACTIONS(164), 1, - anon_sym_DQUOTE, - ACTIONS(166), 1, - aux_sym_sym_lit_token1, - ACTIONS(181), 1, - anon_sym_POUND_QMARK, - ACTIONS(183), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3135), 1, - sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3812), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3824), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5102), 2, sym__ws, sym_comment, - ACTIONS(3133), 3, + ACTIONS(3696), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(669), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1904), 19, + STATE(1693), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53525,87 +57582,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38475] = 35, + [36855] = 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(3037), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(3041), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(1418), 1, + anon_sym_COLON, + ACTIONS(1420), 1, + anon_sym_COLON_COLON, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + aux_sym_sym_lit_token1, + ACTIONS(1439), 1, + anon_sym_POUND_QMARK, + ACTIONS(1441), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(4551), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_cl, + ACTIONS(5106), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1237), 1, sym_sym_lit, - STATE(2093), 1, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3043), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3057), 2, + ACTIONS(1458), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4547), 2, + ACTIONS(1464), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4549), 3, + ACTIONS(5104), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(398), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1568), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1139), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53625,87 +57682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38610] = 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(1412), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1424), 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(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4557), 1, + ACTIONS(5110), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1237), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4553), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4555), 3, + ACTIONS(5108), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(469), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(731), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1142), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53725,7 +57782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38745] = 35, + [37125] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53734,78 +57791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4563), 1, + ACTIONS(5116), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(2076), 1, + STATE(1237), 1, sym_sym_lit, - STATE(2109), 1, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4559), 2, + ACTIONS(5112), 2, sym__ws, sym_comment, - ACTIONS(4561), 3, + ACTIONS(5114), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(565), 3, + STATE(537), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1706), 19, + STATE(1150), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53825,87 +57882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38880] = 35, + [37260] = 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(1412), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1424), 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(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4567), 1, + ACTIONS(5120), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1237), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4565), 3, + ACTIONS(5118), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(734), 19, + STATE(1152), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53925,7 +57982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39015] = 35, + [37395] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53934,78 +57991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4573), 1, + ACTIONS(5126), 1, sym_self_referential_reader_macro, - STATE(1389), 1, - sym_sym_lit, - STATE(1391), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(1237), 1, + sym_sym_lit, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(4095), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4569), 2, + ACTIONS(5122), 2, sym__ws, sym_comment, - ACTIONS(4571), 3, + ACTIONS(5124), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(476), 3, + STATE(538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1390), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1409), 19, + STATE(1153), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54025,7 +58082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39150] = 35, + [37530] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54034,78 +58091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(1412), 1, + anon_sym_POUND, + ACTIONS(1416), 1, + aux_sym_num_lit_token1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(4439), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_cl, + ACTIONS(5130), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(1237), 1, + sym_sym_lit, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, + ACTIONS(1437), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(208), 2, + ACTIONS(1462), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3103), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3117), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4437), 3, + ACTIONS(5128), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1916), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1155), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54125,7 +58182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39285] = 35, + [37665] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54134,78 +58191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4579), 1, + ACTIONS(5134), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(1237), 1, + sym_sym_lit, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4575), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4577), 3, + ACTIONS(5132), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(591), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1994), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1157), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54225,7 +58282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39420] = 35, + [37800] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54234,78 +58291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4585), 1, + ACTIONS(5140), 1, sym_self_referential_reader_macro, - STATE(1389), 1, - sym_sym_lit, - STATE(1391), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(1237), 1, + sym_sym_lit, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(4095), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4581), 2, + ACTIONS(5136), 2, sym__ws, sym_comment, - ACTIONS(4583), 3, + ACTIONS(5138), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(478), 3, + STATE(540), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1390), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1408), 19, + STATE(1162), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54325,7 +58382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39555] = 35, + [37935] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54334,78 +58391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(1412), 1, + anon_sym_POUND, + ACTIONS(1416), 1, + aux_sym_num_lit_token1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(4429), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_cl, + ACTIONS(5146), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(1237), 1, + sym_sym_lit, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, + ACTIONS(1437), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(208), 2, + ACTIONS(1462), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5142), 2, sym__ws, sym_comment, - ACTIONS(3103), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3117), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4427), 3, + ACTIONS(5144), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(542), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1919), 19, + STATE(1163), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54425,7 +58482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39690] = 35, + [38070] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54434,78 +58491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4591), 1, + ACTIONS(5150), 1, sym_self_referential_reader_macro, - STATE(1389), 1, - sym_sym_lit, - STATE(1391), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(1237), 1, + sym_sym_lit, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(4095), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4587), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4589), 3, + ACTIONS(5148), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(480), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1390), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1407), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1164), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54525,7 +58582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39825] = 35, + [38205] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54534,78 +58591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4595), 1, + ACTIONS(5154), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(1237), 1, + sym_sym_lit, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4593), 3, + ACTIONS(5152), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1954), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1165), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54625,87 +58682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39960] = 35, + [38340] = 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(1412), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1424), 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(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4601), 1, + ACTIONS(5158), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1237), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4597), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4599), 3, + ACTIONS(5156), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(453), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(477), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1166), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54725,87 +58782,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40095] = 35, + [38475] = 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(4079), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3808), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(3810), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, - anon_sym_COLON, - ACTIONS(4087), 1, - anon_sym_COLON_COLON, - ACTIONS(4089), 1, - anon_sym_DQUOTE, - ACTIONS(4091), 1, - aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, - anon_sym_POUND_QMARK, - ACTIONS(4099), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(4111), 1, - anon_sym_cl, - ACTIONS(4607), 1, + ACTIONS(4920), 1, sym_self_referential_reader_macro, - STATE(1389), 1, - sym_sym_lit, - STATE(1391), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(4095), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4603), 2, + ACTIONS(3812), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3824), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5160), 2, sym__ws, sym_comment, - ACTIONS(4605), 3, + ACTIONS(4918), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(481), 3, + STATE(404), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1390), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1406), 19, + STATE(1636), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54825,7 +58882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40230] = 35, + [38610] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54834,78 +58891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4611), 1, + ACTIONS(5164), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(1237), 1, + sym_sym_lit, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4609), 3, + ACTIONS(5162), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1965), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1170), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54925,87 +58982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40365] = 35, + [38745] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1424), 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(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4617), 1, + ACTIONS(5170), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1237), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4613), 2, + ACTIONS(5166), 2, sym__ws, sym_comment, - ACTIONS(4615), 3, + ACTIONS(5168), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(454), 3, + STATE(546), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(474), 19, + STATE(1177), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55025,7 +59082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40500] = 35, + [38880] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55034,78 +59091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4623), 1, + ACTIONS(5176), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(1237), 1, + sym_sym_lit, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4619), 2, + ACTIONS(5172), 2, sym__ws, sym_comment, - ACTIONS(4621), 3, + ACTIONS(5174), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(598), 3, + STATE(547), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2013), 19, + STATE(1178), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55125,7 +59182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40635] = 35, + [39015] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55134,78 +59191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4629), 1, + ACTIONS(5182), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(2076), 1, + STATE(1237), 1, sym_sym_lit, - STATE(2109), 1, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4625), 2, + ACTIONS(5178), 2, sym__ws, sym_comment, - ACTIONS(4627), 3, + ACTIONS(5180), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(590), 3, + STATE(548), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1708), 19, + STATE(1179), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55225,7 +59282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40770] = 35, + [39150] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55234,78 +59291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4635), 1, + ACTIONS(5188), 1, sym_self_referential_reader_macro, - STATE(1389), 1, - sym_sym_lit, - STATE(1391), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(1237), 1, + sym_sym_lit, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(4095), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4631), 2, + ACTIONS(5184), 2, sym__ws, sym_comment, - ACTIONS(4633), 3, + ACTIONS(5186), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(482), 3, + STATE(550), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1390), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1405), 19, + STATE(1183), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55325,7 +59382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40905] = 35, + [39285] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55334,78 +59391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4639), 1, + ACTIONS(5192), 1, sym_self_referential_reader_macro, - STATE(1251), 1, - sym_sym_lit, - STATE(1370), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(1237), 1, + sym_sym_lit, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3377), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4637), 3, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(5190), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1361), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1346), 19, + STATE(1185), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55425,7 +59482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41040] = 35, + [39420] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55434,78 +59491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4645), 1, + ACTIONS(5196), 1, sym_self_referential_reader_macro, - STATE(784), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(786), 1, + STATE(1237), 1, sym_sym_lit, - STATE(2081), 1, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3209), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4641), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4643), 3, + ACTIONS(5194), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(433), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(785), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(830), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1186), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55525,7 +59582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41175] = 35, + [39555] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55534,78 +59591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4651), 1, + ACTIONS(5200), 1, sym_self_referential_reader_macro, - STATE(784), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(786), 1, + STATE(1237), 1, sym_sym_lit, - STATE(2081), 1, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3209), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4647), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4649), 3, + ACTIONS(5198), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(440), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(785), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(829), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1187), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55625,7 +59682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41310] = 35, + [39690] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55634,78 +59691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4657), 1, + ACTIONS(5204), 1, sym_self_referential_reader_macro, - STATE(784), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(786), 1, + STATE(1237), 1, sym_sym_lit, - STATE(2081), 1, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3209), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4653), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4655), 3, + ACTIONS(5202), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(442), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(785), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(828), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1188), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55725,7 +59782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41445] = 35, + [39825] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55734,78 +59791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4663), 1, + ACTIONS(5208), 1, sym_self_referential_reader_macro, - STATE(784), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(786), 1, + STATE(1237), 1, sym_sym_lit, - STATE(2081), 1, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3209), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4659), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4661), 3, + ACTIONS(5206), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(467), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(785), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(825), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1189), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55825,7 +59882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41580] = 35, + [39960] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55834,78 +59891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3393), 1, - anon_sym_cl, - ACTIONS(4667), 1, + ACTIONS(5212), 1, sym_self_referential_reader_macro, - STATE(1251), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1370), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, + ACTIONS(183), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(189), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3377), 2, + ACTIONS(4284), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(4298), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4665), 3, + ACTIONS(5210), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1361), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1334), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1976), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55925,7 +59982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41715] = 35, + [40095] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55934,78 +59991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4671), 1, + ACTIONS(5218), 1, sym_self_referential_reader_macro, - STATE(784), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(786), 1, + STATE(1237), 1, sym_sym_lit, - STATE(2081), 1, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3209), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4669), 3, + ACTIONS(5214), 2, + sym__ws, + sym_comment, + ACTIONS(5216), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(785), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(555), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(823), 19, + STATE(1236), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1212), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56025,7 +60082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41850] = 35, + [40230] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56034,78 +60091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4677), 1, + ACTIONS(5224), 1, sym_self_referential_reader_macro, - STATE(1251), 1, - sym_sym_lit, - STATE(1370), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(1237), 1, + sym_sym_lit, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3377), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4673), 2, + ACTIONS(5220), 2, sym__ws, sym_comment, - ACTIONS(4675), 3, + ACTIONS(5222), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(526), 3, + STATE(556), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1361), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1357), 19, + STATE(1214), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56125,7 +60182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41985] = 35, + [40365] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56134,78 +60191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4681), 1, + ACTIONS(5230), 1, sym_self_referential_reader_macro, - STATE(784), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(786), 1, + STATE(1237), 1, sym_sym_lit, - STATE(2081), 1, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3209), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4679), 3, + ACTIONS(5226), 2, + sym__ws, + sym_comment, + ACTIONS(5228), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(785), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(557), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(822), 19, + STATE(1236), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1216), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56225,87 +60282,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42120] = 35, + [40500] = 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(1412), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1424), 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(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4685), 1, + ACTIONS(5236), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1237), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5232), 2, sym__ws, sym_comment, - ACTIONS(4683), 3, + ACTIONS(5234), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(558), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(452), 19, + STATE(1236), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1218), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56325,7 +60382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42255] = 35, + [40635] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56334,78 +60391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4691), 1, + ACTIONS(5242), 1, sym_self_referential_reader_macro, - STATE(1251), 1, - sym_sym_lit, - STATE(1370), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(1237), 1, + sym_sym_lit, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3377), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4687), 2, + ACTIONS(5238), 2, sym__ws, sym_comment, - ACTIONS(4689), 3, + ACTIONS(5240), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(530), 3, + STATE(559), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1361), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1339), 19, + STATE(1220), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56425,7 +60482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42390] = 35, + [40770] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56434,78 +60491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4695), 1, + ACTIONS(4296), 1, sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(786), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2081), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3209), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4693), 3, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4280), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(785), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(821), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2229), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56525,7 +60582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42525] = 35, + [40905] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56534,78 +60591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2985), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3017), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3999), 1, + ACTIONS(4302), 1, sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3001), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4697), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3997), 3, + ACTIONS(4300), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(681), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2258), 19, + STATE(2195), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56625,7 +60682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42660] = 35, + [41040] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56634,78 +60691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4701), 1, + ACTIONS(4308), 1, sym_self_referential_reader_macro, - STATE(1251), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1370), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3377), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4699), 3, + ACTIONS(5244), 2, + sym__ws, + sym_comment, + ACTIONS(4306), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1361), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(566), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1369), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2237), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56725,7 +60782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42795] = 35, + [41175] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56734,78 +60791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4705), 1, + ACTIONS(4312), 1, sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(786), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2081), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3209), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4703), 3, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4310), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(785), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(820), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2234), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56825,87 +60882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42930] = 35, + [41310] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4709), 1, + ACTIONS(5248), 1, sym_self_referential_reader_macro, - STATE(1251), 1, - sym_sym_lit, - STATE(1370), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3377), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4707), 3, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(5246), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1361), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1365), 19, + STATE(695), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56925,7 +60982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43065] = 35, + [41445] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56934,78 +60991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(2799), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(4322), 1, sym_self_referential_reader_macro, - STATE(1003), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1023), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4711), 2, + ACTIONS(5250), 2, sym__ws, sym_comment, - ACTIONS(4713), 3, + ACTIONS(4320), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(576), 3, + STATE(567), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1024), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1022), 19, + STATE(2233), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57025,7 +61082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43200] = 35, + [41580] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57034,78 +61091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4719), 1, + ACTIONS(4332), 1, sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(786), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2081), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3209), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4717), 3, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4330), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(785), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(819), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2231), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57125,7 +61182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43335] = 35, + [41715] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57134,78 +61191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4725), 1, + ACTIONS(4336), 1, sym_self_referential_reader_macro, - STATE(1251), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1370), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3377), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4721), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4723), 3, + ACTIONS(4334), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(534), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1361), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1364), 19, + STATE(2204), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57225,7 +61282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43470] = 35, + [41850] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57234,178 +61291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3393), 1, - anon_sym_cl, - ACTIONS(4729), 1, - sym_self_referential_reader_macro, - STATE(1251), 1, - sym_sym_lit, - STATE(1370), 1, - sym__bare_set_lit, - STATE(2110), 1, - aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3377), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3395), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3399), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3401), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4727), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1361), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1363), 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, - [43605] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3361), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_num_lit_token1, - ACTIONS(3367), 1, - anon_sym_COLON, - ACTIONS(3369), 1, - anon_sym_COLON_COLON, - ACTIONS(3371), 1, - anon_sym_DQUOTE, - ACTIONS(3373), 1, - aux_sym_sym_lit_token1, - ACTIONS(3375), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_POUND_QMARK, - ACTIONS(3381), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, - anon_sym_SQUOTE, - ACTIONS(3387), 1, - anon_sym_BQUOTE, - ACTIONS(3389), 1, - anon_sym_COMMA_AT, - ACTIONS(3391), 1, - anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4735), 1, + ACTIONS(4346), 1, sym_self_referential_reader_macro, - STATE(1251), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1370), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3377), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4731), 2, + ACTIONS(5252), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(4344), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(537), 3, + STATE(569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1361), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1362), 19, + STATE(2142), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57425,7 +61382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43740] = 35, + [41985] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57434,78 +61391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4741), 1, + ACTIONS(4352), 1, sym_self_referential_reader_macro, - STATE(1689), 1, - sym__bare_set_lit, - STATE(2076), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2109), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4737), 2, + ACTIONS(5254), 2, sym__ws, sym_comment, - ACTIONS(4739), 3, + ACTIONS(4350), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(593), 3, + STATE(572), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1710), 19, + STATE(2146), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57525,7 +61482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43875] = 35, + [42120] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57534,78 +61491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, - anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(3171), 1, - anon_sym_cl, - ACTIONS(3857), 1, + ACTIONS(5258), 1, sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2329), 1, + STATE(2621), 1, sym_sym_lit, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3019), 2, + ACTIONS(3854), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(5070), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3855), 3, + ACTIONS(5256), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2222), 19, + STATE(2299), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57625,7 +61582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44010] = 35, + [42255] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57634,78 +61591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4745), 1, + ACTIONS(4356), 1, sym_self_referential_reader_macro, - STATE(1251), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1370), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3377), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4743), 3, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4354), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1361), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1351), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2193), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57725,7 +61682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44145] = 35, + [42390] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -57764,19 +61721,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4751), 1, + ACTIONS(5264), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -57790,22 +61747,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4747), 2, + ACTIONS(5260), 2, sym__ws, sym_comment, - ACTIONS(4749), 3, + ACTIONS(5262), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(520), 3, + STATE(610), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(420), 19, + STATE(574), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57825,87 +61782,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44280] = 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(129), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(141), 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(160), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4757), 1, + ACTIONS(4360), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4753), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4755), 3, + ACTIONS(4358), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(547), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(637), 19, + STATE(2192), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57925,87 +61882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44415] = 35, + [42660] = 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(3361), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3808), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(3810), 1, aux_sym_num_lit_token1, - ACTIONS(3367), 1, - anon_sym_COLON, - ACTIONS(3369), 1, - anon_sym_COLON_COLON, - ACTIONS(3371), 1, - anon_sym_DQUOTE, - ACTIONS(3373), 1, - aux_sym_sym_lit_token1, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_POUND_QMARK, - ACTIONS(3381), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(3393), 1, - anon_sym_cl, - ACTIONS(4761), 1, + ACTIONS(5268), 1, sym_self_referential_reader_macro, - STATE(1251), 1, - sym_sym_lit, - STATE(1370), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3377), 2, + ACTIONS(3812), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3395), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3399), 2, + ACTIONS(3824), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3401), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4759), 3, + ACTIONS(5266), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1361), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1350), 19, + STATE(1688), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58025,7 +61982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44550] = 35, + [42795] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58034,78 +61991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3861), 1, + ACTIONS(5272), 1, sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2329), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(183), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3859), 3, + ACTIONS(189), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(5270), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2220), 19, + STATE(2253), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58125,87 +62082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44685] = 35, + [42930] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2985), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3017), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4317), 1, + ACTIONS(5278), 1, sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3001), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4763), 2, + ACTIONS(5274), 2, sym__ws, sym_comment, - ACTIONS(4315), 3, + ACTIONS(5276), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(208), 3, + STATE(598), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1824), 19, + STATE(597), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58225,7 +62182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44820] = 35, + [43065] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58234,78 +62191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3465), 1, + ACTIONS(5284), 1, sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2329), 1, - sym_sym_lit, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(183), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4765), 2, + ACTIONS(189), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5280), 2, sym__ws, sym_comment, - ACTIONS(3463), 3, + ACTIONS(5282), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(754), 3, + STATE(299), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2080), 19, + STATE(1876), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58325,7 +62282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44955] = 35, + [43200] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58334,78 +62291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(3838), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + aux_sym_num_lit_token1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(3852), 1, + anon_sym_LPAREN, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(4407), 1, + ACTIONS(3870), 1, + anon_sym_cl, + ACTIONS(4670), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2104), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(208), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(2983), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3103), 2, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3117), 2, + ACTIONS(3872), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4405), 3, + ACTIONS(3878), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4668), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1920), 19, + STATE(2451), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58425,7 +62382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45090] = 35, + [43335] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58434,78 +62391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4771), 1, + ACTIONS(5290), 1, sym_self_referential_reader_macro, - STATE(1689), 1, - sym__bare_set_lit, - STATE(2076), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2109), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4767), 2, + ACTIONS(5286), 2, sym__ws, sym_comment, - ACTIONS(4769), 3, + ACTIONS(5288), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(595), 3, + STATE(302), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1712), 19, + STATE(2259), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58525,7 +62482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45225] = 35, + [43470] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58534,78 +62491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4775), 1, + ACTIONS(5296), 1, sym_self_referential_reader_macro, - STATE(1689), 1, - sym__bare_set_lit, - STATE(2076), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2109), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5292), 2, sym__ws, sym_comment, - ACTIONS(4773), 3, + ACTIONS(5294), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(303), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2124), 19, + STATE(2272), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58625,7 +62582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45360] = 35, + [43605] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58634,78 +62591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(129), 1, + anon_sym_POUND, + ACTIONS(133), 1, + aux_sym_num_lit_token1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(4151), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(5302), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1853), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, + ACTIONS(158), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(208), 2, + ACTIONS(187), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5298), 2, sym__ws, sym_comment, - ACTIONS(3103), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3117), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4149), 3, + ACTIONS(5300), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(305), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1938), 19, + STATE(2269), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58725,7 +62682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45495] = 35, + [43740] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58734,78 +62691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3411), 1, + ACTIONS(4364), 1, sym_self_referential_reader_macro, - STATE(1689), 1, - sym__bare_set_lit, - STATE(2076), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2109), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3409), 3, + ACTIONS(4362), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1654), 19, + STATE(2187), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58825,7 +62782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45630] = 35, + [43875] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58834,78 +62791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(2799), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4779), 1, + ACTIONS(4374), 1, sym_self_referential_reader_macro, - STATE(1003), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1023), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5304), 2, sym__ws, sym_comment, - ACTIONS(4777), 3, + ACTIONS(4372), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1024), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(573), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(908), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2184), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58925,87 +62882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45765] = 35, + [44010] = 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(129), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(141), 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(160), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4783), 1, + ACTIONS(4382), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4781), 3, + ACTIONS(4380), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(559), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2179), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59025,87 +62982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45900] = 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(129), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(141), 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(160), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4789), 1, + ACTIONS(5310), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4785), 2, + ACTIONS(5306), 2, sym__ws, sym_comment, - ACTIONS(4787), 3, + ACTIONS(5308), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(554), 3, + STATE(319), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(306), 19, + STATE(2266), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59125,87 +63082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46035] = 35, + [44280] = 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(3037), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(3041), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(71), 1, + anon_sym_COLON, + ACTIONS(73), 1, + anon_sym_COLON_COLON, + ACTIONS(75), 1, + anon_sym_DQUOTE, + ACTIONS(77), 1, + aux_sym_sym_lit_token1, + ACTIONS(92), 1, + anon_sym_POUND_QMARK, + ACTIONS(94), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(3483), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, + anon_sym_cl, + ACTIONS(5316), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(840), 1, sym_sym_lit, - STATE(2093), 1, + STATE(842), 1, + sym__bare_set_lit, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(90), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(117), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5312), 2, sym__ws, sym_comment, - ACTIONS(3043), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3057), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3481), 3, + ACTIONS(5314), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(367), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1542), 19, + STATE(841), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(27), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59225,7 +63182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46170] = 35, + [44415] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59234,78 +63191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(2799), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(4793), 1, + ACTIONS(5322), 1, sym_self_referential_reader_macro, - STATE(1003), 1, - sym_sym_lit, - STATE(1023), 1, + STATE(1235), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(1237), 1, + sym_sym_lit, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5318), 2, sym__ws, sym_comment, - ACTIONS(4791), 3, + ACTIONS(5320), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1024), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(386), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(943), 19, + STATE(1236), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(131), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59325,7 +63282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46305] = 35, + [44550] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59334,78 +63291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(2799), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4799), 1, + ACTIONS(4452), 1, sym_self_referential_reader_macro, - STATE(1003), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1023), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4795), 2, + ACTIONS(5324), 2, sym__ws, sym_comment, - ACTIONS(4797), 3, + ACTIONS(4450), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(610), 3, + STATE(577), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1024), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(918), 19, + STATE(2172), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59425,7 +63382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46440] = 35, + [44685] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59434,78 +63391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(2799), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4803), 1, + ACTIONS(4458), 1, sym_self_referential_reader_macro, - STATE(1003), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1023), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5326), 2, sym__ws, sym_comment, - ACTIONS(4801), 3, + ACTIONS(4456), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1024), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(579), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(906), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2171), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59525,87 +63482,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46575] = 35, + [44820] = 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(129), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(141), 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(160), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4809), 1, + ACTIONS(4468), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4805), 2, + ACTIONS(5328), 2, sym__ws, sym_comment, - ACTIONS(4807), 3, + ACTIONS(4466), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(562), 3, + STATE(588), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(377), 19, + STATE(2170), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59625,87 +63582,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46710] = 35, + [44955] = 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(129), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(141), 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(160), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4813), 1, + ACTIONS(4480), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5330), 2, sym__ws, sym_comment, - ACTIONS(4811), 3, + ACTIONS(4478), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(590), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(722), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2157), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59725,7 +63682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46845] = 35, + [45090] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -59764,19 +63721,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4819), 1, + ACTIONS(5334), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -59790,22 +63747,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4815), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4817), 3, + ACTIONS(5332), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(709), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(589), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59825,7 +63782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46980] = 35, + [45225] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59834,78 +63791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(2799), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4825), 1, + ACTIONS(4490), 1, sym_self_referential_reader_macro, - STATE(1003), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1023), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4821), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4823), 3, + ACTIONS(4488), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(628), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1024), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(996), 19, + STATE(2151), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59925,7 +63882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47115] = 35, + [45360] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -59964,19 +63921,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4831), 1, + ACTIONS(5340), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -59990,22 +63947,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4827), 2, + ACTIONS(5336), 2, sym__ws, sym_comment, - ACTIONS(4829), 3, + ACTIONS(5338), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(571), 3, + STATE(608), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(708), 19, + STATE(575), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60025,87 +63982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47250] = 35, + [45495] = 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(129), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(141), 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(160), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4837), 1, + ACTIONS(4494), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4833), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4835), 3, + ACTIONS(4492), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(567), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(376), 19, + STATE(2149), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60125,7 +64082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47385] = 35, + [45630] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60134,78 +64091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(129), 1, + anon_sym_POUND, + ACTIONS(133), 1, + aux_sym_num_lit_token1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(4377), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4498), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1853), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(208), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3103), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3117), 2, + ACTIONS(183), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4839), 2, + ACTIONS(189), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4375), 3, + ACTIONS(4496), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(367), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1924), 19, + STATE(2144), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60225,87 +64182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47520] = 35, + [45765] = 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(129), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(141), 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(160), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4843), 1, + ACTIONS(4502), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4841), 3, + ACTIONS(4500), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(322), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2128), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60325,7 +64282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47655] = 35, + [45900] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60334,78 +64291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(129), 1, + anon_sym_POUND, + ACTIONS(133), 1, + aux_sym_num_lit_token1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(4371), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4506), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1853), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, + ACTIONS(158), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(208), 2, + ACTIONS(187), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3103), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3117), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4369), 3, + ACTIONS(4504), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1925), 19, + STATE(2138), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60425,7 +64382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47790] = 35, + [46035] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -60464,19 +64421,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4847), 1, + ACTIONS(5346), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -60490,22 +64447,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5342), 2, sym__ws, sym_comment, - ACTIONS(4845), 3, + ACTIONS(5344), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(731), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(218), 19, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(506), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60525,7 +64482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47925] = 35, + [46170] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60534,78 +64491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4542), 1, + anon_sym_POUND, + ACTIONS(4546), 1, + aux_sym_num_lit_token1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(4851), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(5212), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2396), 1, + STATE(2621), 1, sym_sym_lit, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3019), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(4556), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(4576), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4849), 3, + ACTIONS(5210), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2367), 19, + STATE(1976), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60625,7 +64582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48060] = 35, + [46305] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60634,78 +64591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(129), 1, + anon_sym_POUND, + ACTIONS(133), 1, + aux_sym_num_lit_token1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(4269), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4516), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1853), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(208), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3103), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3117), 2, + ACTIONS(183), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4853), 2, + ACTIONS(189), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5348), 2, sym__ws, sym_comment, - ACTIONS(4267), 3, + ACTIONS(4514), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(498), 3, + STATE(599), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1928), 19, + STATE(2140), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60725,87 +64682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48195] = 35, + [46440] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3415), 1, + ACTIONS(5352), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2076), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2109), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3413), 3, + ACTIONS(5350), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1734), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(571), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60825,7 +64782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48330] = 35, + [46575] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60834,78 +64791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(129), 1, + anon_sym_POUND, + ACTIONS(133), 1, + aux_sym_num_lit_token1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(4255), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4522), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1853), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(208), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3103), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3117), 2, + ACTIONS(183), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4855), 2, + ACTIONS(189), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5354), 2, sym__ws, sym_comment, - ACTIONS(4253), 3, + ACTIONS(4520), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(501), 3, + STATE(601), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1929), 19, + STATE(2145), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60925,7 +64882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48465] = 35, + [46710] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -60964,19 +64921,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4859), 1, + ACTIONS(5358), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -60990,22 +64947,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4857), 3, + ACTIONS(5356), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(224), 19, + STATE(568), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61025,7 +64982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48600] = 35, + [46845] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61034,78 +64991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4865), 1, + ACTIONS(4528), 1, sym_self_referential_reader_macro, - STATE(1689), 1, - sym__bare_set_lit, - STATE(2076), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2109), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4861), 2, + ACTIONS(5360), 2, sym__ws, sym_comment, - ACTIONS(4863), 3, + ACTIONS(4526), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(543), 3, + STATE(602), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2121), 19, + STATE(2148), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61125,87 +65082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48735] = 35, + [46980] = 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(129), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(141), 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(160), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4869), 1, + ACTIONS(4534), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5362), 2, sym__ws, sym_comment, - ACTIONS(4867), 3, + ACTIONS(4532), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(603), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(688), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2150), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61225,87 +65182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48870] = 35, + [47115] = 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(129), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(141), 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(160), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4875), 1, + ACTIONS(4540), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4871), 2, + ACTIONS(5364), 2, sym__ws, sym_comment, - ACTIONS(4873), 3, + ACTIONS(4538), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(282), 3, + STATE(604), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(284), 19, + STATE(2154), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61325,7 +65282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49005] = 35, + [47250] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -61364,19 +65321,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4879), 1, + ACTIONS(5268), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -61390,22 +65347,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4877), 3, + ACTIONS(5266), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(682), 19, + STATE(1688), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61425,87 +65382,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49140] = 35, + [47385] = 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(135), 1, + anon_sym_COLON, + ACTIONS(137), 1, + anon_sym_COLON_COLON, + ACTIONS(139), 1, + anon_sym_DQUOTE, + ACTIONS(141), 1, + aux_sym_sym_lit_token1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(4278), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4288), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4290), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4292), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(4885), 1, + ACTIONS(4758), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2329), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4881), 2, + ACTIONS(4284), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4298), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5366), 2, sym__ws, sym_comment, - ACTIONS(4883), 3, + ACTIONS(4756), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(295), 3, + STATE(560), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(297), 19, + STATE(2089), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61525,87 +65482,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49275] = 35, + [47520] = 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(3838), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(3541), 1, + ACTIONS(4682), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2089), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4887), 2, - sym__ws, - sym_comment, - ACTIONS(3539), 3, + ACTIONS(4680), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(299), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1567), 19, + STATE(2446), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61625,87 +65582,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49410] = 35, + [47655] = 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(3838), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(4551), 1, + ACTIONS(4666), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2089), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4889), 2, - sym__ws, - sym_comment, - ACTIONS(4549), 3, + ACTIONS(4664), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(304), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1568), 19, + STATE(2455), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61725,13 +65682,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49545] = 35, + [47790] = 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, @@ -61750,62 +65703,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(3055), 1, + ACTIONS(3630), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + ACTIONS(3808), 1, + anon_sym_POUND, + ACTIONS(3810), 1, + aux_sym_num_lit_token1, + ACTIONS(3814), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(3816), 1, + anon_sym_SQUOTE, + ACTIONS(3818), 1, + anon_sym_BQUOTE, + ACTIONS(3820), 1, + anon_sym_COMMA_AT, + ACTIONS(3822), 1, + anon_sym_COMMA, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 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(4891), 2, + ACTIONS(3812), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3824), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5368), 2, sym__ws, sym_comment, - ACTIONS(3039), 3, + ACTIONS(3628), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(308), 3, + STATE(693), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 19, + STATE(1686), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61825,7 +65782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49680] = 35, + [47925] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61834,78 +65791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(3838), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(3852), 1, + anon_sym_LPAREN, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(2799), 1, - anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(4895), 1, + ACTIONS(4674), 1, sym_self_referential_reader_macro, - STATE(1003), 1, - sym_sym_lit, - STATE(1023), 1, - sym__bare_set_lit, - STATE(2101), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(4893), 3, + ACTIONS(4672), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1024), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(984), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2450), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61925,87 +65882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49815] = 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(3838), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(4899), 1, + ACTIONS(4662), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2089), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5370), 2, sym__ws, sym_comment, - ACTIONS(4897), 3, + ACTIONS(4660), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(632), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(320), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2457), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62025,87 +65982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49950] = 35, + [48195] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4905), 1, + ACTIONS(5374), 1, sym_self_referential_reader_macro, - STATE(784), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(786), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2081), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3209), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4901), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4903), 3, + ACTIONS(5372), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(517), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(785), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(804), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(300), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62125,7 +66082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50085] = 35, + [48330] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -62164,19 +66121,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4911), 1, + ACTIONS(5380), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -62190,22 +66147,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4907), 2, + ACTIONS(5376), 2, sym__ws, sym_comment, - ACTIONS(4909), 3, + ACTIONS(5378), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(581), 3, + STATE(624), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(600), 19, + STATE(554), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62225,7 +66182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50220] = 35, + [48465] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62234,78 +66191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(3838), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(4917), 1, + ACTIONS(4656), 1, sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(786), 1, - sym_sym_lit, - STATE(2081), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3209), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4913), 2, + ACTIONS(5382), 2, sym__ws, sym_comment, - ACTIONS(4915), 3, + ACTIONS(4654), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(519), 3, + STATE(636), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(785), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(803), 19, + STATE(2459), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62325,7 +66282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50355] = 35, + [48600] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -62364,19 +66321,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4921), 1, + ACTIONS(5386), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -62390,22 +66347,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4919), 3, + ACTIONS(5384), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(612), 19, + STATE(265), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62425,87 +66382,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50490] = 35, + [48735] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4927), 1, + ACTIONS(5390), 1, sym_self_referential_reader_macro, - STATE(784), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(786), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2081), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3209), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4923), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4925), 3, + ACTIONS(5388), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(522), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(785), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(802), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(310), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62525,7 +66482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50625] = 35, + [48870] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -62564,19 +66521,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4933), 1, + ACTIONS(5396), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -62590,22 +66547,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4929), 2, + ACTIONS(5392), 2, sym__ws, sym_comment, - ACTIONS(4931), 3, + ACTIONS(5394), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(587), 3, + STATE(673), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(634), 19, + STATE(545), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62625,7 +66582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50760] = 35, + [49005] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62634,78 +66591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(3838), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(4939), 1, + ACTIONS(4650), 1, sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(786), 1, - sym_sym_lit, - STATE(2081), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3209), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4935), 2, + ACTIONS(5398), 2, sym__ws, sym_comment, - ACTIONS(4937), 3, + ACTIONS(4648), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(525), 3, + STATE(637), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(785), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(801), 19, + STATE(2460), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62725,87 +66682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50895] = 35, + [49140] = 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(129), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(141), 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(160), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4945), 1, + ACTIONS(5402), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4941), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4943), 3, + ACTIONS(5400), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(589), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(636), 19, + STATE(2262), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62825,7 +66782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51030] = 35, + [49275] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62834,78 +66791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(3197), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4951), 1, + ACTIONS(5408), 1, sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(786), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2081), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(3209), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4947), 2, + ACTIONS(5404), 2, sym__ws, sym_comment, - ACTIONS(4949), 3, + ACTIONS(5406), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(528), 3, + STATE(735), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(785), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(800), 19, + STATE(2263), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62925,87 +66882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51165] = 35, + [49410] = 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(3838), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(4955), 1, + ACTIONS(4644), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2089), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5410), 2, sym__ws, sym_comment, - ACTIONS(4953), 3, + ACTIONS(4642), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(638), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(429), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2461), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63025,87 +66982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51300] = 35, + [49545] = 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(129), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(141), 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(160), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4959), 1, + ACTIONS(5416), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5412), 2, sym__ws, sym_comment, - ACTIONS(4957), 3, + ACTIONS(5414), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(737), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(365), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2264), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63125,87 +67082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51435] = 35, + [49680] = 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(3838), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(4963), 1, + ACTIONS(4638), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2089), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(4961), 3, + ACTIONS(4636), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(693), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2464), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63225,7 +67182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51570] = 35, + [49815] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63234,78 +67191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(3838), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(3419), 1, + ACTIONS(4634), 1, sym_self_referential_reader_macro, - STATE(1689), 1, - sym__bare_set_lit, - STATE(2076), 1, - sym_sym_lit, - STATE(2109), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5418), 2, sym__ws, sym_comment, - ACTIONS(3417), 3, + ACTIONS(4632), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(642), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1735), 19, + STATE(2465), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63325,87 +67282,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51705] = 35, + [49950] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(154), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 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(183), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4967), 1, + ACTIONS(5424), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5420), 2, sym__ws, sym_comment, - ACTIONS(4965), 3, + ACTIONS(5422), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(621), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 19, + STATE(313), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63425,7 +67382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51840] = 35, + [50085] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63434,78 +67391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(4973), 1, + ACTIONS(5428), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1853), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4969), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4971), 3, + ACTIONS(5426), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(662), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1976), 19, + STATE(2265), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63525,7 +67482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51975] = 35, + [50220] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63534,78 +67491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(3838), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(3423), 1, + ACTIONS(4628), 1, sym_self_referential_reader_macro, - STATE(1689), 1, - sym__bare_set_lit, - STATE(2076), 1, - sym_sym_lit, - STATE(2109), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3421), 3, + ACTIONS(4626), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1736), 19, + STATE(2468), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63625,7 +67582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52110] = 35, + [50355] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63634,78 +67591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, + ACTIONS(3838), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(3852), 1, + anon_sym_LPAREN, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(4979), 1, + ACTIONS(4624), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2102), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4975), 2, - sym__ws, - sym_comment, - ACTIONS(4977), 3, + ACTIONS(4622), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(664), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1982), 19, + STATE(2469), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63725,7 +67682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52245] = 35, + [50490] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63734,78 +67691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(3838), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(3431), 1, + ACTIONS(4620), 1, sym_self_referential_reader_macro, - STATE(1689), 1, - sym__bare_set_lit, - STATE(2076), 1, - sym_sym_lit, - STATE(2109), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3429), 3, + ACTIONS(4618), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1737), 19, + STATE(2470), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63825,87 +67782,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52380] = 35, + [50625] = 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(3838), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(4983), 1, + ACTIONS(4616), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2089), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5430), 2, sym__ws, sym_comment, - ACTIONS(4981), 3, + ACTIONS(4614), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(643), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(353), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2471), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63925,7 +67882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52515] = 35, + [50760] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63934,78 +67891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(3838), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3852), 1, + anon_sym_LPAREN, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(4987), 1, + ACTIONS(4610), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, - sym__bare_set_lit, - STATE(2098), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5432), 2, sym__ws, sym_comment, - ACTIONS(4985), 3, + ACTIONS(4608), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1226), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(645), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1127), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2474), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64025,87 +67982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52650] = 35, + [50895] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(154), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 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(183), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4991), 1, + ACTIONS(5438), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5434), 2, sym__ws, sym_comment, - ACTIONS(4989), 3, + ACTIONS(5436), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(625), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1983), 19, + STATE(315), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64125,7 +68082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52785] = 35, + [51030] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64134,78 +68091,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(3838), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3852), 1, + anon_sym_LPAREN, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(4995), 1, + ACTIONS(4604), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, - sym__bare_set_lit, - STATE(2098), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(4993), 3, + ACTIONS(4602), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1226), 3, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(2475), 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(47), 1, + sym_block_comment, + ACTIONS(3838), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + aux_sym_num_lit_token1, + ACTIONS(3844), 1, + anon_sym_COLON, + ACTIONS(3846), 1, + anon_sym_COLON_COLON, + ACTIONS(3848), 1, + anon_sym_DQUOTE, + ACTIONS(3850), 1, + aux_sym_sym_lit_token1, + ACTIONS(3852), 1, + anon_sym_LPAREN, + ACTIONS(3856), 1, + anon_sym_POUND_QMARK, + ACTIONS(3858), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(3860), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(3862), 1, + anon_sym_SQUOTE, + ACTIONS(3864), 1, + anon_sym_BQUOTE, + ACTIONS(3866), 1, + anon_sym_COMMA_AT, + ACTIONS(3868), 1, + anon_sym_COMMA, + ACTIONS(3870), 1, + anon_sym_cl, + ACTIONS(4600), 1, + sym_self_referential_reader_macro, + STATE(2325), 1, + aux_sym_list_lit_repeat1, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, + sym__metadata_lit, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3854), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3872), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3876), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3878), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4598), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1128), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2477), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64225,7 +68282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52920] = 35, + [51300] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64234,78 +68291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(3838), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(3441), 1, + ACTIONS(4596), 1, sym_self_referential_reader_macro, - STATE(1689), 1, - sym__bare_set_lit, - STATE(2076), 1, - sym_sym_lit, - STATE(2109), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4997), 2, + ACTIONS(5440), 2, sym__ws, sym_comment, - ACTIONS(3439), 3, + ACTIONS(4594), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(611), 3, + STATE(647), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1739), 19, + STATE(2478), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64325,7 +68382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53055] = 35, + [51435] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64334,78 +68391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(3838), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(3447), 1, + ACTIONS(4590), 1, sym_self_referential_reader_macro, - STATE(1689), 1, - sym__bare_set_lit, - STATE(2076), 1, - sym_sym_lit, - STATE(2109), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4999), 2, - sym__ws, - sym_comment, - ACTIONS(3445), 3, + ACTIONS(4588), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(614), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1744), 19, + STATE(2479), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64425,7 +68482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53190] = 35, + [51570] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64434,78 +68491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(3838), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(3453), 1, + ACTIONS(4586), 1, sym_self_referential_reader_macro, - STATE(1689), 1, - sym__bare_set_lit, - STATE(2076), 1, - sym_sym_lit, - STATE(2109), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5001), 2, + ACTIONS(5442), 2, sym__ws, sym_comment, - ACTIONS(3451), 3, + ACTIONS(4584), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(629), 3, + STATE(648), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1746), 19, + STATE(2482), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64525,7 +68582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53325] = 35, + [51705] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64534,78 +68591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(3838), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(3459), 1, + ACTIONS(4580), 1, sym_self_referential_reader_macro, - STATE(1689), 1, - sym__bare_set_lit, - STATE(2076), 1, - sym_sym_lit, - STATE(2109), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5003), 2, - sym__ws, - sym_comment, - ACTIONS(3457), 3, + ACTIONS(4578), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(632), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1748), 19, + STATE(2486), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64625,7 +68682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53460] = 35, + [51840] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64634,78 +68691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(3838), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3852), 1, + anon_sym_LPAREN, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(3862), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(3864), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(3866), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(3870), 1, anon_sym_cl, - ACTIONS(5009), 1, + ACTIONS(4574), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, - sym__bare_set_lit, - STATE(2098), 1, + STATE(2325), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2532), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5005), 2, - sym__ws, - sym_comment, - ACTIONS(5007), 3, + ACTIONS(4544), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(597), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1226), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1136), 19, + STATE(2487), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64725,7 +68782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53595] = 35, + [51975] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64734,78 +68791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(5013), 1, + ACTIONS(5448), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5444), 2, sym__ws, sym_comment, - ACTIONS(5011), 3, + ACTIONS(5446), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1226), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(656), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1137), 19, + STATE(1546), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1530), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64825,7 +68882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53730] = 35, + [52110] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -64864,19 +68921,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3063), 1, + ACTIONS(5452), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -64890,22 +68947,122 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5015), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3061), 3, + ACTIONS(5450), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(354), 3, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(320), 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, + [52245] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3640), 1, + anon_sym_POUND, + ACTIONS(3644), 1, + aux_sym_num_lit_token1, + ACTIONS(3646), 1, + anon_sym_COLON, + ACTIONS(3648), 1, + anon_sym_COLON_COLON, + ACTIONS(3650), 1, + anon_sym_DQUOTE, + ACTIONS(3652), 1, + aux_sym_sym_lit_token1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, + anon_sym_POUND_QMARK, + ACTIONS(3660), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(3662), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(3664), 1, + anon_sym_SQUOTE, + ACTIONS(3666), 1, + anon_sym_BQUOTE, + ACTIONS(3668), 1, + anon_sym_COMMA_AT, + ACTIONS(3670), 1, + anon_sym_COMMA, + ACTIONS(3672), 1, + anon_sym_cl, + ACTIONS(5458), 1, + sym_self_referential_reader_macro, + STATE(1545), 1, + sym__bare_set_lit, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, + aux_sym_list_lit_repeat1, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, + sym__metadata_lit, + ACTIONS(3656), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3674), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3678), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3680), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5454), 2, + sym__ws, + sym_comment, + ACTIONS(5456), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(657), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1572), 19, + STATE(1528), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64925,7 +69082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53865] = 35, + [52380] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64934,78 +69091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(5021), 1, + ACTIONS(5464), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5017), 2, + ACTIONS(5460), 2, sym__ws, sym_comment, - ACTIONS(5019), 3, + ACTIONS(5462), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(599), 3, + STATE(658), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1226), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1138), 19, + STATE(1525), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65025,7 +69182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54000] = 35, + [52515] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65034,78 +69191,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(5025), 1, + ACTIONS(5470), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5466), 2, sym__ws, sym_comment, - ACTIONS(5023), 3, + ACTIONS(5468), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1226), 3, + STATE(659), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1523), 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, + [52650] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3640), 1, + anon_sym_POUND, + ACTIONS(3644), 1, + aux_sym_num_lit_token1, + ACTIONS(3646), 1, + anon_sym_COLON, + ACTIONS(3648), 1, + anon_sym_COLON_COLON, + ACTIONS(3650), 1, + anon_sym_DQUOTE, + ACTIONS(3652), 1, + aux_sym_sym_lit_token1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, + anon_sym_POUND_QMARK, + ACTIONS(3660), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(3662), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(3664), 1, + anon_sym_SQUOTE, + ACTIONS(3666), 1, + anon_sym_BQUOTE, + ACTIONS(3668), 1, + anon_sym_COMMA_AT, + ACTIONS(3670), 1, + anon_sym_COMMA, + ACTIONS(3672), 1, + anon_sym_cl, + ACTIONS(5476), 1, + sym_self_referential_reader_macro, + STATE(1545), 1, + sym__bare_set_lit, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, + aux_sym_list_lit_repeat1, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, + sym__metadata_lit, + ACTIONS(3656), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3674), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3678), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3680), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5472), 2, + sym__ws, + sym_comment, + ACTIONS(5474), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(660), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1139), 19, + STATE(1546), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1521), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65125,7 +69382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54135] = 35, + [52785] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65134,78 +69391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(5029), 1, + ACTIONS(5480), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(5027), 3, + ACTIONS(5478), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1226), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1141), 19, + STATE(1512), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65225,7 +69482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54270] = 35, + [52920] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65234,78 +69491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(2799), 1, - anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(5033), 1, + ACTIONS(5484), 1, sym_self_referential_reader_macro, - STATE(1003), 1, - sym_sym_lit, - STATE(1023), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(5031), 3, + ACTIONS(5482), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1024), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(913), 19, + STATE(1501), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65325,7 +69582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54405] = 35, + [53055] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65334,78 +69591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, + ACTIONS(3654), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(3479), 1, + ACTIONS(5488), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2076), 1, + STATE(1547), 1, sym_sym_lit, - STATE(2109), 1, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3477), 3, + ACTIONS(5486), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1758), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1500), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65425,7 +69682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54540] = 35, + [53190] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65434,78 +69691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, + ACTIONS(3654), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(3519), 1, + ACTIONS(5492), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2076), 1, + STATE(1547), 1, sym_sym_lit, - STATE(2109), 1, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5035), 2, - sym__ws, - sym_comment, - ACTIONS(3517), 3, + ACTIONS(5490), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(656), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1759), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1499), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65525,7 +69782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54675] = 35, + [53325] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65534,78 +69791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4079), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(4083), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, + ACTIONS(3654), 1, anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(5041), 1, + ACTIONS(5496), 1, sym_self_referential_reader_macro, - STATE(1389), 1, - sym_sym_lit, - STATE(1391), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2106), 1, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(4095), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5037), 2, - sym__ws, - sym_comment, - ACTIONS(5039), 3, + ACTIONS(5494), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(486), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1390), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1392), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1498), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65625,7 +69882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54810] = 35, + [53460] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65634,78 +69891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, + ACTIONS(3654), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(3549), 1, + ACTIONS(5500), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2076), 1, + STATE(1547), 1, sym_sym_lit, - STATE(2109), 1, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3547), 3, + ACTIONS(5498), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1763), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1497), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65725,7 +69982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54945] = 35, + [53595] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65734,78 +69991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(5047), 1, + ACTIONS(5506), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5043), 2, + ACTIONS(5502), 2, sym__ws, sym_comment, - ACTIONS(5045), 3, + ACTIONS(5504), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(605), 3, + STATE(666), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1226), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1148), 19, + STATE(1495), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65825,87 +70082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55080] = 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(3640), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(3654), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(5053), 1, + ACTIONS(5512), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1547), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5049), 2, + ACTIONS(5508), 2, sym__ws, sym_comment, - ACTIONS(5051), 3, + ACTIONS(5510), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(755), 3, + STATE(670), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(407), 19, + STATE(1490), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65925,87 +70182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55215] = 35, + [53865] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 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(1470), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5059), 1, + ACTIONS(5518), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5055), 2, + ACTIONS(5514), 2, sym__ws, sym_comment, - ACTIONS(5057), 3, + ACTIONS(5516), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(608), 3, + STATE(650), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1226), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1152), 19, + STATE(325), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66025,7 +70282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55350] = 35, + [54000] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66034,78 +70291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(5063), 1, + ACTIONS(5524), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5520), 2, sym__ws, sym_comment, - ACTIONS(5061), 3, + ACTIONS(5522), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1226), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(674), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1153), 19, + STATE(1546), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1488), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66125,7 +70382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55485] = 35, + [54135] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66134,78 +70391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(5067), 1, + ACTIONS(5530), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5526), 2, sym__ws, sym_comment, - ACTIONS(5065), 3, + ACTIONS(5528), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1226), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(675), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1154), 19, + STATE(1546), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1486), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66225,87 +70482,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55620] = 35, + [54270] = 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(3640), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(3654), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(5073), 1, + ACTIONS(5534), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1547), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5069), 2, - sym__ws, - sym_comment, - ACTIONS(5071), 3, + ACTIONS(5532), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(560), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(290), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1476), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66325,7 +70582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55755] = 35, + [54405] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66334,78 +70591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(5077), 1, + ACTIONS(5540), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5536), 2, sym__ws, sym_comment, - ACTIONS(5075), 3, + ACTIONS(5538), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1226), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(685), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1156), 19, + STATE(1546), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1475), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66425,87 +70682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55890] = 35, + [54540] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 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(1470), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5083), 1, + ACTIONS(5546), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5079), 2, + ACTIONS(5542), 2, sym__ws, sym_comment, - ACTIONS(5081), 3, + ACTIONS(5544), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(609), 3, + STATE(676), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1226), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1172), 19, + STATE(544), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66525,13 +70782,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56025] = 35, + [54675] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -66550,62 +70803,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(3808), 1, + anon_sym_POUND, + ACTIONS(3810), 1, + aux_sym_num_lit_token1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5089), 1, + ACTIONS(4134), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 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(5085), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(5087), 3, + ACTIONS(3812), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3824), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4132), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(577), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(279), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1663), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66625,7 +70882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56160] = 35, + [54810] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66634,78 +70891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(5093), 1, + ACTIONS(5550), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(5091), 3, + ACTIONS(5548), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1226), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1174), 19, + STATE(1471), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66725,7 +70982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56295] = 35, + [54945] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -66764,19 +71021,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5097), 1, + ACTIONS(5554), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -66790,22 +71047,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(5095), 3, + ACTIONS(5552), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(268), 19, + STATE(338), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66825,87 +71082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56430] = 35, + [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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3844), 1, + anon_sym_COLON, + ACTIONS(3846), 1, + anon_sym_COLON_COLON, + ACTIONS(3848), 1, + anon_sym_DQUOTE, + ACTIONS(3850), 1, + aux_sym_sym_lit_token1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4086), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(3089), 1, - sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2089), 1, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, + sym_sym_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3087), 3, + ACTIONS(4390), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4406), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4082), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1574), 19, + STATE(1844), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1785), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66925,7 +71182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56565] = 35, + [55215] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -66964,19 +71221,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5103), 1, + ACTIONS(5558), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -66990,22 +71247,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5099), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(5101), 3, + ACTIONS(5556), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(753), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(424), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(541), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67025,7 +71282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56700] = 35, + [55350] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67034,78 +71291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(284), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(2799), 1, - anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(5107), 1, + ACTIONS(5562), 1, sym_self_referential_reader_macro, - STATE(1003), 1, - sym_sym_lit, - STATE(1023), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(298), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(5105), 3, + ACTIONS(5560), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1024), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(915), 19, + STATE(1470), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67125,7 +71382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56835] = 35, + [55485] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67134,178 +71391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, + ACTIONS(3654), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(3553), 1, + ACTIONS(5566), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2076), 1, + STATE(1547), 1, sym_sym_lit, - STATE(2109), 1, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3551), 3, + ACTIONS(5564), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1764), 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, - [56970] = 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(5113), 1, - sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2089), 1, - aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2197), 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(5109), 2, - sym__ws, - sym_comment, - ACTIONS(5111), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(671), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(473), 19, + STATE(1469), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67325,7 +71482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57105] = 35, + [55620] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -67364,19 +71521,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3093), 1, + ACTIONS(5570), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -67390,22 +71547,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3091), 3, + ACTIONS(5568), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1575), 19, + STATE(539), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67425,7 +71582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57240] = 35, + [55755] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67434,78 +71591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, - anon_sym_POUND, - ACTIONS(2329), 1, - aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(4090), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(3561), 1, - sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2076), 1, - sym_sym_lit, - STATE(2109), 1, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, + sym_sym_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3559), 3, + ACTIONS(4390), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4406), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4088), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1765), 19, + STATE(1786), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67525,7 +71682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57375] = 35, + [55890] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67534,78 +71691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(3640), 1, + anon_sym_POUND, + ACTIONS(3644), 1, + aux_sym_num_lit_token1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(4243), 1, + ACTIONS(3672), 1, + anon_sym_cl, + ACTIONS(5576), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(208), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3103), 2, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3117), 2, + ACTIONS(3674), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5115), 2, + ACTIONS(3680), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5572), 2, sym__ws, sym_comment, - ACTIONS(4241), 3, + ACTIONS(5574), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(541), 3, + STATE(686), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1930), 19, + STATE(1468), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67625,87 +71782,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57510] = 35, + [56025] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3567), 1, + ACTIONS(5580), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2076), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2109), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5117), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3565), 3, + ACTIONS(5578), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(659), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1766), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(340), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67725,87 +71882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57645] = 35, + [56160] = 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(3842), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(3179), 1, + ACTIONS(5586), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2089), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5582), 2, sym__ws, sym_comment, - ACTIONS(3177), 3, + ACTIONS(5584), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(530), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1576), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2625), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67825,7 +71982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57780] = 35, + [56295] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67834,78 +71991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, + ACTIONS(3654), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(3629), 1, + ACTIONS(5592), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2076), 1, + STATE(1547), 1, sym_sym_lit, - STATE(2109), 1, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5119), 2, + ACTIONS(5588), 2, sym__ws, sym_comment, - ACTIONS(3627), 3, + ACTIONS(5590), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(256), 3, + STATE(690), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1769), 19, + STATE(1465), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67925,87 +72082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57915] = 35, + [56430] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(160), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 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(183), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4233), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5598), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(208), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3103), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3117), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5121), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5594), 2, sym__ws, sym_comment, - ACTIONS(4231), 3, + ACTIONS(5596), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(561), 3, + STATE(466), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1934), 19, + STATE(469), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68025,87 +72182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58050] = 35, + [56565] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 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(1470), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5127), 1, + ACTIONS(5604), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5123), 2, + ACTIONS(5600), 2, sym__ws, sym_comment, - ACTIONS(5125), 3, + ACTIONS(5602), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(618), 3, + STATE(728), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1226), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1186), 19, + STATE(1594), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68125,7 +72282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58185] = 35, + [56700] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -68164,19 +72321,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3297), 1, + ACTIONS(5610), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -68190,22 +72347,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5606), 2, sym__ws, sym_comment, - ACTIONS(3295), 3, + ACTIONS(5608), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(470), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1577), 19, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(471), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68225,7 +72382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58320] = 35, + [56835] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68234,78 +72391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(3640), 1, + anon_sym_POUND, + ACTIONS(3644), 1, + aux_sym_num_lit_token1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(4227), 1, + ACTIONS(3672), 1, + anon_sym_cl, + ACTIONS(5614), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(208), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3103), 2, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3117), 2, + ACTIONS(3674), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4225), 3, + ACTIONS(3680), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5612), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1850), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1458), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68325,7 +72482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58455] = 35, + [56970] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68334,78 +72491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(5133), 1, + ACTIONS(5618), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5129), 2, - sym__ws, - sym_comment, - ACTIONS(5131), 3, + ACTIONS(5616), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(619), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1226), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1188), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1456), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68425,7 +72582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58590] = 35, + [57105] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -68464,19 +72621,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3301), 1, + ACTIONS(5624), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -68490,22 +72647,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5620), 2, sym__ws, sym_comment, - ACTIONS(3299), 3, + ACTIONS(5622), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(472), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1578), 19, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1685), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68525,7 +72682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58725] = 35, + [57240] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68534,78 +72691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(5139), 1, + ACTIONS(5630), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5135), 2, + ACTIONS(5626), 2, sym__ws, sym_comment, - ACTIONS(5137), 3, + ACTIONS(5628), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(621), 3, + STATE(702), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1226), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1189), 19, + STATE(1455), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68625,87 +72782,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58860] = 35, + [57375] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(160), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 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(183), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4209), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5636), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(208), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5632), 2, sym__ws, sym_comment, - ACTIONS(3103), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3117), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4207), 3, + ACTIONS(5634), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(486), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1944), 19, + STATE(1687), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68725,7 +72882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58995] = 35, + [57510] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68734,78 +72891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(5145), 1, + ACTIONS(5640), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5141), 2, - sym__ws, - sym_comment, - ACTIONS(5143), 3, + ACTIONS(5638), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(624), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1226), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1195), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1453), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68825,7 +72982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59130] = 35, + [57645] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -68864,19 +73021,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5151), 1, + ACTIONS(5646), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -68890,22 +73047,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5147), 2, + ACTIONS(5642), 2, sym__ws, sym_comment, - ACTIONS(5149), 3, + ACTIONS(5644), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(650), 3, + STATE(491), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(351), 19, + STATE(1697), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68925,7 +73082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59265] = 35, + [57780] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68934,178 +73091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(5155), 1, + ACTIONS(5652), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5648), 2, sym__ws, sym_comment, - ACTIONS(5153), 3, + ACTIONS(5650), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1226), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(705), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1199), 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, - [59400] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(1441), 1, - anon_sym_POUND, - ACTIONS(1445), 1, - aux_sym_num_lit_token1, - ACTIONS(1447), 1, - anon_sym_COLON, - ACTIONS(1449), 1, - anon_sym_COLON_COLON, - ACTIONS(1451), 1, - anon_sym_DQUOTE, - ACTIONS(1453), 1, - aux_sym_sym_lit_token1, - ACTIONS(1468), 1, - anon_sym_POUND_QMARK, - ACTIONS(1470), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, - anon_sym_SQUOTE, - ACTIONS(1476), 1, - anon_sym_BQUOTE, - ACTIONS(1478), 1, - anon_sym_COMMA_AT, - ACTIONS(1480), 1, - anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, - anon_sym_cl, - ACTIONS(5159), 1, - sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, - sym__bare_set_lit, - STATE(2098), 1, - aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - ACTIONS(1466), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1487), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(1491), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1493), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(5157), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1226), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1200), 19, + STATE(1452), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69125,13 +73182,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59535] = 35, + [57915] = 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, @@ -69150,62 +73203,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(3808), 1, + anon_sym_POUND, + ACTIONS(3810), 1, + aux_sym_num_lit_token1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5165), 1, + ACTIONS(4146), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 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(5161), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(5163), 3, + ACTIONS(3812), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3824), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4144), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(717), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1615), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1662), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69225,7 +73282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59670] = 35, + [58050] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -69264,19 +73321,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5169), 1, + ACTIONS(5658), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -69290,22 +73347,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5654), 2, sym__ws, sym_comment, - ACTIONS(5167), 3, + ACTIONS(5656), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(698), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(460), 19, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(524), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69325,7 +73382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59805] = 35, + [58185] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69334,78 +73391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, - anon_sym_POUND, - ACTIONS(1445), 1, - aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3852), 1, + anon_sym_LPAREN, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(4096), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(5173), 1, - sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, + sym_sym_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4390), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4406), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5660), 2, sym__ws, sym_comment, - ACTIONS(5171), 3, + ACTIONS(4094), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1226), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(672), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1201), 19, + STATE(1844), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1790), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69425,7 +73482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59940] = 35, + [58320] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69434,78 +73491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, - anon_sym_POUND, - ACTIONS(1445), 1, - aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3852), 1, + anon_sym_LPAREN, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(4100), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(5177), 1, - sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, + sym_sym_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(5175), 3, + ACTIONS(4390), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4406), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4098), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1226), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1202), 19, + STATE(1844), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1718), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69525,87 +73582,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60075] = 35, + [58455] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2985), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3017), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3989), 1, + ACTIONS(5666), 1, sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3001), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5179), 2, + ACTIONS(5662), 2, sym__ws, sym_comment, - ACTIONS(3987), 3, + ACTIONS(5664), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(683), 3, + STATE(723), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2257), 19, + STATE(1660), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69625,7 +73682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60210] = 35, + [58590] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -69664,19 +73721,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5185), 1, + ACTIONS(5670), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -69690,22 +73747,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5181), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(5183), 3, + ACTIONS(5668), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(685), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(518), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(516), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69725,7 +73782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60345] = 35, + [58725] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69734,78 +73791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, - anon_sym_POUND, - ACTIONS(1445), 1, - aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3852), 1, + anon_sym_LPAREN, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(4106), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(5189), 1, - sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, + sym_sym_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4390), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4406), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5672), 2, sym__ws, sym_comment, - ACTIONS(5187), 3, + ACTIONS(4104), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1226), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(677), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1203), 19, + STATE(1844), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1792), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69825,87 +73882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60480] = 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(2325), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3669), 1, + ACTIONS(5676), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2076), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2109), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3667), 3, + ACTIONS(5674), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1776), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(502), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69925,7 +73982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60615] = 35, + [58995] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69934,78 +73991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, - anon_sym_POUND_QMARK, - ACTIONS(183), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(3021), 1, + ACTIONS(3856), 1, + anon_sym_POUND_QMARK, + ACTIONS(4110), 1, sym_self_referential_reader_macro, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, + ACTIONS(4386), 1, anon_sym_POUND, - ACTIONS(3101), 1, + ACTIONS(4388), 1, aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(4392), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + ACTIONS(4404), 1, + anon_sym_cl, + STATE(1843), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, + sym_sym_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(208), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3103), 2, + ACTIONS(4390), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3117), 2, + ACTIONS(4406), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2987), 3, + ACTIONS(4108), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1827), 19, + STATE(1793), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70025,7 +74082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60750] = 35, + [59130] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70034,78 +74091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2985), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(3654), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(3017), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(3971), 1, + ACTIONS(5680), 1, sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(1545), 1, + sym__bare_set_lit, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3001), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5191), 2, - sym__ws, - sym_comment, - ACTIONS(3969), 3, + ACTIONS(5678), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(687), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2255), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1474), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70125,87 +74182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60885] = 35, + [59265] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2325), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3733), 1, + ACTIONS(5686), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2076), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2109), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5682), 2, sym__ws, sym_comment, - ACTIONS(3731), 3, + ACTIONS(5684), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(721), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1778), 19, + STATE(1670), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70225,87 +74282,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61020] = 35, + [59400] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 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(1470), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5197), 1, + ACTIONS(5692), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5193), 2, + ACTIONS(5688), 2, sym__ws, sym_comment, - ACTIONS(5195), 3, + ACTIONS(5690), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(647), 3, + STATE(505), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1226), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1173), 19, + STATE(1708), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70325,7 +74382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61155] = 35, + [59535] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70334,78 +74391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(3640), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(5203), 1, + ACTIONS(5696), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1547), 1, + sym_sym_lit, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5199), 2, - sym__ws, - sym_comment, - ACTIONS(5201), 3, + ACTIONS(5694), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(648), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1226), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1248), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1478), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70425,87 +74482,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61290] = 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(154), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 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(183), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5207), 1, + ACTIONS(5700), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(5205), 3, + ACTIONS(5698), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1972), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(393), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70525,7 +74582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61425] = 35, + [59805] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70534,78 +74591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, - anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4704), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, + anon_sym_LPAREN, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, - anon_sym_cl, - ACTIONS(5213), 1, - sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, - sym__bare_set_lit, - STATE(2098), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5209), 2, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5702), 2, sym__ws, sym_comment, - ACTIONS(5211), 3, + ACTIONS(4702), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(651), 3, + STATE(718), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1226), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1246), 19, + STATE(2463), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70625,7 +74682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61560] = 35, + [59940] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70634,78 +74691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, - anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4698), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, + anon_sym_LPAREN, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(5217), 1, - sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2102), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5704), 2, sym__ws, sym_comment, - ACTIONS(5215), 3, + ACTIONS(4696), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(719), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1955), 19, + STATE(2442), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70725,7 +74782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61695] = 35, + [60075] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70734,78 +74791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, - anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(4430), 1, + sym_self_referential_reader_macro, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, + anon_sym_LPAREN, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(5223), 1, - sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2102), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5219), 2, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5706), 2, sym__ws, sym_comment, - ACTIONS(5221), 3, + ACTIONS(4428), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(707), 3, + STATE(720), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1950), 19, + STATE(2445), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70825,7 +74882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61830] = 35, + [60210] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70834,78 +74891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1441), 1, - anon_sym_POUND, - ACTIONS(1445), 1, - aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(3852), 1, + anon_sym_LPAREN, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(4114), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(5229), 1, - sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, + sym_sym_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5225), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(5227), 3, + ACTIONS(4390), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4406), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4112), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1226), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1244), 19, + STATE(1796), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70925,87 +74982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61965] = 35, + [60345] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(1441), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(1445), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 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(1470), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5235), 1, + ACTIONS(5712), 1, sym_self_referential_reader_macro, - STATE(1225), 1, - sym_sym_lit, - STATE(1227), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2098), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(1466), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5231), 2, + ACTIONS(5708), 2, sym__ws, sym_comment, - ACTIONS(5233), 3, + ACTIONS(5710), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(655), 3, + STATE(753), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1226), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1242), 19, + STATE(504), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71025,87 +75082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62100] = 35, + [60480] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3495), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(5241), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5718), 1, sym_self_referential_reader_macro, - STATE(2092), 1, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5237), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5714), 2, sym__ws, sym_comment, - ACTIONS(5239), 3, + ACTIONS(5716), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(396), 3, + STATE(716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2061), 19, + STATE(1680), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71125,7 +75182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62235] = 35, + [60615] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71134,78 +75191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, - anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(4412), 1, + sym_self_referential_reader_macro, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(3171), 1, - anon_sym_cl, - ACTIONS(3511), 1, - sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2329), 1, + STATE(2621), 1, sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, + ACTIONS(3854), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(5070), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3493), 3, + ACTIONS(5720), 2, + sym__ws, + sym_comment, + ACTIONS(4410), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(722), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2263), 19, + STATE(2449), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71225,87 +75282,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62370] = 35, + [60750] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2985), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3017), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3939), 1, + ACTIONS(5724), 1, sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3001), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5243), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3937), 3, + ACTIONS(5722), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(695), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2207), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1710), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71325,11 +75382,111 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62505] = 35, + [60885] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3842), 1, + aux_sym_num_lit_token1, + ACTIONS(3912), 1, + sym_self_referential_reader_macro, + ACTIONS(4548), 1, + anon_sym_COLON, + ACTIONS(4550), 1, + anon_sym_COLON_COLON, + ACTIONS(4552), 1, + anon_sym_DQUOTE, + ACTIONS(4554), 1, + aux_sym_sym_lit_token1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, + anon_sym_LPAREN, + ACTIONS(5054), 1, + anon_sym_POUND_QMARK, + ACTIONS(5056), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5058), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5060), 1, + anon_sym_SQUOTE, + ACTIONS(5062), 1, + anon_sym_BQUOTE, + ACTIONS(5064), 1, + anon_sym_COMMA_AT, + ACTIONS(5066), 1, + anon_sym_COMMA, + STATE(2316), 1, + aux_sym_list_lit_repeat1, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, + sym__metadata_lit, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3854), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3872), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3878), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5726), 2, + sym__ws, + sym_comment, + ACTIONS(3910), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(730), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2472), 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, + [61020] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, ACTIONS(15), 1, aux_sym_num_lit_token1, ACTIONS(17), 1, @@ -71364,19 +75521,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5247), 1, + ACTIONS(5730), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -71390,22 +75547,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(5245), 3, + ACTIONS(5728), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(446), 19, + STATE(1696), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71425,7 +75582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62640] = 35, + [61155] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(17), 1, @@ -71450,33 +75607,33 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3037), 1, + ACTIONS(3808), 1, anon_sym_POUND, - ACTIONS(3041), 1, + ACTIONS(3810), 1, aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(3489), 1, + ACTIONS(5734), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2093), 1, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(51), 2, anon_sym_POUNDP, @@ -71484,28 +75641,128 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3043), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3812), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3057), 2, + ACTIONS(3824), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5249), 2, + ACTIONS(5732), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1600), 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, + [61290] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3842), 1, + aux_sym_num_lit_token1, + ACTIONS(4548), 1, + anon_sym_COLON, + ACTIONS(4550), 1, + anon_sym_COLON_COLON, + ACTIONS(4552), 1, + anon_sym_DQUOTE, + ACTIONS(4554), 1, + aux_sym_sym_lit_token1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4682), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, + anon_sym_LPAREN, + ACTIONS(5054), 1, + anon_sym_POUND_QMARK, + ACTIONS(5056), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5058), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5060), 1, + anon_sym_SQUOTE, + ACTIONS(5062), 1, + anon_sym_BQUOTE, + ACTIONS(5064), 1, + anon_sym_COMMA_AT, + ACTIONS(5066), 1, + anon_sym_COMMA, + STATE(2316), 1, + aux_sym_list_lit_repeat1, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, + sym__metadata_lit, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3487), 3, + ACTIONS(3854), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3872), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(3878), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4680), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(691), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1541), 19, + STATE(2446), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71525,7 +75782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62775] = 35, + [61425] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71534,78 +75791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, - anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4678), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(3171), 1, - anon_sym_cl, - ACTIONS(3545), 1, - sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2329), 1, + STATE(2621), 1, sym_sym_lit, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3019), 2, + ACTIONS(3854), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(5070), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3543), 3, + ACTIONS(4676), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2267), 19, + STATE(2447), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71625,87 +75882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62910] = 35, + [61560] = 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(3842), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4674), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5255), 1, - sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2089), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5251), 2, - sym__ws, - sym_comment, - ACTIONS(5253), 3, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4672), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(694), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(435), 19, + STATE(2450), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71725,7 +75982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63045] = 35, + [61695] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -71764,19 +76021,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5261), 1, + ACTIONS(5738), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -71790,22 +76047,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5257), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(5259), 3, + ACTIONS(5736), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(696), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(430), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1665), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71825,87 +76082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63180] = 35, + [61830] = 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(3842), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4670), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5267), 1, - sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2089), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5263), 2, - sym__ws, - sym_comment, - ACTIONS(5265), 3, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4668), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(686), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(521), 19, + STATE(2451), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71925,7 +76182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63315] = 35, + [61965] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -71964,19 +76221,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5273), 1, + ACTIONS(5742), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -71990,22 +76247,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5269), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(5271), 3, + ACTIONS(5740), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(625), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(257), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1659), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72025,7 +76282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63450] = 35, + [62100] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72034,78 +76291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2985), 1, - anon_sym_POUND, - ACTIONS(2989), 1, - aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(4120), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3017), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(3919), 1, - sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, sym_sym_lit, - ACTIONS(3001), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3019), 2, + STATE(2426), 1, + sym__metadata_lit, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5275), 2, + ACTIONS(4390), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4406), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5744), 2, sym__ws, sym_comment, - ACTIONS(3917), 3, + ACTIONS(4118), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(697), 3, + STATE(696), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2226), 19, + STATE(1719), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72125,87 +76382,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63585] = 35, + [62235] = 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(3037), 1, + ACTIONS(3844), 1, + anon_sym_COLON, + ACTIONS(3846), 1, + anon_sym_COLON_COLON, + ACTIONS(3848), 1, + anon_sym_DQUOTE, + ACTIONS(3850), 1, + aux_sym_sym_lit_token1, + ACTIONS(3852), 1, + anon_sym_LPAREN, + ACTIONS(3856), 1, + anon_sym_POUND_QMARK, + ACTIONS(4126), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, anon_sym_POUND, - ACTIONS(3041), 1, + ACTIONS(4388), 1, aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(4392), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3869), 1, - sym_self_referential_reader_macro, - STATE(1616), 1, + ACTIONS(4404), 1, + anon_sym_cl, + STATE(1843), 1, sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2093), 1, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, + sym_sym_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3043), 2, + ACTIONS(4390), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3057), 2, + ACTIONS(4406), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3867), 3, + ACTIONS(5746), 2, + sym__ws, + sym_comment, + ACTIONS(4124), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(701), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1535), 19, + STATE(1844), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1799), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72225,7 +76482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63720] = 35, + [62370] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72234,78 +76491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 1, - anon_sym_POUND, - ACTIONS(3197), 1, - aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(4130), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(5279), 1, - sym_self_referential_reader_macro, - STATE(784), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(786), 1, - sym_sym_lit, - STATE(2081), 1, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, + sym_sym_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2983), 2, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3209), 2, + ACTIONS(4390), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3227), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3231), 2, + ACTIONS(4406), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3233), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5277), 3, + ACTIONS(4128), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(785), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(808), 19, + STATE(1844), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1800), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72325,87 +76582,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63855] = 35, + [62505] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2985), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3017), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3861), 1, + ACTIONS(5752), 1, sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3001), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3859), 3, + ACTIONS(5748), 2, + sym__ws, + sym_comment, + ACTIONS(5750), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(714), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2220), 19, + STATE(1689), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72425,87 +76682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63990] = 35, + [62640] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3139), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3573), 1, + ACTIONS(5756), 1, sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2329), 1, - sym_sym_lit, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5281), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3571), 3, + ACTIONS(5754), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(669), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2280), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1654), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72525,7 +76782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64125] = 35, + [62775] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72534,78 +76791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2985), 1, - anon_sym_POUND, - ACTIONS(2989), 1, - aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(4138), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3017), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(3857), 1, - sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, sym_sym_lit, - ACTIONS(2983), 2, + STATE(2426), 1, + sym__metadata_lit, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3001), 2, + ACTIONS(4390), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3023), 2, + ACTIONS(4406), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3855), 3, + ACTIONS(4136), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2222), 19, + STATE(1801), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72625,7 +76882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64260] = 35, + [62910] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72634,78 +76891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, - anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4666), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(3171), 1, - anon_sym_cl, - ACTIONS(3617), 1, - sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2329), 1, + STATE(2621), 1, sym_sym_lit, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3019), 2, + ACTIONS(3854), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(5070), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3615), 3, + ACTIONS(4664), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2284), 19, + STATE(2455), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72725,7 +76982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64395] = 35, + [63045] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -72764,19 +77021,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5285), 1, + ACTIONS(5760), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -72790,22 +77047,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(5283), 3, + ACTIONS(5758), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(529), 19, + STATE(499), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72825,7 +77082,107 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64530] = 35, + [63180] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3844), 1, + anon_sym_COLON, + ACTIONS(3846), 1, + anon_sym_COLON_COLON, + ACTIONS(3848), 1, + anon_sym_DQUOTE, + ACTIONS(3850), 1, + aux_sym_sym_lit_token1, + ACTIONS(3852), 1, + anon_sym_LPAREN, + ACTIONS(3856), 1, + anon_sym_POUND_QMARK, + ACTIONS(4142), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4394), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(4396), 1, + anon_sym_SQUOTE, + ACTIONS(4398), 1, + anon_sym_BQUOTE, + ACTIONS(4400), 1, + anon_sym_COMMA_AT, + ACTIONS(4402), 1, + anon_sym_COMMA, + ACTIONS(4404), 1, + anon_sym_cl, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2313), 1, + aux_sym_list_lit_repeat1, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, + sym_sym_lit, + STATE(2426), 1, + sym__metadata_lit, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4390), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4406), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4140), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1844), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1802), 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, + [63315] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -72864,19 +77221,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5289), 1, + ACTIONS(5766), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -72890,22 +77247,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5762), 2, sym__ws, sym_comment, - ACTIONS(5287), 3, + ACTIONS(5764), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(671), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(531), 19, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(343), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72925,7 +77282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64665] = 35, + [63450] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72934,78 +77291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2985), 1, - anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4662), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3837), 1, - sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2396), 1, + STATE(2621), 1, sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3001), 2, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3835), 3, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5768), 2, + sym__ws, + sym_comment, + ACTIONS(4660), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(744), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2223), 19, + STATE(2457), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73025,7 +77382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64800] = 35, + [63585] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73034,78 +77391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3635), 1, + ACTIONS(5772), 1, sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2329), 1, - sym_sym_lit, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(183), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5291), 2, + ACTIONS(189), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3633), 3, + ACTIONS(5770), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(673), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2285), 19, + STATE(2258), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73125,7 +77482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64935] = 35, + [63720] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73134,78 +77491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(3842), 1, + aux_sym_num_lit_token1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, - anon_sym_POUND_QMARK, - ACTIONS(183), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(3097), 1, + ACTIONS(4656), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(5052), 1, + anon_sym_LPAREN, + ACTIONS(5054), 1, + anon_sym_POUND_QMARK, + ACTIONS(5056), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(4075), 1, - sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2104), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3854), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(208), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3103), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3117), 2, + ACTIONS(5070), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5293), 2, + ACTIONS(5774), 2, sym__ws, sym_comment, - ACTIONS(4073), 3, + ACTIONS(4654), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(640), 3, + STATE(746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1898), 19, + STATE(2459), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73225,7 +77582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65070] = 35, + [63855] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73234,78 +77591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - ACTIONS(3639), 1, + ACTIONS(5778), 1, sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1874), 1, + sym_sym_lit, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2329), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(183), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3637), 3, + ACTIONS(189), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(5776), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2288), 19, + STATE(2257), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73325,87 +77682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65205] = 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(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(3037), 1, + ACTIONS(129), 1, anon_sym_POUND, - ACTIONS(3041), 1, + ACTIONS(133), 1, aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(135), 1, + anon_sym_COLON, + ACTIONS(137), 1, + anon_sym_COLON_COLON, + ACTIONS(139), 1, + anon_sym_DQUOTE, + ACTIONS(141), 1, + aux_sym_sym_lit_token1, + ACTIONS(160), 1, + anon_sym_POUND_QMARK, + ACTIONS(162), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(3881), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(5784), 1, sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, + STATE(1874), 1, sym_sym_lit, - STATE(2093), 1, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(158), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(187), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5780), 2, sym__ws, sym_comment, - ACTIONS(3043), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3057), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3879), 3, + ACTIONS(5782), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(581), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1534), 19, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2267), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73425,7 +77782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65340] = 35, + [64125] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73434,78 +77791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, - anon_sym_POUND, - ACTIONS(2329), 1, - aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(4152), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(3807), 1, - sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2076), 1, - sym_sym_lit, - STATE(2109), 1, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, + sym_sym_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(4390), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4406), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5786), 2, sym__ws, sym_comment, - ACTIONS(3805), 3, + ACTIONS(4150), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(710), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1789), 19, + STATE(1804), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73525,7 +77882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65475] = 35, + [64260] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73534,78 +77891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2325), 1, - anon_sym_POUND, - ACTIONS(2329), 1, - aux_sym_num_lit_token1, - ACTIONS(2331), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(4156), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3083), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(3783), 1, - sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2076), 1, - sym_sym_lit, - STATE(2109), 1, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, + sym_sym_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2341), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5295), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3781), 3, + ACTIONS(4390), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4406), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4154), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(215), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1782), 19, + STATE(1805), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73625,87 +77982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65610] = 35, + [64395] = 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(3842), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4650), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5299), 1, - sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2089), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5788), 2, sym__ws, sym_comment, - ACTIONS(5297), 3, + ACTIONS(4648), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(747), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(413), 19, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2460), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73725,7 +78082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65745] = 35, + [64530] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73734,78 +78091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2985), 1, - anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4644), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3833), 1, - sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2396), 1, + STATE(2621), 1, sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3001), 2, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3831), 3, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5790), 2, + sym__ws, + sym_comment, + ACTIONS(4642), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(748), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2224), 19, + STATE(2461), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73825,7 +78182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65880] = 35, + [64665] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -73864,19 +78221,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5303), 1, + ACTIONS(5796), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -73890,22 +78247,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5792), 2, sym__ws, sym_comment, - ACTIONS(5301), 3, + ACTIONS(5794), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(679), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(411), 19, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(344), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73925,7 +78282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66015] = 35, + [64800] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73934,78 +78291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2985), 1, - anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4638), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3713), 1, - sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2396), 1, + STATE(2621), 1, sym_sym_lit, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3001), 2, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3711), 3, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4636), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2225), 19, + STATE(2464), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74025,7 +78382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66150] = 35, + [64935] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74034,78 +78391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2985), 1, - anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4634), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3709), 1, - sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2396), 1, + STATE(2621), 1, sym_sym_lit, - ACTIONS(3001), 2, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5305), 2, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5798), 2, sym__ws, sym_comment, - ACTIONS(3707), 3, + ACTIONS(4632), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(704), 3, + STATE(752), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2232), 19, + STATE(2465), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74125,7 +78482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66285] = 35, + [65070] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74134,78 +78491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, - anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4628), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(3171), 1, - anon_sym_cl, - ACTIONS(3659), 1, - sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2329), 1, + STATE(2621), 1, sym_sym_lit, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3019), 2, + ACTIONS(3854), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(5070), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3657), 3, + ACTIONS(4626), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2290), 19, + STATE(2468), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74225,7 +78582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66420] = 35, + [65205] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74234,78 +78591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2985), 1, - anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4624), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3239), 1, - sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2396), 1, + STATE(2621), 1, sym_sym_lit, - ACTIONS(3001), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5307), 2, - sym__ws, - sym_comment, - ACTIONS(3237), 3, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4622), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(712), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2234), 19, + STATE(2469), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74325,7 +78682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66555] = 35, + [65340] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74334,78 +78691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2985), 1, - anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4620), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3173), 1, - sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2396), 1, + STATE(2621), 1, sym_sym_lit, - ACTIONS(3001), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5309), 2, - sym__ws, - sym_comment, - ACTIONS(3141), 3, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4618), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(720), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2236), 19, + STATE(2470), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74425,87 +78782,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66690] = 35, + [65475] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4535), 1, + ACTIONS(5804), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2369), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3309), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3327), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5311), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5800), 2, sym__ws, sym_comment, - ACTIONS(4533), 3, + ACTIONS(5802), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(250), 3, + STATE(700), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1704), 19, + STATE(704), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74525,7 +78882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66825] = 35, + [65610] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74534,78 +78891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2985), 1, - anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4616), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3813), 1, - sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2396), 1, + STATE(2621), 1, sym_sym_lit, - ACTIONS(3001), 2, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5313), 2, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5806), 2, sym__ws, sym_comment, - ACTIONS(3811), 3, + ACTIONS(4614), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(724), 3, + STATE(754), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2242), 19, + STATE(2471), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74625,7 +78982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66960] = 35, + [65745] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74634,78 +78991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2985), 1, - anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4610), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3767), 1, - sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2396), 1, + STATE(2621), 1, sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3001), 2, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3765), 3, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5808), 2, + sym__ws, + sym_comment, + ACTIONS(4608), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(757), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2299), 19, + STATE(2474), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74725,87 +79082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67095] = 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(49), 1, + ACTIONS(3842), 1, + aux_sym_num_lit_token1, + ACTIONS(4548), 1, + anon_sym_COLON, + ACTIONS(4550), 1, + anon_sym_COLON_COLON, + ACTIONS(4552), 1, + anon_sym_DQUOTE, + ACTIONS(4554), 1, + aux_sym_sym_lit_token1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(3037), 1, + ACTIONS(4604), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, anon_sym_POUND, - ACTIONS(3041), 1, - aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(5052), 1, + anon_sym_LPAREN, + ACTIONS(5054), 1, + anon_sym_POUND_QMARK, + ACTIONS(5056), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(5165), 1, - sym_self_referential_reader_macro, - STATE(1616), 1, - sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2093), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(51), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3854), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3043), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3057), 2, + ACTIONS(5070), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5315), 2, - sym__ws, - sym_comment, - ACTIONS(5163), 3, + ACTIONS(4602), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(356), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1615), 19, + STATE(2475), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74825,87 +79182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67230] = 35, + [66015] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(154), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 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(183), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4259), 1, + ACTIONS(5812), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4257), 3, + ACTIONS(5810), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1890), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(496), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74925,7 +79282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67365] = 35, + [66150] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74934,78 +79291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(154), 1, - anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4600), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, + anon_sym_LPAREN, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(5319), 1, - sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, - sym__bare_set_lit, - STATE(2102), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(5317), 3, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4598), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2008), 19, + STATE(2477), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75025,7 +79382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67500] = 35, + [66285] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75034,78 +79391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, + ACTIONS(1412), 1, anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(1416), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(1418), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(1420), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(1424), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(1439), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(1445), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(1449), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(1451), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_cl, - ACTIONS(3685), 1, + ACTIONS(5818), 1, sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1235), 1, + sym__bare_set_lit, + STATE(1237), 1, + sym_sym_lit, + STATE(2334), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2329), 1, - sym_sym_lit, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(1437), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(1458), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5321), 2, + ACTIONS(1464), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5814), 2, sym__ws, sym_comment, - ACTIONS(3683), 3, + ACTIONS(5816), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(684), 3, + STATE(484), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2291), 19, + STATE(1234), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75125,7 +79482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67635] = 35, + [66420] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75134,78 +79491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, - anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4596), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(3171), 1, - anon_sym_cl, - ACTIONS(3695), 1, - sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2329), 1, + STATE(2621), 1, sym_sym_lit, - ACTIONS(3019), 2, + ACTIONS(3854), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(5070), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5323), 2, + ACTIONS(5820), 2, sym__ws, sym_comment, - ACTIONS(3693), 3, + ACTIONS(4594), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(690), 3, + STATE(759), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2200), 19, + STATE(2478), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75225,7 +79582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67770] = 35, + [66555] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75234,78 +79591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, - anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4590), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(3171), 1, - anon_sym_cl, - ACTIONS(3721), 1, - sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2329), 1, + STATE(2621), 1, sym_sym_lit, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3019), 2, + ACTIONS(3854), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(5070), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3719), 3, + ACTIONS(4588), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2294), 19, + STATE(2479), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75325,7 +79682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67905] = 35, + [66690] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75334,78 +79691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2985), 1, - anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4586), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3763), 1, - sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2396), 1, + STATE(2621), 1, sym_sym_lit, - ACTIONS(3001), 2, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5325), 2, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5822), 2, sym__ws, sym_comment, - ACTIONS(3761), 3, + ACTIONS(4584), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(732), 3, + STATE(764), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2298), 19, + STATE(2482), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75425,7 +79782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68040] = 35, + [66825] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75434,78 +79791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2985), 1, - anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4580), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3729), 1, - sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2396), 1, + STATE(2621), 1, sym_sym_lit, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3001), 2, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3727), 3, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4578), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2296), 19, + STATE(2486), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75525,7 +79882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68175] = 35, + [66960] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75534,78 +79891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(3842), 1, + aux_sym_num_lit_token1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(3323), 1, - anon_sym_cl, - ACTIONS(4563), 1, + ACTIONS(5828), 1, sym_self_referential_reader_macro, - STATE(1689), 1, - sym__bare_set_lit, - STATE(2118), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3854), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2369), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3309), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3327), 2, + ACTIONS(5070), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5327), 2, + ACTIONS(5824), 2, sym__ws, sym_comment, - ACTIONS(4561), 3, + ACTIONS(5826), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(251), 3, + STATE(576), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1706), 19, + STATE(2291), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75625,87 +79982,187 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68310] = 35, + [67095] = 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(3139), 1, - anon_sym_POUND, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5734), 1, + sym_self_referential_reader_macro, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, + aux_sym_list_lit_repeat1, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 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(3572), 2, + sym__ws, + sym_comment, + ACTIONS(5732), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1600), 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, + [67230] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(4276), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(3725), 1, - sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2329), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, + STATE(2426), 1, + sym__metadata_lit, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(4390), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(4406), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3723), 3, + ACTIONS(5830), 2, + sym__ws, + sym_comment, + ACTIONS(4274), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(785), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2244), 19, + STATE(1833), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75725,7 +80182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68445] = 35, + [67365] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -75764,19 +80221,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5333), 1, + ACTIONS(5834), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -75790,22 +80247,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5329), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(5331), 3, + ACTIONS(5832), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(727), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(334), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(350), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75825,7 +80282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68580] = 35, + [67500] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75834,78 +80291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(3842), 1, + aux_sym_num_lit_token1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(4574), 1, + sym_self_referential_reader_macro, + ACTIONS(5048), 1, + anon_sym_POUND, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, - anon_sym_POUND, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(3323), 1, - anon_sym_cl, - ACTIONS(4629), 1, - sym_self_referential_reader_macro, - STATE(1689), 1, - sym__bare_set_lit, - STATE(2118), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2621), 1, + sym_sym_lit, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3854), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2369), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3309), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3327), 2, + ACTIONS(5070), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5335), 2, - sym__ws, - sym_comment, - ACTIONS(4627), 3, + ACTIONS(4544), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(252), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1708), 19, + STATE(2487), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75925,13 +80382,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68715] = 35, + [67635] = 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, @@ -75950,62 +80403,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(3808), 1, + anon_sym_POUND, + ACTIONS(3810), 1, + aux_sym_num_lit_token1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(3913), 1, + ACTIONS(5604), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 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(2983), 2, + ACTIONS(3812), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3824), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5836), 2, sym__ws, sym_comment, - ACTIONS(3911), 3, + ACTIONS(5602), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(791), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1592), 19, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1594), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76025,7 +80482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68850] = 35, + [67770] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76034,78 +80491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, - anon_sym_POUND, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(4162), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(3729), 1, - sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2329), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, + STATE(2426), 1, + sym__metadata_lit, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(4390), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(4406), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3727), 3, + ACTIONS(5838), 2, + sym__ws, + sym_comment, + ACTIONS(4160), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(726), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2296), 19, + STATE(1809), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76125,87 +80582,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68985] = 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(154), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 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(183), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4317), 1, + ACTIONS(5844), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5337), 2, + ACTIONS(5840), 2, sym__ws, sym_comment, - ACTIONS(4315), 3, + ACTIONS(5842), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(730), 3, + STATE(770), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1824), 19, + STATE(477), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76225,7 +80682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69120] = 35, + [68040] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76234,78 +80691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2985), 1, - anon_sym_POUND, - ACTIONS(2989), 1, - aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(4168), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3017), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(3725), 1, - sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3001), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3019), 2, + STATE(2426), 1, + sym__metadata_lit, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3723), 3, + ACTIONS(4390), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4406), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5846), 2, + sym__ws, + sym_comment, + ACTIONS(4166), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(729), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2244), 19, + STATE(1810), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76325,7 +80782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69255] = 35, + [68175] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76334,78 +80791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, + ACTIONS(4174), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, anon_sym_POUND, - ACTIONS(3307), 1, + ACTIONS(4388), 1, aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(4741), 1, - sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, sym_sym_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2369), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3309), 2, + ACTIONS(4390), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3327), 2, + ACTIONS(4406), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5339), 2, + ACTIONS(5848), 2, sym__ws, sym_comment, - ACTIONS(4739), 3, + ACTIONS(4172), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(253), 3, + STATE(732), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1710), 19, + STATE(1811), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76425,87 +80882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69390] = 35, + [68310] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3139), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3763), 1, + ACTIONS(5852), 1, sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2329), 1, - sym_sym_lit, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5341), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3761), 3, + ACTIONS(5850), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(699), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2298), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(467), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76525,7 +80982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69525] = 35, + [68445] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76534,78 +80991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, - anon_sym_POUND, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(4180), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(3767), 1, - sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2329), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, + STATE(2426), 1, + sym__metadata_lit, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(4390), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(4406), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3765), 3, + ACTIONS(5854), 2, + sym__ws, + sym_comment, + ACTIONS(4178), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(740), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2299), 19, + STATE(1814), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76625,87 +81082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69660] = 35, + [68580] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2985), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3017), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3721), 1, + ACTIONS(5860), 1, sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3001), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3719), 3, + ACTIONS(5856), 2, + sym__ws, + sym_comment, + ACTIONS(5858), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(780), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2294), 19, + STATE(460), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76725,87 +81182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69795] = 35, + [68715] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2985), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3017), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3695), 1, + ACTIONS(5866), 1, sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3001), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5343), 2, + ACTIONS(5862), 2, sym__ws, sym_comment, - ACTIONS(3693), 3, + ACTIONS(5864), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(733), 3, + STATE(763), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2200), 19, + STATE(355), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76825,7 +81282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69930] = 35, + [68850] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76834,78 +81291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(3303), 1, + ACTIONS(4184), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, anon_sym_POUND, - ACTIONS(3307), 1, + ACTIONS(4388), 1, aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(4771), 1, - sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2170), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, sym_sym_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(2363), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2369), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3309), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(4390), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3327), 2, + ACTIONS(4406), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5345), 2, - sym__ws, - sym_comment, - ACTIONS(4769), 3, + ACTIONS(4182), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(255), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1712), 19, + STATE(1816), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76925,13 +81382,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70065] = 35, + [68985] = 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, @@ -76950,62 +81403,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(3808), 1, + anon_sym_POUND, + ACTIONS(3810), 1, + aux_sym_num_lit_token1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5349), 1, + ACTIONS(5666), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 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(2983), 2, + ACTIONS(3812), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3824), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5868), 2, sym__ws, sym_comment, - ACTIONS(5347), 3, + ACTIONS(5664), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(792), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(317), 19, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1660), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77025,87 +81482,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70200] = 35, + [69120] = 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(3844), 1, + anon_sym_COLON, + ACTIONS(3846), 1, + anon_sym_COLON_COLON, + ACTIONS(3848), 1, + anon_sym_DQUOTE, + ACTIONS(3850), 1, + aux_sym_sym_lit_token1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4188), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(5355), 1, - sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2089), 1, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, + sym_sym_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5351), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(5353), 3, + ACTIONS(4390), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4406), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4186), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(737), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(303), 19, + STATE(1817), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77125,7 +81582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70335] = 35, + [69255] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -77164,19 +81621,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5361), 1, + ACTIONS(5874), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -77190,22 +81647,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5357), 2, + ACTIONS(5870), 2, sym__ws, sym_comment, - ACTIONS(5359), 3, + ACTIONS(5872), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(738), 3, + STATE(784), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(301), 19, + STATE(459), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77225,187 +81682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70470] = 35, + [69390] = 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(154), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3808), 1, anon_sym_POUND, - ACTIONS(158), 1, + ACTIONS(3810), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, - anon_sym_COLON, - ACTIONS(162), 1, - anon_sym_COLON_COLON, - ACTIONS(164), 1, - anon_sym_DQUOTE, - ACTIONS(166), 1, - aux_sym_sym_lit_token1, - ACTIONS(181), 1, - anon_sym_POUND_QMARK, - ACTIONS(183), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3021), 1, + ACTIONS(5686), 1, sym_self_referential_reader_macro, - ACTIONS(3031), 1, - anon_sym_cl, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2102), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(179), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(2987), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1827), 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, - [70605] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2985), 1, - anon_sym_POUND, - ACTIONS(2989), 1, - aux_sym_num_lit_token1, - ACTIONS(2991), 1, - anon_sym_COLON, - ACTIONS(2993), 1, - anon_sym_COLON_COLON, - ACTIONS(2995), 1, - anon_sym_DQUOTE, - ACTIONS(2997), 1, - aux_sym_sym_lit_token1, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3003), 1, - anon_sym_POUND_QMARK, - ACTIONS(3005), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, - anon_sym_SQUOTE, - ACTIONS(3011), 1, - anon_sym_BQUOTE, - ACTIONS(3013), 1, - anon_sym_COMMA_AT, - ACTIONS(3015), 1, - anon_sym_COMMA, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3685), 1, - sym_self_referential_reader_macro, - STATE(2103), 1, - aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3001), 2, + ACTIONS(3812), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3023), 2, + ACTIONS(3824), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5363), 2, + ACTIONS(5876), 2, sym__ws, sym_comment, - ACTIONS(3683), 3, + ACTIONS(5684), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(735), 3, + STATE(794), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2291), 19, + STATE(1670), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77425,7 +81782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70740] = 35, + [69525] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77434,78 +81791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2985), 1, - anon_sym_POUND, - ACTIONS(2989), 1, - aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(4192), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3017), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(3659), 1, - sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, sym_sym_lit, - ACTIONS(2983), 2, + STATE(2426), 1, + sym__metadata_lit, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3001), 2, + ACTIONS(4390), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3023), 2, + ACTIONS(4406), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3657), 3, + ACTIONS(4190), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2290), 19, + STATE(1818), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77525,87 +81882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70875] = 35, + [69660] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2985), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3017), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3639), 1, + ACTIONS(5880), 1, sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3001), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3637), 3, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(5878), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2288), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(456), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77625,87 +81982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71010] = 35, + [69795] = 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(2985), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3808), 1, anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(3810), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, - anon_sym_COLON, - ACTIONS(2993), 1, - anon_sym_COLON_COLON, - ACTIONS(2995), 1, - anon_sym_DQUOTE, - ACTIONS(2997), 1, - aux_sym_sym_lit_token1, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3003), 1, - anon_sym_POUND_QMARK, - ACTIONS(3005), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3635), 1, + ACTIONS(5718), 1, sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3001), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5365), 2, + ACTIONS(3812), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3824), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5882), 2, sym__ws, sym_comment, - ACTIONS(3633), 3, + ACTIONS(5716), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(740), 3, + STATE(795), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2285), 19, + STATE(1680), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77725,7 +82082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71145] = 35, + [69930] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77734,78 +82091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2985), 1, - anon_sym_POUND, - ACTIONS(2989), 1, - aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(4196), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3017), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(3617), 1, - sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, sym_sym_lit, - ACTIONS(2983), 2, + STATE(2426), 1, + sym__metadata_lit, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3001), 2, + ACTIONS(4390), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3023), 2, + ACTIONS(4406), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3615), 3, + ACTIONS(4194), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2284), 19, + STATE(1819), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77825,13 +82182,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71280] = 35, + [70065] = 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, @@ -77850,62 +82203,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(3808), 1, + anon_sym_POUND, + ACTIONS(3810), 1, + aux_sym_num_lit_token1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5371), 1, + ACTIONS(5752), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 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(5367), 2, + ACTIONS(3812), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3824), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5884), 2, sym__ws, sym_comment, - ACTIONS(5369), 3, + ACTIONS(5750), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(596), 3, + STATE(797), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(606), 19, + STATE(1689), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77925,7 +82282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71415] = 35, + [70200] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -77964,19 +82321,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5375), 1, + ACTIONS(5888), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -77990,22 +82347,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(5373), 3, + ACTIONS(5886), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(291), 19, + STATE(454), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78025,87 +82382,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71550] = 35, + [70335] = 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(3844), 1, + anon_sym_COLON, + ACTIONS(3846), 1, + anon_sym_COLON_COLON, + ACTIONS(3848), 1, + anon_sym_DQUOTE, + ACTIONS(3850), 1, + aux_sym_sym_lit_token1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4200), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(5379), 1, - sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2089), 1, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, + sym_sym_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(5377), 3, + ACTIONS(4390), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4406), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4198), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(280), 19, + STATE(1844), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1820), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78125,7 +82482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71685] = 35, + [70470] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78134,78 +82491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2985), 1, + ACTIONS(65), 1, anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(69), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(71), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(73), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(92), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(98), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(100), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(102), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(104), 1, anon_sym_COMMA, - ACTIONS(3017), 1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(3760), 1, anon_sym_cl, - ACTIONS(3573), 1, + ACTIONS(5894), 1, sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(840), 1, + sym_sym_lit, + STATE(842), 1, + sym__bare_set_lit, + STATE(2335), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(3001), 2, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5381), 2, + ACTIONS(5890), 2, sym__ws, sym_comment, - ACTIONS(3571), 3, + ACTIONS(5892), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(751), 3, + STATE(446), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2280), 19, + STATE(843), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78225,7 +82582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71820] = 35, + [70605] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78234,78 +82591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2985), 1, - anon_sym_POUND, - ACTIONS(2989), 1, - aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(4266), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4394), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3017), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(3545), 1, - sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, - sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3001), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3019), 2, + STATE(2426), 1, + sym__metadata_lit, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3543), 3, + ACTIONS(4390), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4406), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5896), 2, + sym__ws, + sym_comment, + ACTIONS(4264), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(782), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2267), 19, + STATE(1832), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78325,87 +82682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71955] = 35, + [70740] = 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(3844), 1, + anon_sym_COLON, + ACTIONS(3846), 1, + anon_sym_COLON_COLON, + ACTIONS(3848), 1, + anon_sym_DQUOTE, + ACTIONS(3850), 1, + aux_sym_sym_lit_token1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4256), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(3333), 1, - sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2089), 1, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, + sym_sym_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5383), 2, + ACTIONS(4390), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4406), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5898), 2, sym__ws, sym_comment, - ACTIONS(3331), 3, + ACTIONS(4254), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(626), 3, + STATE(779), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1596), 19, + STATE(1831), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78425,87 +82782,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72090] = 35, + [70875] = 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(3844), 1, + anon_sym_COLON, + ACTIONS(3846), 1, + anon_sym_COLON_COLON, + ACTIONS(3848), 1, + anon_sym_DQUOTE, + ACTIONS(3850), 1, + aux_sym_sym_lit_token1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(3339), 1, + ACTIONS(4838), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(1618), 1, - sym_sym_lit, - STATE(2089), 1, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, + sym_sym_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5385), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3337), 3, + ACTIONS(4390), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4406), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4836), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(631), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1597), 19, + STATE(2331), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78525,87 +82882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72225] = 35, + [71010] = 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(2914), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(2918), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4084), 1, anon_sym_cl, - ACTIONS(3345), 1, + ACTIONS(5904), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(2304), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5387), 2, + ACTIONS(5900), 2, sym__ws, sym_comment, - ACTIONS(3343), 3, + ACTIONS(5902), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(635), 3, + STATE(361), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1598), 19, + STATE(2365), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78625,13 +82982,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72360] = 35, + [71145] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -78650,62 +83003,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(3808), 1, + anon_sym_POUND, + ACTIONS(3810), 1, + aux_sym_num_lit_token1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(3351), 1, + ACTIONS(5756), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 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(5389), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3349), 3, + ACTIONS(3812), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3824), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5754), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(639), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1599), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1654), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78725,87 +83082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72495] = 35, + [71280] = 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(3139), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3808), 1, anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(3810), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, - anon_sym_COLON, - ACTIONS(3147), 1, - anon_sym_COLON_COLON, - ACTIONS(3149), 1, - anon_sym_DQUOTE, - ACTIONS(3151), 1, - aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, - anon_sym_POUND_QMARK, - ACTIONS(3159), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(3171), 1, - anon_sym_cl, - ACTIONS(3999), 1, + ACTIONS(5742), 1, sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2329), 1, - sym_sym_lit, - ACTIONS(3019), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3812), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(3824), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5391), 2, - sym__ws, - sym_comment, - ACTIONS(3997), 3, + ACTIONS(5740), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(538), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2258), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1659), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78825,87 +83182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72630] = 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(3139), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3989), 1, + ACTIONS(5910), 1, sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2329), 1, - sym_sym_lit, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5393), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5906), 2, sym__ws, sym_comment, - ACTIONS(3987), 3, + ACTIONS(5908), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(533), 3, + STATE(798), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2257), 19, + STATE(440), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78925,87 +83282,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72765] = 35, + [71550] = 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(3139), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3808), 1, anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(3810), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, - anon_sym_COLON, - ACTIONS(3147), 1, - anon_sym_COLON_COLON, - ACTIONS(3149), 1, - anon_sym_DQUOTE, - ACTIONS(3151), 1, - aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, - anon_sym_POUND_QMARK, - ACTIONS(3159), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(3171), 1, - anon_sym_cl, - ACTIONS(3971), 1, + ACTIONS(5738), 1, sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2329), 1, - sym_sym_lit, - ACTIONS(3019), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3812), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(3824), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5395), 2, - sym__ws, - sym_comment, - ACTIONS(3969), 3, + ACTIONS(5736), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(401), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2255), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1665), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79025,87 +83382,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72900] = 35, + [71685] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3808), 1, anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(3810), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, - anon_sym_COLON, - ACTIONS(3147), 1, - anon_sym_COLON_COLON, - ACTIONS(3149), 1, - anon_sym_DQUOTE, - ACTIONS(3151), 1, - aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, - anon_sym_POUND_QMARK, - ACTIONS(3159), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(3171), 1, - anon_sym_cl, - ACTIONS(3939), 1, + ACTIONS(5730), 1, sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2329), 1, - sym_sym_lit, - ACTIONS(3019), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3812), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(3824), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5397), 2, - sym__ws, - sym_comment, - ACTIONS(3937), 3, + ACTIONS(5728), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(341), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2207), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1696), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79125,87 +83482,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73035] = 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(3139), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3919), 1, + ACTIONS(5914), 1, sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2329), 1, - sym_sym_lit, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5399), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3917), 3, + ACTIONS(5912), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(307), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2226), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(379), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79225,13 +83582,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73170] = 35, + [71955] = 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, @@ -79250,62 +83603,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(3808), 1, + anon_sym_POUND, + ACTIONS(3810), 1, + aux_sym_num_lit_token1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(3357), 1, + ACTIONS(5724), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 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(5401), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3355), 3, + ACTIONS(3812), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3824), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5722), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(642), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1600), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1710), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79325,87 +83682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73305] = 35, + [72090] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2985), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2989), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3017), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3511), 1, + ACTIONS(5918), 1, sym_self_referential_reader_macro, - STATE(2103), 1, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2396), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3001), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3493), 3, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(5916), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2263), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(435), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79425,87 +83782,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73440] = 35, + [72225] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(160), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 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(183), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4051), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5922), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(208), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3103), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3117), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5403), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4049), 3, + ACTIONS(5920), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(544), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1875), 19, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(382), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79525,7 +83882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73575] = 35, + [72360] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -79564,19 +83921,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5407), 1, + ACTIONS(5928), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -79590,22 +83947,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2983), 2, + ACTIONS(5924), 2, sym__ws, sym_comment, - ACTIONS(5405), 3, + ACTIONS(5926), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(808), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(672), 19, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(431), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79625,87 +83982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73710] = 35, + [72495] = 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(3139), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3808), 1, anon_sym_POUND, - ACTIONS(3143), 1, + ACTIONS(3810), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, - anon_sym_COLON, - ACTIONS(3147), 1, - anon_sym_COLON_COLON, - ACTIONS(3149), 1, - anon_sym_DQUOTE, - ACTIONS(3151), 1, - aux_sym_sym_lit_token1, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, - anon_sym_POUND_QMARK, - ACTIONS(3159), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(3171), 1, - anon_sym_cl, - ACTIONS(3325), 1, + ACTIONS(5692), 1, sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2329), 1, - sym_sym_lit, - ACTIONS(2983), 2, - sym__ws, - sym_comment, - ACTIONS(3019), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3025), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(3812), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(3824), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3305), 3, + ACTIONS(5930), 2, + sym__ws, + sym_comment, + ACTIONS(5690), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1652), 3, + STATE(810), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2083), 19, + STATE(1708), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79725,13 +84082,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73845] = 35, + [72630] = 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, @@ -79750,62 +84103,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(3808), 1, + anon_sym_POUND, + ACTIONS(3810), 1, + aux_sym_num_lit_token1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5411), 1, + ACTIONS(5646), 1, sym_self_referential_reader_macro, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1618), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2089), 1, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 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(2983), 2, + ACTIONS(3812), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3824), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5932), 2, sym__ws, sym_comment, - ACTIONS(5409), 3, + ACTIONS(5644), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1652), 3, + STATE(292), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(491), 19, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1697), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79825,87 +84182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73980] = 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(160), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 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(183), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4057), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5938), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(208), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3103), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3117), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5413), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5934), 2, sym__ws, sym_comment, - ACTIONS(4055), 3, + ACTIONS(5936), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(392), 3, + STATE(796), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1882), 19, + STATE(387), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79925,7 +84282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74115] = 35, + [72900] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79934,78 +84291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(129), 1, + anon_sym_POUND, + ACTIONS(133), 1, + aux_sym_num_lit_token1, + ACTIONS(135), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(137), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(139), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, + ACTIONS(160), 1, anon_sym_POUND_QMARK, - ACTIONS(183), 1, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3097), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(166), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(168), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(170), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(172), 1, anon_sym_COMMA, - ACTIONS(4063), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(5212), 1, sym_self_referential_reader_macro, - STATE(1807), 1, + STATE(1874), 1, sym_sym_lit, - STATE(1853), 1, + STATE(2168), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(2328), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(208), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3103), 2, + ACTIONS(158), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3117), 2, + ACTIONS(183), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5415), 2, + ACTIONS(189), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(4061), 3, + ACTIONS(5210), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(382), 3, + STATE(1716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1896), 19, + STATE(1976), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80025,87 +84382,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74250] = 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(160), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 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(183), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3097), 1, + ACTIONS(3808), 1, anon_sym_POUND, - ACTIONS(3101), 1, + ACTIONS(3810), 1, aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(4069), 1, + ACTIONS(5636), 1, sym_self_referential_reader_macro, - STATE(1807), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2104), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(202), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(208), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3103), 2, + ACTIONS(3812), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3117), 2, + ACTIONS(3824), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5417), 2, + ACTIONS(5940), 2, sym__ws, sym_comment, - ACTIONS(4067), 3, + ACTIONS(5634), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(644), 3, + STATE(295), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1852), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1897), 19, + STATE(1687), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80125,7 +84482,11 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74385] = 37, + [73170] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, ACTIONS(15), 1, aux_sym_num_lit_token1, ACTIONS(17), 1, @@ -80160,32 +84521,20 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5419), 1, - anon_sym_POUND, - ACTIONS(5421), 1, - aux_sym__form_token1, - ACTIONS(5425), 1, - aux_sym_char_lit_token1, - ACTIONS(5427), 1, - anon_sym_LBRACE, - ACTIONS(5429), 1, + ACTIONS(5946), 1, sym_self_referential_reader_macro, - STATE(1611), 1, - sym_list_lit, - STATE(1612), 1, - sym_sym_lit, - STATE(1616), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(2089), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2326), 1, - sym_array_dimension, ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, @@ -80198,19 +84547,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5423), 3, + ACTIONS(5942), 2, + sym__ws, + sym_comment, + ACTIONS(5944), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(812), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1614), 17, + STATE(430), 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, @@ -80224,92 +84582,93 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74521] = 37, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3145), 1, + [73305] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3307), 1, - aux_sym_num_lit_token1, - ACTIONS(3311), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3313), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3808), 1, + anon_sym_POUND, + ACTIONS(3810), 1, + aux_sym_num_lit_token1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(3317), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(3319), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(3321), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(3323), 1, - anon_sym_cl, - ACTIONS(5431), 1, - anon_sym_POUND, - ACTIONS(5433), 1, - aux_sym__form_token1, - ACTIONS(5437), 1, - aux_sym_char_lit_token1, - ACTIONS(5439), 1, - anon_sym_LBRACE, - ACTIONS(5441), 1, + ACTIONS(5624), 1, sym_self_referential_reader_macro, - STATE(1689), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1695), 1, - sym_list_lit, - STATE(2118), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2169), 1, - sym_sym_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2321), 1, - sym_array_dimension, - ACTIONS(2363), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2369), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3309), 2, + ACTIONS(3812), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3327), 2, + ACTIONS(3824), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5435), 3, + ACTIONS(5948), 2, + sym__ws, + sym_comment, + ACTIONS(5622), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1688), 3, + STATE(306), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1692), 17, + STATE(1685), 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, @@ -80323,92 +84682,93 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74657] = 37, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4083), 1, + [73440] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4085), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4087), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4091), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4093), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(4097), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(4099), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4101), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4103), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4105), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4107), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4109), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4111), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5443), 1, - anon_sym_POUND, - ACTIONS(5445), 1, - aux_sym__form_token1, - ACTIONS(5449), 1, - aux_sym_char_lit_token1, - ACTIONS(5451), 1, - anon_sym_LBRACE, - ACTIONS(5453), 1, + ACTIONS(5952), 1, sym_self_referential_reader_macro, - STATE(1391), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1395), 1, + STATE(1634), 1, sym_sym_lit, - STATE(1396), 1, - sym_list_lit, - STATE(2106), 1, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2337), 1, - sym_array_dimension, - ACTIONS(4095), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4113), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4117), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4119), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5447), 3, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(5950), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1390), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1393), 17, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(427), 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, @@ -80422,92 +84782,93 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74793] = 37, + [73575] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3365), 1, - aux_sym_num_lit_token1, - ACTIONS(3367), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(3369), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(3371), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(3375), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3856), 1, anon_sym_POUND_QMARK, - ACTIONS(3381), 1, + ACTIONS(4246), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3383), 1, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3385), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(3387), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(3389), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(3391), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(4404), 1, anon_sym_cl, - ACTIONS(5455), 1, - anon_sym_POUND, - ACTIONS(5457), 1, - aux_sym__form_token1, - ACTIONS(5461), 1, - aux_sym_char_lit_token1, - ACTIONS(5463), 1, - anon_sym_LBRACE, - ACTIONS(5465), 1, - sym_self_referential_reader_macro, - STATE(1252), 1, - sym_sym_lit, - STATE(1286), 1, - sym_list_lit, - STATE(1370), 1, + STATE(1843), 1, sym__bare_set_lit, - STATE(2110), 1, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, + sym_sym_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2349), 1, - sym_array_dimension, - ACTIONS(3377), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3395), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3399), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3401), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5459), 3, + ACTIONS(4390), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4406), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5954), 2, + sym__ws, + sym_comment, + ACTIONS(4244), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1361), 3, + STATE(776), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1372), 17, + STATE(1830), 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, @@ -80521,92 +84882,93 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74929] = 37, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2329), 1, - aux_sym_num_lit_token1, - ACTIONS(2331), 1, + [73710] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2335), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2337), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2339), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(2345), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2347), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3808), 1, + anon_sym_POUND, + ACTIONS(3810), 1, + aux_sym_num_lit_token1, + ACTIONS(3814), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2349), 1, + ACTIONS(3816), 1, anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(3820), 1, anon_sym_COMMA_AT, - ACTIONS(2355), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(3083), 1, - anon_sym_cl, - ACTIONS(5437), 1, - aux_sym_char_lit_token1, - ACTIONS(5439), 1, - anon_sym_LBRACE, - ACTIONS(5441), 1, + ACTIONS(4934), 1, sym_self_referential_reader_macro, - ACTIONS(5467), 1, - anon_sym_POUND, - ACTIONS(5469), 1, - aux_sym__form_token1, - STATE(1689), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1695), 1, - sym_list_lit, - STATE(2078), 1, + STATE(1634), 1, sym_sym_lit, - STATE(2109), 1, + STATE(2318), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2348), 1, - sym_array_dimension, - ACTIONS(2341), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2363), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2367), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2369), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5435), 3, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(3812), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3824), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4932), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1688), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1692), 17, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1635), 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, @@ -80620,92 +84982,93 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75065] = 37, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3143), 1, + [73845] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(3145), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(3153), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(3157), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(3159), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3161), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3163), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(3165), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(3167), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(3169), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5471), 1, - anon_sym_POUND, - ACTIONS(5473), 1, - aux_sym__form_token1, - ACTIONS(5477), 1, - aux_sym_char_lit_token1, - ACTIONS(5479), 1, - anon_sym_LBRACE, - ACTIONS(5481), 1, + ACTIONS(5960), 1, sym_self_referential_reader_macro, - STATE(2082), 1, + STATE(1631), 1, + sym__bare_set_lit, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2266), 1, - sym_list_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2305), 1, - sym_array_dimension, - STATE(2338), 1, - sym_sym_lit, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3175), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5475), 3, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5956), 2, + sym__ws, + sym_comment, + ACTIONS(5958), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(2277), 3, + STATE(799), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2274), 17, + STATE(388), 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, @@ -80719,92 +85082,93 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75201] = 37, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(158), 1, + [73980] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(160), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 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(183), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(185), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(187), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(189), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(193), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5483), 1, - anon_sym_POUND, - ACTIONS(5485), 1, - aux_sym__form_token1, - ACTIONS(5489), 1, - aux_sym_char_lit_token1, - ACTIONS(5491), 1, - anon_sym_LBRACE, - ACTIONS(5493), 1, + ACTIONS(5964), 1, sym_self_referential_reader_macro, - STATE(1808), 1, - sym_sym_lit, - STATE(1853), 1, + STATE(1631), 1, sym__bare_set_lit, - STATE(1858), 1, - sym_list_lit, - STATE(2102), 1, + STATE(1634), 1, + sym_sym_lit, + STATE(2330), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2316), 1, - sym_array_dimension, - ACTIONS(179), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(202), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(206), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(208), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5487), 3, + ACTIONS(3572), 2, + sym__ws, + sym_comment, + ACTIONS(5962), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1852), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1855), 17, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(425), 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, @@ -80818,92 +85182,93 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75337] = 37, + [74115] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(160), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(162), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(164), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(166), 1, + ACTIONS(3850), 1, aux_sym_sym_lit_token1, - ACTIONS(181), 1, - anon_sym_POUND_QMARK, - ACTIONS(183), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(2999), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, - anon_sym_cl, - ACTIONS(3101), 1, + ACTIONS(3856), 1, + anon_sym_POUND_QMARK, + ACTIONS(4236), 1, + sym_self_referential_reader_macro, + ACTIONS(4386), 1, + anon_sym_POUND, + ACTIONS(4388), 1, aux_sym_num_lit_token1, - ACTIONS(3105), 1, + ACTIONS(4392), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4394), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3107), 1, + ACTIONS(4396), 1, anon_sym_SQUOTE, - ACTIONS(3109), 1, + ACTIONS(4398), 1, anon_sym_BQUOTE, - ACTIONS(3111), 1, + ACTIONS(4400), 1, anon_sym_COMMA_AT, - ACTIONS(3113), 1, + ACTIONS(4402), 1, anon_sym_COMMA, - ACTIONS(5483), 1, - anon_sym_POUND, - ACTIONS(5485), 1, - aux_sym__form_token1, - ACTIONS(5489), 1, - aux_sym_char_lit_token1, - ACTIONS(5491), 1, - anon_sym_LBRACE, - ACTIONS(5493), 1, - sym_self_referential_reader_macro, - STATE(1808), 1, - sym_sym_lit, - STATE(1853), 1, + ACTIONS(4404), 1, + anon_sym_cl, + STATE(1843), 1, sym__bare_set_lit, - STATE(1858), 1, - sym_list_lit, - STATE(2104), 1, + STATE(2313), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2399), 1, + sym_sym_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2316), 1, - sym_array_dimension, - ACTIONS(202), 2, + ACTIONS(2952), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(208), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3103), 2, + ACTIONS(4390), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3117), 2, + ACTIONS(4406), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5487), 3, + ACTIONS(5966), 2, + sym__ws, + sym_comment, + ACTIONS(4234), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1852), 3, + STATE(774), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1855), 17, + STATE(1829), 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, @@ -80917,92 +85282,93 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75473] = 37, + [74250] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(1445), 1, + ACTIONS(773), 1, + anon_sym_POUND, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(1447), 1, + ACTIONS(779), 1, anon_sym_COLON, - ACTIONS(1449), 1, + ACTIONS(781), 1, anon_sym_COLON_COLON, - ACTIONS(1451), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, + ACTIONS(785), 1, aux_sym_sym_lit_token1, - ACTIONS(1468), 1, + ACTIONS(789), 1, anon_sym_POUND_QMARK, - ACTIONS(1470), 1, + ACTIONS(791), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(1472), 1, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(1474), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(1476), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(1480), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(3127), 1, + ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(3129), 1, + ACTIONS(3221), 1, anon_sym_cl, - ACTIONS(5495), 1, - anon_sym_POUND, - ACTIONS(5497), 1, - aux_sym__form_token1, - ACTIONS(5501), 1, - aux_sym_char_lit_token1, - ACTIONS(5503), 1, - anon_sym_LBRACE, - ACTIONS(5505), 1, + ACTIONS(5972), 1, sym_self_referential_reader_macro, - STATE(1227), 1, - sym__bare_set_lit, - STATE(1232), 1, + STATE(976), 1, sym_sym_lit, - STATE(1233), 1, - sym_list_lit, - STATE(2098), 1, + STATE(986), 1, + sym__bare_set_lit, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2302), 1, - sym_array_dimension, - ACTIONS(1466), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(1487), 2, + ACTIONS(805), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(1491), 2, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1493), 2, + ACTIONS(811), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5499), 3, + ACTIONS(5968), 2, + sym__ws, + sym_comment, + ACTIONS(5970), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1226), 3, + STATE(417), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1230), 17, + STATE(989), 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, @@ -81016,88 +85382,88 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75609] = 37, + [74385] = 37, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2989), 1, + ACTIONS(3842), 1, aux_sym_num_lit_token1, - ACTIONS(2991), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(2999), 1, + ACTIONS(4572), 1, + anon_sym_cl, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(3003), 1, + ACTIONS(5054), 1, anon_sym_POUND_QMARK, - ACTIONS(3005), 1, + ACTIONS(5056), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3007), 1, + ACTIONS(5058), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3009), 1, + ACTIONS(5060), 1, anon_sym_SQUOTE, - ACTIONS(3011), 1, + ACTIONS(5062), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(5064), 1, anon_sym_COMMA_AT, - ACTIONS(3015), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(5477), 1, + ACTIONS(5974), 1, + anon_sym_POUND, + ACTIONS(5976), 1, + aux_sym__form_token1, + ACTIONS(5980), 1, aux_sym_char_lit_token1, - ACTIONS(5479), 1, + ACTIONS(5982), 1, anon_sym_LBRACE, - ACTIONS(5481), 1, + ACTIONS(5984), 1, sym_self_referential_reader_macro, - ACTIONS(5507), 1, - anon_sym_POUND, - ACTIONS(5509), 1, - aux_sym__form_token1, - STATE(2103), 1, + STATE(2316), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2266), 1, - sym_list_lit, - STATE(2276), 1, + STATE(2432), 1, sym__bare_set_lit, - STATE(2335), 1, + STATE(2435), 1, + sym_list_lit, + STATE(2582), 1, sym_array_dimension, - STATE(2359), 1, + STATE(2619), 1, sym_sym_lit, - ACTIONS(3001), 2, + ACTIONS(3854), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3019), 2, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3023), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3025), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5475), 3, + ACTIONS(5070), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5978), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2274), 17, + STATE(2433), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -81115,88 +85481,88 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75745] = 37, + [74521] = 37, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3197), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(4546), 1, aux_sym_num_lit_token1, - ACTIONS(3199), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3201), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3203), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3205), 1, + ACTIONS(4554), 1, aux_sym_sym_lit_token1, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(4558), 1, anon_sym_POUND_QMARK, - ACTIONS(3213), 1, + ACTIONS(4560), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3215), 1, + ACTIONS(4562), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3217), 1, + ACTIONS(4564), 1, anon_sym_SQUOTE, - ACTIONS(3219), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(3221), 1, + ACTIONS(4568), 1, anon_sym_COMMA_AT, - ACTIONS(3223), 1, + ACTIONS(4570), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(4572), 1, anon_sym_cl, - ACTIONS(5511), 1, - anon_sym_POUND, - ACTIONS(5513), 1, - aux_sym__form_token1, - ACTIONS(5517), 1, + ACTIONS(5980), 1, aux_sym_char_lit_token1, - ACTIONS(5519), 1, + ACTIONS(5982), 1, anon_sym_LBRACE, - ACTIONS(5521), 1, + ACTIONS(5984), 1, sym_self_referential_reader_macro, - STATE(784), 1, - sym__bare_set_lit, - STATE(790), 1, - sym_sym_lit, - STATE(791), 1, - sym_list_lit, - STATE(2081), 1, + ACTIONS(5986), 1, + anon_sym_POUND, + ACTIONS(5988), 1, + aux_sym__form_token1, + STATE(2319), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2332), 1, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2435), 1, + sym_list_lit, + STATE(2551), 1, sym_array_dimension, - ACTIONS(3209), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(3227), 2, + STATE(2619), 1, + sym_sym_lit, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(3231), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3233), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5515), 3, + ACTIONS(4556), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4576), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5978), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(785), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(782), 17, + STATE(2433), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -81214,88 +85580,88 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75881] = 37, + [74657] = 37, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(2918), 1, + aux_sym_num_lit_token1, + ACTIONS(2920), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2922), 1, anon_sym_COLON_COLON, - ACTIONS(2995), 1, + ACTIONS(2924), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(3017), 1, - anon_sym_cl, - ACTIONS(3143), 1, - aux_sym_num_lit_token1, - ACTIONS(3495), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(2932), 1, anon_sym_POUND_QMARK, - ACTIONS(3499), 1, + ACTIONS(2934), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(3501), 1, + ACTIONS(2936), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3503), 1, + ACTIONS(2938), 1, anon_sym_SQUOTE, - ACTIONS(3505), 1, + ACTIONS(2940), 1, anon_sym_BQUOTE, - ACTIONS(3507), 1, + ACTIONS(2942), 1, anon_sym_COMMA_AT, - ACTIONS(3509), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(5477), 1, + ACTIONS(4084), 1, + anon_sym_cl, + ACTIONS(5990), 1, + anon_sym_POUND, + ACTIONS(5992), 1, + aux_sym__form_token1, + ACTIONS(5996), 1, aux_sym_char_lit_token1, - ACTIONS(5479), 1, + ACTIONS(5998), 1, anon_sym_LBRACE, - ACTIONS(5481), 1, + ACTIONS(6000), 1, sym_self_referential_reader_macro, - ACTIONS(5523), 1, - anon_sym_POUND, - ACTIONS(5525), 1, - aux_sym__form_token1, - STATE(2092), 1, + STATE(1839), 1, + sym_list_lit, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2303), 1, + sym_sym_lit, + STATE(2308), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2266), 1, - sym_list_lit, - STATE(2276), 1, - sym__bare_set_lit, - STATE(2342), 1, + STATE(2574), 1, sym_array_dimension, - STATE(2359), 1, - sym_sym_lit, - ACTIONS(3019), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3155), 2, + ACTIONS(2930), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3513), 2, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2956), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5475), 3, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5994), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2274), 17, + STATE(1842), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -81313,88 +85679,88 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76017] = 37, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, + [74793] = 37, 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(3041), 1, + ACTIONS(777), 1, aux_sym_num_lit_token1, - ACTIONS(3045), 1, + ACTIONS(779), 1, + anon_sym_COLON, + ACTIONS(781), 1, + anon_sym_COLON_COLON, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + aux_sym_sym_lit_token1, + ACTIONS(789), 1, + anon_sym_POUND_QMARK, + ACTIONS(791), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(793), 1, anon_sym_POUND_SQUOTE, - ACTIONS(3047), 1, + ACTIONS(795), 1, anon_sym_SQUOTE, - ACTIONS(3049), 1, + ACTIONS(797), 1, anon_sym_BQUOTE, - ACTIONS(3051), 1, + ACTIONS(799), 1, anon_sym_COMMA_AT, - ACTIONS(3053), 1, + ACTIONS(801), 1, anon_sym_COMMA, - ACTIONS(5419), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, + anon_sym_cl, + ACTIONS(6002), 1, anon_sym_POUND, - ACTIONS(5421), 1, + ACTIONS(6004), 1, aux_sym__form_token1, - ACTIONS(5425), 1, + ACTIONS(6008), 1, aux_sym_char_lit_token1, - ACTIONS(5427), 1, + ACTIONS(6010), 1, anon_sym_LBRACE, - ACTIONS(5429), 1, + ACTIONS(6012), 1, sym_self_referential_reader_macro, - STATE(1611), 1, - sym_list_lit, - STATE(1612), 1, - sym_sym_lit, - STATE(1616), 1, + STATE(986), 1, sym__bare_set_lit, - STATE(2093), 1, + STATE(995), 1, + sym_sym_lit, + STATE(998), 1, + sym_list_lit, + STATE(2347), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2326), 1, + STATE(2534), 1, sym_array_dimension, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3043), 2, + ACTIONS(787), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(3057), 2, + ACTIONS(805), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(809), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5423), 3, + ACTIONS(811), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6006), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1617), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1614), 17, + STATE(991), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -81412,88 +85778,88 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76153] = 37, + [74929] = 37, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(288), 1, + ACTIONS(3644), 1, aux_sym_num_lit_token1, - ACTIONS(290), 1, + ACTIONS(3646), 1, anon_sym_COLON, - ACTIONS(292), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, - ACTIONS(294), 1, + ACTIONS(3650), 1, anon_sym_DQUOTE, - ACTIONS(296), 1, + ACTIONS(3652), 1, aux_sym_sym_lit_token1, - ACTIONS(300), 1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, anon_sym_POUND_QMARK, - ACTIONS(302), 1, + ACTIONS(3660), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(304), 1, + ACTIONS(3662), 1, anon_sym_POUND_SQUOTE, - ACTIONS(306), 1, + ACTIONS(3664), 1, anon_sym_SQUOTE, - ACTIONS(308), 1, + ACTIONS(3666), 1, anon_sym_BQUOTE, - ACTIONS(310), 1, + ACTIONS(3668), 1, anon_sym_COMMA_AT, - ACTIONS(312), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - ACTIONS(2799), 1, - anon_sym_LPAREN, - ACTIONS(2801), 1, + ACTIONS(3672), 1, anon_sym_cl, - ACTIONS(5527), 1, + ACTIONS(6014), 1, anon_sym_POUND, - ACTIONS(5529), 1, + ACTIONS(6016), 1, aux_sym__form_token1, - ACTIONS(5533), 1, + ACTIONS(6020), 1, aux_sym_char_lit_token1, - ACTIONS(5535), 1, + ACTIONS(6022), 1, anon_sym_LBRACE, - ACTIONS(5537), 1, + ACTIONS(6024), 1, sym_self_referential_reader_macro, - STATE(1017), 1, + STATE(1539), 1, sym_list_lit, - STATE(1018), 1, + STATE(1540), 1, sym_sym_lit, - STATE(1023), 1, + STATE(1545), 1, sym__bare_set_lit, - STATE(2101), 1, + STATE(2345), 1, aux_sym_list_lit_repeat1, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2197), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2310), 1, + STATE(2559), 1, sym_array_dimension, - ACTIONS(298), 2, + ACTIONS(3656), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(316), 2, + ACTIONS(3674), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(320), 2, + ACTIONS(3678), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(322), 2, + ACTIONS(3680), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5531), 3, + ACTIONS(6018), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1024), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1020), 17, + STATE(1542), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -81511,506 +85877,910 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76289] = 6, + [75065] = 37, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5542), 1, - anon_sym_POUND_, - ACTIONS(5539), 2, - sym__ws, - sym_comment, - STATE(773), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(5545), 20, + ACTIONS(69), 1, + aux_sym_num_lit_token1, + ACTIONS(71), 1, + anon_sym_COLON, + ACTIONS(73), 1, anon_sym_COLON_COLON, + ACTIONS(75), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(77), 1, + aux_sym_sym_lit_token1, + ACTIONS(92), 1, + anon_sym_POUND_QMARK, + ACTIONS(94), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(96), 1, anon_sym_POUND_SQUOTE, + ACTIONS(98), 1, anon_sym_SQUOTE, + ACTIONS(100), 1, anon_sym_BQUOTE, + ACTIONS(102), 1, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(131), 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, + ACTIONS(104), 1, 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, - [76359] = 4, - ACTIONS(47), 1, - sym_block_comment, - STATE(775), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(5547), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(3758), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3760), 1, + anon_sym_cl, + ACTIONS(6026), 1, + anon_sym_POUND, + ACTIONS(6028), 1, + aux_sym__form_token1, + ACTIONS(6032), 1, + aux_sym_char_lit_token1, + ACTIONS(6034), 1, + anon_sym_LBRACE, + ACTIONS(6036), 1, + sym_self_referential_reader_macro, + STATE(842), 1, + sym__bare_set_lit, + STATE(846), 1, + sym_sym_lit, + STATE(847), 1, + sym_list_lit, + STATE(2335), 1, + aux_sym_list_lit_repeat1, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, + sym__metadata_lit, + STATE(2553), 1, + sym_array_dimension, + ACTIONS(90), 2, anon_sym_POUND0A, anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, + ACTIONS(113), 2, anon_sym_POUNDP, anon_sym_POUNDp, - sym_self_referential_reader_macro, + ACTIONS(117), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5549), 29, - anon_sym_POUND, + ACTIONS(6030), 3, anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, sym_fancy_literal, - anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [76424] = 6, + STATE(841), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(844), 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, + [75201] = 37, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5554), 1, - anon_sym_POUND_, - ACTIONS(5551), 2, - sym__ws, - sym_comment, - STATE(775), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(5545), 20, + ACTIONS(3578), 1, + aux_sym_num_lit_token1, + ACTIONS(3580), 1, + anon_sym_COLON, + ACTIONS(3582), 1, anon_sym_COLON_COLON, + ACTIONS(3584), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(3586), 1, + aux_sym_sym_lit_token1, + ACTIONS(3588), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(3592), 1, + anon_sym_POUND_QMARK, + ACTIONS(3594), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(3596), 1, anon_sym_POUND_SQUOTE, + ACTIONS(3598), 1, anon_sym_SQUOTE, + ACTIONS(3600), 1, anon_sym_BQUOTE, + ACTIONS(3602), 1, anon_sym_COMMA_AT, + ACTIONS(3604), 1, + anon_sym_COMMA, + ACTIONS(3606), 1, + anon_sym_cl, + ACTIONS(6038), 1, + anon_sym_POUND, + ACTIONS(6040), 1, + aux_sym__form_token1, + ACTIONS(6044), 1, + aux_sym_char_lit_token1, + ACTIONS(6046), 1, + anon_sym_LBRACE, + ACTIONS(6048), 1, + sym_self_referential_reader_macro, + STATE(1315), 1, + sym_sym_lit, + STATE(1368), 1, + sym_list_lit, + STATE(1373), 1, + sym__bare_set_lit, + STATE(2348), 1, + aux_sym_list_lit_repeat1, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, + sym__metadata_lit, + STATE(2572), 1, + sym_array_dimension, + ACTIONS(3590), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3608), 2, anon_sym_POUNDP, anon_sym_POUNDp, - sym_self_referential_reader_macro, + ACTIONS(3612), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, + ACTIONS(3614), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(131), 29, - anon_sym_POUND, + ACTIONS(6042), 3, anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, sym_fancy_literal, - anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [76493] = 6, + STATE(1374), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1371), 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, + [75337] = 37, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5560), 1, - anon_sym_POUND_, - ACTIONS(5557), 2, - sym__ws, - sym_comment, - STATE(774), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(5565), 20, + ACTIONS(1416), 1, + aux_sym_num_lit_token1, + ACTIONS(1418), 1, + anon_sym_COLON, + ACTIONS(1420), 1, anon_sym_COLON_COLON, + ACTIONS(1422), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(1424), 1, + aux_sym_sym_lit_token1, + ACTIONS(1439), 1, + anon_sym_POUND_QMARK, + ACTIONS(1441), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(1443), 1, anon_sym_POUND_SQUOTE, + ACTIONS(1445), 1, anon_sym_SQUOTE, + ACTIONS(1447), 1, anon_sym_BQUOTE, + ACTIONS(1449), 1, anon_sym_COMMA_AT, + ACTIONS(1451), 1, + anon_sym_COMMA, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_cl, + ACTIONS(6050), 1, + anon_sym_POUND, + ACTIONS(6052), 1, + aux_sym__form_token1, + ACTIONS(6056), 1, + aux_sym_char_lit_token1, + ACTIONS(6058), 1, + anon_sym_LBRACE, + ACTIONS(6060), 1, + sym_self_referential_reader_macro, + STATE(1229), 1, + sym_list_lit, + STATE(1230), 1, + sym_sym_lit, + STATE(1235), 1, + sym__bare_set_lit, + STATE(2334), 1, + aux_sym_list_lit_repeat1, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, + sym__metadata_lit, + STATE(2568), 1, + sym_array_dimension, + ACTIONS(1437), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(1458), 2, anon_sym_POUNDP, anon_sym_POUNDp, - sym_self_referential_reader_macro, + ACTIONS(1462), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5563), 29, - anon_sym_POUND, + ACTIONS(6054), 3, anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, sym_fancy_literal, - anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [76562] = 4, - ACTIONS(47), 1, - sym_block_comment, - STATE(775), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(5567), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, + STATE(1236), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1232), 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, + [75473] = 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, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + 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, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5569), 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, + ACTIONS(45), 1, 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, - [76627] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5574), 1, - anon_sym_POUND_, - ACTIONS(5571), 2, - sym__ws, - sym_comment, - STATE(777), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(5579), 20, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6062), 1, + anon_sym_POUND, + ACTIONS(6064), 1, + aux_sym__form_token1, + ACTIONS(6068), 1, + aux_sym_char_lit_token1, + ACTIONS(6070), 1, + anon_sym_LBRACE, + ACTIONS(6072), 1, + sym_self_referential_reader_macro, + STATE(1624), 1, + sym_list_lit, + STATE(1625), 1, + sym_sym_lit, + STATE(1631), 1, + sym__bare_set_lit, + STATE(2330), 1, + aux_sym_list_lit_repeat1, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, + sym__metadata_lit, + STATE(2561), 1, + sym_array_dimension, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - sym_self_referential_reader_macro, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5577), 29, - anon_sym_POUND, + ACTIONS(6066), 3, anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, sym_fancy_literal, - anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [76696] = 4, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1627), 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, + [75609] = 37, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5585), 1, - aux_sym_num_lit_token2, - ACTIONS(5581), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(133), 1, + aux_sym_num_lit_token1, + ACTIONS(135), 1, + anon_sym_COLON, + ACTIONS(137), 1, anon_sym_COLON_COLON, + ACTIONS(139), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(141), 1, + aux_sym_sym_lit_token1, + ACTIONS(160), 1, + anon_sym_POUND_QMARK, + ACTIONS(162), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(164), 1, anon_sym_POUND_SQUOTE, + ACTIONS(166), 1, anon_sym_SQUOTE, + ACTIONS(168), 1, anon_sym_BQUOTE, + ACTIONS(170), 1, anon_sym_COMMA_AT, + ACTIONS(172), 1, + anon_sym_COMMA, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_cl, + ACTIONS(6074), 1, + anon_sym_POUND, + ACTIONS(6076), 1, + aux_sym__form_token1, + ACTIONS(6080), 1, + aux_sym_char_lit_token1, + ACTIONS(6082), 1, + anon_sym_LBRACE, + ACTIONS(6084), 1, + sym_self_referential_reader_macro, + STATE(1875), 1, + sym_sym_lit, + STATE(2159), 1, + sym_list_lit, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2328), 1, + aux_sym_list_lit_repeat1, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, + sym__metadata_lit, + STATE(2556), 1, + sym_array_dimension, + ACTIONS(158), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(183), 2, anon_sym_POUNDP, anon_sym_POUNDp, - sym_self_referential_reader_macro, + ACTIONS(187), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5583), 30, - anon_sym_POUND, + ACTIONS(6078), 3, anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [76760] = 3, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2165), 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, + [75745] = 37, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5587), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(3842), 1, + aux_sym_num_lit_token1, + ACTIONS(3844), 1, + anon_sym_COLON, + ACTIONS(3846), 1, anon_sym_COLON_COLON, + ACTIONS(3848), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(3850), 1, + aux_sym_sym_lit_token1, + ACTIONS(3852), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(3856), 1, + anon_sym_POUND_QMARK, + ACTIONS(3858), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(3860), 1, anon_sym_POUND_SQUOTE, + ACTIONS(3862), 1, anon_sym_SQUOTE, + ACTIONS(3864), 1, anon_sym_BQUOTE, + ACTIONS(3866), 1, anon_sym_COMMA_AT, + ACTIONS(3868), 1, + anon_sym_COMMA, + ACTIONS(3870), 1, + anon_sym_cl, + ACTIONS(5980), 1, + aux_sym_char_lit_token1, + ACTIONS(5982), 1, + anon_sym_LBRACE, + ACTIONS(5984), 1, + sym_self_referential_reader_macro, + ACTIONS(6086), 1, + anon_sym_POUND, + ACTIONS(6088), 1, + aux_sym__form_token1, + STATE(2325), 1, + aux_sym_list_lit_repeat1, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, + sym__metadata_lit, + STATE(2432), 1, + sym__bare_set_lit, + STATE(2435), 1, + sym_list_lit, + STATE(2542), 1, + sym_array_dimension, + STATE(2571), 1, + sym_sym_lit, + ACTIONS(3854), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3872), 2, anon_sym_POUNDP, anon_sym_POUNDp, - sym_self_referential_reader_macro, + ACTIONS(3876), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5589), 30, - anon_sym_POUND, + ACTIONS(5978), 3, anon_sym_DOT, - aux_sym_num_lit_token1, + sym_nil_lit, + sym_fancy_literal, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2433), 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, + [75881] = 37, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3844), 1, anon_sym_COLON, + ACTIONS(3846), 1, + anon_sym_COLON_COLON, + ACTIONS(3848), 1, + anon_sym_DQUOTE, + ACTIONS(3850), 1, + aux_sym_sym_lit_token1, + ACTIONS(3852), 1, + anon_sym_LPAREN, + ACTIONS(3856), 1, + anon_sym_POUND_QMARK, + ACTIONS(4388), 1, + aux_sym_num_lit_token1, + ACTIONS(4392), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4394), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(4396), 1, + anon_sym_SQUOTE, + ACTIONS(4398), 1, + anon_sym_BQUOTE, + ACTIONS(4400), 1, + anon_sym_COMMA_AT, + ACTIONS(4402), 1, + anon_sym_COMMA, + ACTIONS(4404), 1, + anon_sym_cl, + ACTIONS(5996), 1, + aux_sym_char_lit_token1, + ACTIONS(5998), 1, + anon_sym_LBRACE, + ACTIONS(6000), 1, + sym_self_referential_reader_macro, + ACTIONS(6090), 1, + anon_sym_POUND, + ACTIONS(6092), 1, + aux_sym__form_token1, + STATE(1839), 1, + sym_list_lit, + STATE(1843), 1, + sym__bare_set_lit, + STATE(2313), 1, + aux_sym_list_lit_repeat1, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2398), 1, + sym_sym_lit, + STATE(2426), 1, + sym__metadata_lit, + STATE(2555), 1, + sym_array_dimension, + ACTIONS(2952), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4390), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4406), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5994), 3, + anon_sym_DOT, sym_nil_lit, + sym_fancy_literal, + STATE(1844), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1842), 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, + [76017] = 37, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, aux_sym_sym_lit_token1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(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(3810), 1, + aux_sym_num_lit_token1, + ACTIONS(3814), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(3816), 1, + anon_sym_SQUOTE, + ACTIONS(3818), 1, + anon_sym_BQUOTE, + ACTIONS(3820), 1, + anon_sym_COMMA_AT, + ACTIONS(3822), 1, anon_sym_COMMA, + ACTIONS(6062), 1, + anon_sym_POUND, + ACTIONS(6064), 1, + aux_sym__form_token1, + ACTIONS(6068), 1, + aux_sym_char_lit_token1, + ACTIONS(6070), 1, + anon_sym_LBRACE, + ACTIONS(6072), 1, + sym_self_referential_reader_macro, + STATE(1624), 1, + sym_list_lit, + STATE(1625), 1, + sym_sym_lit, + STATE(1631), 1, + sym__bare_set_lit, + STATE(2318), 1, + aux_sym_list_lit_repeat1, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, + sym__metadata_lit, + STATE(2561), 1, + sym_array_dimension, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3812), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(3824), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6066), 3, + anon_sym_DOT, + sym_nil_lit, sym_fancy_literal, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1627), 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, + [76153] = 37, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(135), 1, + anon_sym_COLON, + ACTIONS(137), 1, + anon_sym_COLON_COLON, + ACTIONS(139), 1, + anon_sym_DQUOTE, + ACTIONS(141), 1, + aux_sym_sym_lit_token1, + ACTIONS(160), 1, + anon_sym_POUND_QMARK, + ACTIONS(162), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, anon_sym_cl, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [76821] = 3, + ACTIONS(4282), 1, + aux_sym_num_lit_token1, + ACTIONS(4286), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(4288), 1, + anon_sym_SQUOTE, + ACTIONS(4290), 1, + anon_sym_BQUOTE, + ACTIONS(4292), 1, + anon_sym_COMMA_AT, + ACTIONS(4294), 1, + anon_sym_COMMA, + ACTIONS(6074), 1, + anon_sym_POUND, + ACTIONS(6076), 1, + aux_sym__form_token1, + ACTIONS(6080), 1, + aux_sym_char_lit_token1, + ACTIONS(6082), 1, + anon_sym_LBRACE, + ACTIONS(6084), 1, + sym_self_referential_reader_macro, + STATE(1875), 1, + sym_sym_lit, + STATE(2159), 1, + sym_list_lit, + STATE(2168), 1, + sym__bare_set_lit, + STATE(2329), 1, + aux_sym_list_lit_repeat1, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2426), 1, + sym__metadata_lit, + STATE(2556), 1, + sym_array_dimension, + ACTIONS(183), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(189), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4284), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4298), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6078), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2165), 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, + [76289] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5591), 23, + ACTIONS(6097), 1, + anon_sym_POUND_, + ACTIONS(6094), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(829), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(6102), 20, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -82031,7 +86801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5593), 30, + ACTIONS(6100), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -82062,13 +86832,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [76882] = 3, + [76359] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5595), 23, + ACTIONS(6107), 1, + anon_sym_POUND_, + ACTIONS(6104), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(832), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(6112), 20, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -82089,7 +86865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5597), 30, + ACTIONS(6110), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -82100,7 +86876,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, @@ -82120,13 +86895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [76943] = 3, + [76428] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5599), 23, + ACTIONS(6117), 1, + anon_sym_POUND_, + ACTIONS(6114), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(833), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(6122), 20, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -82147,7 +86928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5601), 30, + ACTIONS(6120), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -82158,7 +86939,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, @@ -82178,10 +86958,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77004] = 3, + [76497] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5603), 23, + STATE(834), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(6124), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -82205,7 +86989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5605), 30, + ACTIONS(6126), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -82216,7 +87000,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, @@ -82236,10 +87019,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77065] = 3, + [76562] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5607), 23, + STATE(834), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(6128), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -82263,7 +87050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5609), 30, + ACTIONS(6130), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -82274,7 +87061,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, @@ -82294,17 +87080,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77126] = 5, + [76627] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5615), 1, - anon_sym_COLON, - ACTIONS(5617), 1, - anon_sym_COLON_COLON, - ACTIONS(5611), 22, + ACTIONS(6135), 1, + anon_sym_POUND_, + ACTIONS(6132), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(834), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(6102), 20, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -82324,17 +87113,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5613), 29, + ACTIONS(6100), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -82354,17 +87143,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77191] = 5, + [76696] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5615), 1, - anon_sym_COLON, - ACTIONS(5617), 1, - anon_sym_COLON_COLON, - ACTIONS(5619), 22, + ACTIONS(6142), 1, + aux_sym_num_lit_token2, + ACTIONS(6138), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -82384,10 +87172,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5621), 29, + ACTIONS(6140), 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, @@ -82414,10 +87203,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77256] = 3, + [76760] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5623), 23, + ACTIONS(6144), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -82441,7 +87230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5625), 30, + ACTIONS(6146), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -82472,12 +87261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77317] = 4, + [76821] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5627), 1, - aux_sym_num_lit_token2, - ACTIONS(5581), 23, + ACTIONS(6148), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -82501,7 +87288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5583), 29, + ACTIONS(6150), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -82512,6 +87299,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, @@ -82531,14 +87319,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77380] = 5, + [76882] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5615), 1, + ACTIONS(6156), 1, anon_sym_COLON, - ACTIONS(5617), 1, + ACTIONS(6158), 1, anon_sym_COLON_COLON, - ACTIONS(5595), 22, + ACTIONS(6152), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -82561,7 +87349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5597), 29, + ACTIONS(6154), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -82591,10 +87379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77445] = 3, + [76947] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5629), 23, + ACTIONS(6160), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -82618,7 +87406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5631), 30, + ACTIONS(6162), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -82649,14 +87437,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77506] = 3, + [77008] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5633), 23, + ACTIONS(6156), 1, + anon_sym_COLON, + ACTIONS(6158), 1, + anon_sym_COLON_COLON, + ACTIONS(6164), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -82676,11 +87467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5635), 30, + ACTIONS(6166), 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, @@ -82707,10 +87497,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77567] = 3, + [77073] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5637), 23, + ACTIONS(6168), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -82734,7 +87524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5639), 30, + ACTIONS(6170), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -82765,10 +87555,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77628] = 3, + [77134] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5641), 23, + ACTIONS(6172), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -82792,7 +87582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5643), 30, + ACTIONS(6174), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -82823,10 +87613,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77689] = 3, + [77195] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5645), 23, + ACTIONS(6176), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -82850,7 +87640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5647), 30, + ACTIONS(6178), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -82881,10 +87671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77750] = 3, + [77256] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5649), 23, + ACTIONS(6180), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -82908,7 +87698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5651), 30, + ACTIONS(6182), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -82939,10 +87729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77811] = 3, + [77317] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5629), 23, + ACTIONS(6184), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -82966,7 +87756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5631), 30, + ACTIONS(6186), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -82997,14 +87787,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77872] = 3, + [77378] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5653), 23, + ACTIONS(6156), 1, + anon_sym_COLON, + ACTIONS(6158), 1, + anon_sym_COLON_COLON, + ACTIONS(6180), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -83024,11 +87817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5655), 30, + ACTIONS(6182), 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, @@ -83055,10 +87847,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77933] = 3, + [77443] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5657), 23, + ACTIONS(6188), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -83082,7 +87874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5659), 30, + ACTIONS(6190), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -83113,10 +87905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [77994] = 3, + [77504] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5661), 23, + ACTIONS(6192), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -83140,7 +87932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5663), 30, + ACTIONS(6194), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -83171,10 +87963,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78055] = 3, + [77565] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5665), 23, + ACTIONS(6196), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -83198,7 +87990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5667), 30, + ACTIONS(6198), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -83229,10 +88021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78116] = 3, + [77626] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5669), 23, + ACTIONS(6200), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -83256,7 +88048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5671), 30, + ACTIONS(6202), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -83287,10 +88079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78177] = 3, + [77687] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5673), 23, + ACTIONS(6204), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -83314,7 +88106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5675), 30, + ACTIONS(6206), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -83345,10 +88137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78238] = 3, + [77748] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5677), 23, + ACTIONS(6208), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -83372,7 +88164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5679), 30, + ACTIONS(6210), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -83403,10 +88195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78299] = 3, + [77809] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5681), 23, + ACTIONS(6188), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -83430,7 +88222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5683), 30, + ACTIONS(6190), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -83461,10 +88253,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78360] = 3, + [77870] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5685), 23, + ACTIONS(6212), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -83488,7 +88280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5687), 30, + ACTIONS(6214), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -83519,10 +88311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78421] = 3, + [77931] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5689), 23, + ACTIONS(6216), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -83546,7 +88338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5691), 30, + ACTIONS(6218), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -83577,10 +88369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78482] = 3, + [77992] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5693), 23, + ACTIONS(6220), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -83604,7 +88396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5695), 30, + ACTIONS(6222), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -83635,10 +88427,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78543] = 3, + [78053] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5629), 23, + ACTIONS(6224), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -83662,7 +88454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5631), 30, + ACTIONS(6226), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -83693,10 +88485,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78604] = 3, + [78114] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5697), 23, + ACTIONS(6228), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -83720,7 +88512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5699), 30, + ACTIONS(6230), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -83751,10 +88543,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78665] = 3, + [78175] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5701), 23, + ACTIONS(6232), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -83778,7 +88570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5703), 30, + ACTIONS(6234), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -83809,10 +88601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78726] = 3, + [78236] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5705), 23, + ACTIONS(6236), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -83836,7 +88628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5707), 30, + ACTIONS(6238), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -83867,10 +88659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78787] = 3, + [78297] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5709), 23, + ACTIONS(6240), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -83894,7 +88686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5711), 30, + ACTIONS(6242), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -83925,10 +88717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78848] = 3, + [78358] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5713), 23, + ACTIONS(6244), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -83952,7 +88744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5715), 30, + ACTIONS(6246), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -83983,10 +88775,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78909] = 3, + [78419] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5717), 23, + ACTIONS(6248), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -84010,7 +88802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5719), 30, + ACTIONS(6250), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -84041,10 +88833,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78970] = 3, + [78480] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5721), 23, + ACTIONS(6252), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -84068,7 +88860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5723), 30, + ACTIONS(6254), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -84099,10 +88891,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79031] = 3, + [78541] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5725), 23, + ACTIONS(6188), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -84126,7 +88918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5727), 30, + ACTIONS(6190), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -84157,10 +88949,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79092] = 3, + [78602] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5729), 23, + ACTIONS(6256), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -84184,7 +88976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5731), 30, + ACTIONS(6258), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -84215,10 +89007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79153] = 3, + [78663] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5733), 23, + ACTIONS(6260), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -84242,7 +89034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5735), 30, + ACTIONS(6262), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -84273,10 +89065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79214] = 3, + [78724] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5737), 23, + ACTIONS(6264), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -84300,7 +89092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5739), 30, + ACTIONS(6266), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -84331,10 +89123,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79275] = 3, + [78785] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5741), 23, + ACTIONS(6268), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -84358,7 +89150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5743), 30, + ACTIONS(6270), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -84389,10 +89181,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79336] = 3, + [78846] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5745), 23, + ACTIONS(6272), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -84416,7 +89208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5747), 30, + ACTIONS(6274), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -84447,10 +89239,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79397] = 3, + [78907] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5749), 23, + ACTIONS(6276), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -84474,7 +89266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5751), 30, + ACTIONS(6278), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -84505,10 +89297,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79458] = 3, + [78968] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5753), 23, + ACTIONS(6280), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -84532,7 +89324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5755), 30, + ACTIONS(6282), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -84563,10 +89355,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79519] = 3, + [79029] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5757), 23, + ACTIONS(6284), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -84590,7 +89382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5759), 30, + ACTIONS(6286), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -84621,10 +89413,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79580] = 3, + [79090] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5761), 23, + ACTIONS(6288), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -84648,7 +89440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5763), 30, + ACTIONS(6290), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -84679,10 +89471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79641] = 3, + [79151] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5765), 23, + ACTIONS(6292), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -84706,7 +89498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5767), 30, + ACTIONS(6294), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -84737,10 +89529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79702] = 3, + [79212] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5769), 23, + ACTIONS(6296), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -84764,7 +89556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5771), 30, + ACTIONS(6298), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -84795,10 +89587,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79763] = 3, + [79273] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5773), 23, + ACTIONS(6300), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -84822,7 +89614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5775), 30, + ACTIONS(6302), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -84853,10 +89645,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79824] = 3, + [79334] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5777), 23, + ACTIONS(6304), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -84880,7 +89672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5779), 30, + ACTIONS(6306), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -84911,10 +89703,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79885] = 3, + [79395] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5781), 23, + ACTIONS(6308), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -84938,7 +89730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5783), 30, + ACTIONS(6310), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -84969,10 +89761,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79946] = 3, + [79456] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5785), 23, + ACTIONS(6312), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -84996,7 +89788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5787), 30, + ACTIONS(6314), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -85027,10 +89819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80007] = 3, + [79517] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5789), 23, + ACTIONS(6316), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -85054,7 +89846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5791), 30, + ACTIONS(6318), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -85085,10 +89877,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80068] = 3, + [79578] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5793), 23, + ACTIONS(6320), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -85112,7 +89904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5795), 30, + ACTIONS(6322), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -85143,10 +89935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80129] = 3, + [79639] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5797), 23, + ACTIONS(6324), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -85170,7 +89962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5799), 30, + ACTIONS(6326), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -85201,10 +89993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80190] = 3, + [79700] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5801), 23, + ACTIONS(6328), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -85228,7 +90020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5803), 30, + ACTIONS(6330), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -85259,10 +90051,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80251] = 3, + [79761] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5805), 23, + ACTIONS(6332), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -85286,7 +90078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5807), 30, + ACTIONS(6334), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -85317,10 +90109,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80312] = 3, + [79822] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5809), 23, + ACTIONS(6336), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -85344,7 +90136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5811), 30, + ACTIONS(6338), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -85375,10 +90167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80373] = 3, + [79883] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5813), 23, + ACTIONS(6340), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -85402,7 +90194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5815), 30, + ACTIONS(6342), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -85433,10 +90225,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80434] = 3, + [79944] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5817), 23, + ACTIONS(6344), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -85460,7 +90252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5819), 30, + ACTIONS(6346), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -85491,10 +90283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80495] = 3, + [80005] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5821), 23, + ACTIONS(6348), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -85518,7 +90310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5823), 30, + ACTIONS(6350), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -85549,10 +90341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80556] = 3, + [80066] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5825), 23, + ACTIONS(6352), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -85576,7 +90368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5827), 30, + ACTIONS(6354), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -85607,10 +90399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80617] = 3, + [80127] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5829), 23, + ACTIONS(6356), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -85634,7 +90426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5831), 30, + ACTIONS(6358), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -85665,10 +90457,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80678] = 3, + [80188] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5833), 23, + ACTIONS(6360), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -85692,7 +90484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5835), 30, + ACTIONS(6362), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -85723,10 +90515,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80739] = 3, + [80249] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5833), 23, + ACTIONS(6364), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -85750,7 +90542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5835), 30, + ACTIONS(6366), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -85781,10 +90573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80800] = 3, + [80310] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5837), 23, + ACTIONS(6368), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -85808,7 +90600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5839), 30, + ACTIONS(6370), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -85839,10 +90631,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80861] = 3, + [80371] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5841), 23, + ACTIONS(6372), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -85866,7 +90658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5843), 30, + ACTIONS(6374), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -85897,10 +90689,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80922] = 3, + [80432] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5845), 23, + ACTIONS(6376), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -85924,7 +90716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5847), 30, + ACTIONS(6378), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -85955,10 +90747,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80983] = 3, + [80493] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5845), 23, + ACTIONS(6380), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -85982,7 +90774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5847), 30, + ACTIONS(6382), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86013,10 +90805,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81044] = 3, + [80554] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5849), 23, + ACTIONS(6384), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86040,7 +90832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5851), 30, + ACTIONS(6386), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86071,10 +90863,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81105] = 3, + [80615] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5853), 23, + ACTIONS(6388), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86098,7 +90890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5855), 30, + ACTIONS(6390), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86129,10 +90921,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81166] = 3, + [80676] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5857), 23, + ACTIONS(6392), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86156,7 +90948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5859), 30, + ACTIONS(6394), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86187,10 +90979,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81227] = 3, + [80737] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5861), 23, + ACTIONS(6392), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86214,7 +91006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5863), 30, + ACTIONS(6394), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86245,14 +91037,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81288] = 3, + [80798] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5857), 23, + ACTIONS(6158), 1, + anon_sym_COLON_COLON, + ACTIONS(6396), 1, + anon_sym_COLON, + ACTIONS(6152), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -86272,11 +91067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5859), 30, + ACTIONS(6154), 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, @@ -86303,10 +91097,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81349] = 3, + [80863] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5861), 23, + ACTIONS(6399), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86330,7 +91124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5863), 30, + ACTIONS(6401), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86361,10 +91155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81410] = 3, + [80924] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5865), 23, + ACTIONS(6403), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86388,7 +91182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5867), 30, + ACTIONS(6405), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86419,10 +91213,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81471] = 3, + [80985] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5869), 23, + ACTIONS(6160), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86446,7 +91240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5871), 30, + ACTIONS(6162), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86477,14 +91271,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81532] = 3, + [81046] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5873), 23, + ACTIONS(6158), 1, + anon_sym_COLON_COLON, + ACTIONS(6407), 1, + anon_sym_COLON, + ACTIONS(6152), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -86504,11 +91301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5875), 30, + ACTIONS(6154), 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, @@ -86535,10 +91331,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81593] = 3, + [81111] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5877), 23, + ACTIONS(6410), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86562,7 +91358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5879), 30, + ACTIONS(6412), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86593,10 +91389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81654] = 3, + [81172] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5881), 23, + ACTIONS(6414), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86620,7 +91416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5883), 30, + ACTIONS(6416), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86651,10 +91447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81715] = 3, + [81233] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5885), 23, + ACTIONS(6418), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86678,7 +91474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5887), 30, + ACTIONS(6420), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86709,10 +91505,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81776] = 3, + [81294] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5885), 23, + ACTIONS(6422), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86736,7 +91532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5887), 30, + ACTIONS(6424), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86767,10 +91563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81837] = 3, + [81355] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5889), 23, + ACTIONS(6418), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86794,7 +91590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5891), 30, + ACTIONS(6420), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86825,10 +91621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81898] = 3, + [81416] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5889), 23, + ACTIONS(6422), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86852,7 +91648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5891), 30, + ACTIONS(6424), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86883,10 +91679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81959] = 3, + [81477] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 23, + ACTIONS(6426), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86910,7 +91706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5895), 30, + ACTIONS(6428), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86941,10 +91737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82020] = 3, + [81538] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5897), 23, + ACTIONS(6430), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86968,7 +91764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5899), 30, + ACTIONS(6432), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86999,10 +91795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82081] = 3, + [81599] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5901), 23, + ACTIONS(6434), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87026,7 +91822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5903), 30, + ACTIONS(6436), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87057,10 +91853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82142] = 3, + [81660] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5905), 23, + ACTIONS(6438), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87084,7 +91880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5907), 30, + ACTIONS(6440), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87115,10 +91911,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82203] = 3, + [81721] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5909), 23, + ACTIONS(6442), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87142,7 +91938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5911), 30, + ACTIONS(6444), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87173,10 +91969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82264] = 3, + [81782] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 23, + ACTIONS(6446), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87200,7 +91996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5915), 30, + ACTIONS(6448), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87231,10 +92027,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82325] = 3, + [81843] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5917), 23, + ACTIONS(6446), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87258,7 +92054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5919), 30, + ACTIONS(6448), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87289,10 +92085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82386] = 3, + [81904] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5921), 23, + ACTIONS(6450), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87316,7 +92112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5923), 30, + ACTIONS(6452), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87347,10 +92143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82447] = 3, + [81965] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5921), 23, + ACTIONS(6450), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87374,7 +92170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5923), 30, + ACTIONS(6452), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87405,10 +92201,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82508] = 3, + [82026] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 23, + ACTIONS(6454), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87432,7 +92228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5915), 30, + ACTIONS(6456), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87463,10 +92259,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82569] = 3, + [82087] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5917), 23, + ACTIONS(6458), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87490,7 +92286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5919), 30, + ACTIONS(6460), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87521,10 +92317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82630] = 3, + [82148] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5921), 23, + ACTIONS(6462), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87548,7 +92344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5923), 30, + ACTIONS(6464), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87579,10 +92375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82691] = 3, + [82209] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5921), 23, + ACTIONS(6466), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87606,7 +92402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5923), 30, + ACTIONS(6468), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87637,10 +92433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82752] = 3, + [82270] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5925), 23, + ACTIONS(6470), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87664,7 +92460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5927), 30, + ACTIONS(6472), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87695,10 +92491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82813] = 3, + [82331] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5929), 23, + ACTIONS(6474), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87722,7 +92518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5931), 30, + ACTIONS(6476), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87753,10 +92549,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82874] = 3, + [82392] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5933), 23, + ACTIONS(6478), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87780,7 +92576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5935), 30, + ACTIONS(6480), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87811,10 +92607,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82935] = 3, + [82453] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5937), 23, + ACTIONS(6482), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87838,7 +92634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5939), 30, + ACTIONS(6484), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87869,10 +92665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82996] = 3, + [82514] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5941), 23, + ACTIONS(6482), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87896,7 +92692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5943), 30, + ACTIONS(6484), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87927,10 +92723,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83057] = 3, + [82575] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5945), 23, + ACTIONS(6474), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87954,7 +92750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5947), 30, + ACTIONS(6476), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87985,10 +92781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83118] = 3, + [82636] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5941), 23, + ACTIONS(6478), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88012,7 +92808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5943), 30, + ACTIONS(6480), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88043,10 +92839,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83179] = 3, + [82697] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5945), 23, + ACTIONS(6482), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88070,7 +92866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5947), 30, + ACTIONS(6484), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88101,10 +92897,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83240] = 3, + [82758] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5949), 23, + ACTIONS(6482), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88128,7 +92924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5951), 30, + ACTIONS(6484), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88159,10 +92955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83301] = 3, + [82819] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5937), 23, + ACTIONS(6486), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88186,7 +92982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5939), 30, + ACTIONS(6488), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88217,10 +93013,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83362] = 3, + [82880] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5941), 23, + ACTIONS(6490), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88244,7 +93040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5943), 30, + ACTIONS(6492), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88275,10 +93071,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83423] = 3, + [82941] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5945), 23, + ACTIONS(6494), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88302,7 +93098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5947), 30, + ACTIONS(6496), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88333,10 +93129,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83484] = 3, + [83002] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5941), 23, + ACTIONS(6498), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88360,7 +93156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5943), 30, + ACTIONS(6500), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88391,10 +93187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83545] = 3, + [83063] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5945), 23, + ACTIONS(6502), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88418,7 +93214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5947), 30, + ACTIONS(6504), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88449,10 +93245,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83606] = 3, + [83124] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5949), 23, + ACTIONS(6506), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88476,7 +93272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5951), 30, + ACTIONS(6508), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88507,10 +93303,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83667] = 3, + [83185] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5953), 23, + ACTIONS(6502), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88534,7 +93330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5955), 30, + ACTIONS(6504), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88565,10 +93361,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83728] = 3, + [83246] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5587), 23, + ACTIONS(6506), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88592,7 +93388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5589), 30, + ACTIONS(6508), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88623,10 +93419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83789] = 3, + [83307] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5587), 23, + ACTIONS(6510), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88650,7 +93446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5589), 30, + ACTIONS(6512), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88681,10 +93477,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83850] = 3, + [83368] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5957), 23, + ACTIONS(6498), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88708,7 +93504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5959), 30, + ACTIONS(6500), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88739,10 +93535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83911] = 3, + [83429] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5961), 23, + ACTIONS(6502), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88766,7 +93562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5963), 30, + ACTIONS(6504), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88797,10 +93593,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83972] = 3, + [83490] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5587), 23, + ACTIONS(6506), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88824,7 +93620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5589), 30, + ACTIONS(6508), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88855,10 +93651,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84033] = 3, + [83551] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5965), 23, + ACTIONS(6502), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88882,7 +93678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5967), 30, + ACTIONS(6504), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88913,10 +93709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84094] = 3, + [83612] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5957), 23, + ACTIONS(6506), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88940,7 +93736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5959), 30, + ACTIONS(6508), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88971,10 +93767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84155] = 3, + [83673] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5961), 23, + ACTIONS(6510), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88998,7 +93794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5963), 30, + ACTIONS(6512), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89029,10 +93825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84216] = 3, + [83734] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5591), 23, + ACTIONS(6514), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89056,7 +93852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5593), 30, + ACTIONS(6516), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89087,10 +93883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84277] = 3, + [83795] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5793), 23, + ACTIONS(6518), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89114,7 +93910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5795), 29, + ACTIONS(6520), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89125,6 +93921,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, @@ -89144,10 +93941,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84337] = 3, + [83856] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5941), 23, + ACTIONS(6518), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89171,7 +93968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5943), 29, + ACTIONS(6520), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89182,6 +93979,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, @@ -89201,10 +93999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84397] = 3, + [83917] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5865), 23, + ACTIONS(6522), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89228,7 +94026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5867), 29, + ACTIONS(6524), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89239,6 +94037,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, @@ -89258,10 +94057,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84457] = 3, + [83978] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5857), 23, + ACTIONS(6526), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89285,7 +94084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5859), 29, + ACTIONS(6528), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89296,6 +94095,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, @@ -89315,10 +94115,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84517] = 3, + [84039] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5841), 23, + ACTIONS(6518), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89342,7 +94142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5843), 29, + ACTIONS(6520), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89353,6 +94153,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, @@ -89372,10 +94173,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84577] = 3, + [84100] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5849), 23, + ACTIONS(6518), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89399,7 +94200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5851), 29, + ACTIONS(6520), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89410,6 +94211,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, @@ -89429,10 +94231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84637] = 3, + [84161] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5869), 23, + ACTIONS(6522), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89456,7 +94258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5871), 29, + ACTIONS(6524), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89467,6 +94269,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, @@ -89486,10 +94289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84697] = 3, + [84222] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5873), 23, + ACTIONS(6526), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89513,7 +94316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5875), 29, + ACTIONS(6528), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89524,6 +94327,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, @@ -89543,10 +94347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84757] = 3, + [84283] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5877), 23, + ACTIONS(6144), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89570,7 +94374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5879), 29, + ACTIONS(6146), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89581,6 +94385,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, @@ -89600,14 +94405,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84817] = 3, + [84344] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5881), 23, + ACTIONS(6158), 1, + anon_sym_COLON_COLON, + ACTIONS(6530), 1, + anon_sym_COLON, + ACTIONS(6152), 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(6154), 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, + [84409] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6158), 1, anon_sym_COLON_COLON, + ACTIONS(6533), 1, + anon_sym_COLON, + ACTIONS(6152), 22, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -89627,17 +94495,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5883), 29, + ACTIONS(6154), 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, + [84474] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6158), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, anon_sym_COLON, + ACTIONS(6152), 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(6154), 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, @@ -89657,10 +94585,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84877] = 3, + [84539] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5885), 23, + ACTIONS(6539), 1, + aux_sym_num_lit_token2, + ACTIONS(6138), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89684,7 +94614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5887), 29, + ACTIONS(6140), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89714,14 +94644,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84937] = 3, + [84602] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5837), 23, + ACTIONS(6158), 1, + anon_sym_COLON_COLON, + ACTIONS(6541), 1, + anon_sym_COLON, + ACTIONS(6152), 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(6154), 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, + [84667] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6158), 1, anon_sym_COLON_COLON, + ACTIONS(6544), 1, + anon_sym_COLON, + ACTIONS(6152), 22, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -89741,17 +94734,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5839), 29, + ACTIONS(6154), 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, + [84732] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6158), 1, + anon_sym_COLON_COLON, + ACTIONS(6547), 1, anon_sym_COLON, + ACTIONS(6152), 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(6154), 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, @@ -89771,10 +94824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84997] = 3, + [84797] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5885), 23, + ACTIONS(6284), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89798,7 +94851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5887), 29, + ACTIONS(6286), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89828,10 +94881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85057] = 3, + [84857] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5889), 23, + ACTIONS(6280), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89855,7 +94908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5891), 29, + ACTIONS(6282), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89885,10 +94938,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85117] = 3, + [84917] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5833), 23, + ACTIONS(6144), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89912,7 +94965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5835), 29, + ACTIONS(6146), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89942,10 +94995,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85177] = 3, + [84977] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5861), 23, + ACTIONS(6144), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89969,7 +95022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5863), 29, + ACTIONS(6146), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89999,10 +95052,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85237] = 3, + [85037] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5889), 23, + ACTIONS(6526), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90026,7 +95079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5891), 29, + ACTIONS(6528), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90056,10 +95109,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85297] = 3, + [85097] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 23, + ACTIONS(6522), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90083,7 +95136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5895), 29, + ACTIONS(6524), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90113,10 +95166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85357] = 3, + [85157] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5833), 23, + ACTIONS(6148), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90140,7 +95193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5835), 29, + ACTIONS(6150), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90170,10 +95223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85417] = 3, + [85217] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5829), 23, + ACTIONS(6518), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90197,7 +95250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5831), 29, + ACTIONS(6520), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90227,10 +95280,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85477] = 3, + [85277] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5825), 23, + ACTIONS(6550), 1, + anon_sym_COLON, + ACTIONS(6552), 1, + anon_sym_COLON_COLON, + ACTIONS(6152), 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(6154), 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, + [85341] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6550), 1, + anon_sym_COLON, + ACTIONS(6552), 1, + anon_sym_COLON_COLON, + ACTIONS(6164), 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(6166), 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, + [85405] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6380), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90254,7 +95425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5827), 29, + ACTIONS(6382), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90284,10 +95455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85537] = 3, + [85465] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5821), 23, + ACTIONS(6368), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90311,7 +95482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5823), 29, + ACTIONS(6370), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90341,10 +95512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85597] = 3, + [85525] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5817), 23, + ACTIONS(6364), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90368,7 +95539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5819), 29, + ACTIONS(6366), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90398,10 +95569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85657] = 3, + [85585] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5813), 23, + ACTIONS(6340), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90425,7 +95596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5815), 29, + ACTIONS(6342), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90455,10 +95626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85717] = 3, + [85645] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5897), 23, + ACTIONS(6360), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90482,7 +95653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5899), 29, + ACTIONS(6362), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90512,10 +95683,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85777] = 3, + [85705] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5809), 23, + ACTIONS(6372), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90539,7 +95710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5811), 29, + ACTIONS(6374), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90569,10 +95740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85837] = 3, + [85765] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5805), 23, + ACTIONS(6168), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90596,7 +95767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5807), 29, + ACTIONS(6170), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90626,10 +95797,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85897] = 3, + [85825] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5801), 23, + ACTIONS(6518), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90653,7 +95824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5803), 29, + ACTIONS(6520), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90683,10 +95854,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85957] = 3, + [85885] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5797), 23, + ACTIONS(6376), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90710,7 +95881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5799), 29, + ACTIONS(6378), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90740,10 +95911,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86017] = 3, + [85945] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5901), 23, + ACTIONS(6172), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90767,7 +95938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5903), 29, + ACTIONS(6174), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90797,10 +95968,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86077] = 3, + [86005] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5905), 23, + ACTIONS(6352), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90824,7 +95995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5907), 29, + ACTIONS(6354), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90854,10 +96025,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86137] = 3, + [86065] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5789), 23, + ACTIONS(6348), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90881,7 +96052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5791), 29, + ACTIONS(6350), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90911,10 +96082,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86197] = 3, + [86125] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5845), 23, + ACTIONS(6176), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90938,7 +96109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5847), 29, + ACTIONS(6178), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90968,10 +96139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86257] = 3, + [86185] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5785), 23, + ACTIONS(6526), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90995,7 +96166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5787), 29, + ACTIONS(6528), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91025,10 +96196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86317] = 3, + [86245] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5909), 23, + ACTIONS(6180), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91052,7 +96223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5911), 29, + ACTIONS(6182), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91082,10 +96253,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86377] = 3, + [86305] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5781), 23, + ACTIONS(6522), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91109,7 +96280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5783), 29, + ACTIONS(6524), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91139,10 +96310,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86437] = 3, + [86365] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5845), 23, + ACTIONS(6518), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91166,7 +96337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5847), 29, + ACTIONS(6520), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91196,10 +96367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86497] = 3, + [86425] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 23, + ACTIONS(6184), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91223,7 +96394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5915), 29, + ACTIONS(6186), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91253,10 +96424,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86557] = 3, + [86485] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5953), 23, + ACTIONS(6550), 1, + anon_sym_COLON, + ACTIONS(6552), 1, + anon_sym_COLON_COLON, + ACTIONS(6180), 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(6182), 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, + [86549] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6518), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91280,7 +96510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5955), 29, + ACTIONS(6520), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91310,10 +96540,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86617] = 3, + [86609] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5917), 23, + ACTIONS(6356), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91337,7 +96567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5919), 29, + ACTIONS(6358), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91367,10 +96597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86677] = 3, + [86669] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5857), 23, + ACTIONS(6188), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91394,7 +96624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5859), 29, + ACTIONS(6190), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91424,10 +96654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86737] = 3, + [86729] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5921), 23, + ACTIONS(6514), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91451,7 +96681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5923), 29, + ACTIONS(6516), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91481,10 +96711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86797] = 3, + [86789] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5921), 23, + ACTIONS(6510), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91508,7 +96738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5923), 29, + ACTIONS(6512), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91538,10 +96768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86857] = 3, + [86849] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 23, + ACTIONS(6506), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91565,7 +96795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5915), 29, + ACTIONS(6508), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91595,10 +96825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86917] = 3, + [86909] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5917), 23, + ACTIONS(6502), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91622,7 +96852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5919), 29, + ACTIONS(6504), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91652,10 +96882,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86977] = 3, + [86969] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5921), 23, + ACTIONS(6192), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91679,7 +96909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5923), 29, + ACTIONS(6194), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91709,10 +96939,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87037] = 3, + [87029] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5777), 23, + ACTIONS(6196), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91736,7 +96966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5779), 29, + ACTIONS(6198), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91766,10 +96996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87097] = 3, + [87089] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5623), 23, + ACTIONS(6200), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91793,7 +97023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5625), 29, + ACTIONS(6202), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91823,10 +97053,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87157] = 3, + [87149] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5921), 23, + ACTIONS(6506), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91850,7 +97080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5923), 29, + ACTIONS(6508), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91880,10 +97110,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87217] = 3, + [87209] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5773), 23, + ACTIONS(6204), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91907,7 +97137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5775), 29, + ACTIONS(6206), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91937,10 +97167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87277] = 3, + [87269] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5591), 23, + ACTIONS(6208), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91964,7 +97194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5593), 29, + ACTIONS(6210), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91994,10 +97224,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87337] = 3, + [87329] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5769), 23, + ACTIONS(6188), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92021,7 +97251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5771), 29, + ACTIONS(6190), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92051,10 +97281,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87397] = 3, + [87389] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5765), 23, + ACTIONS(6212), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92078,7 +97308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5767), 29, + ACTIONS(6214), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92108,10 +97338,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87457] = 3, + [87449] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5761), 23, + ACTIONS(6502), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92135,7 +97365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5763), 29, + ACTIONS(6504), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92165,10 +97395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87517] = 3, + [87509] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5925), 23, + ACTIONS(6498), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92192,7 +97422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5927), 29, + ACTIONS(6500), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92222,10 +97452,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87577] = 3, + [87569] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5929), 23, + ACTIONS(6216), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92249,7 +97479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5931), 29, + ACTIONS(6218), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92279,10 +97509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87637] = 3, + [87629] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5757), 23, + ACTIONS(6220), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92306,7 +97536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5759), 29, + ACTIONS(6222), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92336,10 +97566,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87697] = 3, + [87689] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5753), 23, + ACTIONS(6224), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92363,7 +97593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5755), 29, + ACTIONS(6226), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92393,10 +97623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87757] = 3, + [87749] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5749), 23, + ACTIONS(6228), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92420,7 +97650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5751), 29, + ACTIONS(6230), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92450,10 +97680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87817] = 3, + [87809] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5745), 23, + ACTIONS(6384), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92477,7 +97707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5747), 29, + ACTIONS(6386), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92507,10 +97737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87877] = 3, + [87869] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5741), 23, + ACTIONS(6510), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92534,7 +97764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5743), 29, + ACTIONS(6512), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92564,10 +97794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87937] = 3, + [87929] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5737), 23, + ACTIONS(6506), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92591,7 +97821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5739), 29, + ACTIONS(6508), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92621,10 +97851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87997] = 3, + [87989] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5733), 23, + ACTIONS(6232), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92648,7 +97878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5735), 29, + ACTIONS(6234), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92678,10 +97908,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88057] = 3, + [88049] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5729), 23, + ACTIONS(6502), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92705,7 +97935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5731), 29, + ACTIONS(6504), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92735,10 +97965,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88117] = 3, + [88109] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5725), 23, + ACTIONS(6236), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92762,7 +97992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5727), 29, + ACTIONS(6238), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92792,10 +98022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88177] = 3, + [88169] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5721), 23, + ACTIONS(6240), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92819,7 +98049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5723), 29, + ACTIONS(6242), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92849,10 +98079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88237] = 3, + [88229] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5933), 23, + ACTIONS(6506), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92876,7 +98106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5935), 29, + ACTIONS(6508), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92906,10 +98136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88297] = 3, + [88289] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5937), 23, + ACTIONS(6502), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92933,7 +98163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5939), 29, + ACTIONS(6504), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92963,10 +98193,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88357] = 3, + [88349] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5717), 23, + ACTIONS(6244), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92990,7 +98220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5719), 29, + ACTIONS(6246), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93020,10 +98250,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88417] = 3, + [88409] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5713), 23, + ACTIONS(6248), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93047,7 +98277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5715), 29, + ACTIONS(6250), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93077,10 +98307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88477] = 3, + [88469] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5709), 23, + ACTIONS(6252), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93104,7 +98334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5711), 29, + ACTIONS(6254), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93134,10 +98364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88537] = 3, + [88529] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5591), 23, + ACTIONS(6188), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93161,7 +98391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5593), 29, + ACTIONS(6190), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93191,10 +98421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88597] = 3, + [88589] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5705), 23, + ACTIONS(6498), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93218,7 +98448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5707), 29, + ACTIONS(6500), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93248,10 +98478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88657] = 3, + [88649] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5945), 23, + ACTIONS(6494), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93275,7 +98505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5947), 29, + ACTIONS(6496), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93305,10 +98535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88717] = 3, + [88709] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5701), 23, + ACTIONS(6256), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93332,7 +98562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5703), 29, + ACTIONS(6258), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93362,10 +98592,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88777] = 3, + [88769] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5941), 23, + ACTIONS(6260), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93389,7 +98619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5943), 29, + ACTIONS(6262), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93419,10 +98649,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88837] = 3, + [88829] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5945), 23, + ACTIONS(6264), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93446,7 +98676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5947), 29, + ACTIONS(6266), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93476,10 +98706,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88897] = 3, + [88889] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5949), 23, + ACTIONS(6268), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93503,7 +98733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5951), 29, + ACTIONS(6270), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93533,10 +98763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88957] = 3, + [88949] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5697), 23, + ACTIONS(6272), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93560,7 +98790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5699), 29, + ACTIONS(6274), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93590,10 +98820,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89017] = 3, + [89009] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5629), 23, + ACTIONS(6276), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93617,7 +98847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5631), 29, + ACTIONS(6278), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93647,10 +98877,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89077] = 3, + [89069] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5961), 23, + ACTIONS(6344), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93674,7 +98904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5963), 29, + ACTIONS(6346), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93704,10 +98934,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89137] = 3, + [89129] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5693), 23, + ACTIONS(6490), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93731,7 +98961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5695), 29, + ACTIONS(6492), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93761,10 +98991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89197] = 3, + [89189] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5689), 23, + ACTIONS(6288), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93788,7 +99018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5691), 29, + ACTIONS(6290), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93818,10 +99048,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89257] = 3, + [89249] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5685), 23, + ACTIONS(6486), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93845,7 +99075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5687), 29, + ACTIONS(6488), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93875,10 +99105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89317] = 3, + [89309] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5937), 23, + ACTIONS(6292), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93902,7 +99132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5939), 29, + ACTIONS(6294), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93932,10 +99162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89377] = 3, + [89369] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5941), 23, + ACTIONS(6388), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93959,7 +99189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5943), 29, + ACTIONS(6390), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93989,17 +99219,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89437] = 5, + [89429] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5969), 1, + ACTIONS(6392), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6394), 29, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, anon_sym_COLON, - ACTIONS(5971), 1, + 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, + [89489] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6296), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON_COLON, - ACTIONS(5619), 22, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6298), 29, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [89549] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6300), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -94019,10 +99360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5621), 28, + ACTIONS(6302), 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, @@ -94048,10 +99390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89501] = 3, + [89609] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5945), 23, + ACTIONS(6304), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94075,7 +99417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5947), 29, + ACTIONS(6306), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94105,10 +99447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89561] = 3, + [89669] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5941), 23, + ACTIONS(6308), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94132,7 +99474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5943), 29, + ACTIONS(6310), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94162,10 +99504,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89621] = 3, + [89729] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5681), 23, + ACTIONS(6312), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94189,7 +99531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5683), 29, + ACTIONS(6314), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94219,10 +99561,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89681] = 3, + [89789] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5945), 23, + ACTIONS(6316), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94246,7 +99588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5947), 29, + ACTIONS(6318), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94276,10 +99618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89741] = 3, + [89849] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5677), 23, + ACTIONS(6320), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94303,7 +99645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5679), 29, + ACTIONS(6322), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94333,10 +99675,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89801] = 3, + [89909] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5949), 23, + ACTIONS(6324), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94360,7 +99702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5951), 29, + ACTIONS(6326), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94390,10 +99732,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89861] = 3, + [89969] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5861), 23, + ACTIONS(6328), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94417,7 +99759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5863), 29, + ACTIONS(6330), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94447,10 +99789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89921] = 3, + [90029] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5587), 23, + ACTIONS(6482), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94474,7 +99816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5589), 29, + ACTIONS(6484), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94504,10 +99846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89981] = 3, + [90089] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5673), 23, + ACTIONS(6482), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94531,7 +99873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5675), 29, + ACTIONS(6484), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94561,10 +99903,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90041] = 3, + [90149] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5587), 23, + ACTIONS(6478), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94588,7 +99930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5589), 29, + ACTIONS(6480), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94618,10 +99960,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90101] = 3, + [90209] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5957), 23, + ACTIONS(6474), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94645,7 +99987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5959), 29, + ACTIONS(6476), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94675,10 +100017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90161] = 3, + [90269] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5853), 23, + ACTIONS(6392), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94702,7 +100044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5855), 29, + ACTIONS(6394), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94732,10 +100074,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90221] = 3, + [90329] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5669), 23, + ACTIONS(6332), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94759,7 +100101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5671), 29, + ACTIONS(6334), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94789,17 +100131,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90281] = 5, + [90389] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5969), 1, + ACTIONS(6482), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6484), 29, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, anon_sym_COLON, - ACTIONS(5971), 1, + 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, + [90449] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6336), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON_COLON, - ACTIONS(5611), 22, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6338), 29, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [90509] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6482), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -94819,10 +100272,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5613), 28, + ACTIONS(6484), 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, @@ -94848,10 +100302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90345] = 3, + [90569] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5665), 23, + ACTIONS(6478), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94875,7 +100329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5667), 29, + ACTIONS(6480), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94905,10 +100359,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90405] = 3, + [90629] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5961), 23, + ACTIONS(6399), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94932,7 +100386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5963), 29, + ACTIONS(6401), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94962,10 +100416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90465] = 3, + [90689] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5661), 23, + ACTIONS(6474), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94989,7 +100443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5663), 29, + ACTIONS(6476), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95019,10 +100473,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90525] = 3, + [90749] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5657), 23, + ACTIONS(6470), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95046,7 +100500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5659), 29, + ACTIONS(6472), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95076,10 +100530,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90585] = 3, + [90809] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5653), 23, + ACTIONS(6466), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95103,7 +100557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5655), 29, + ACTIONS(6468), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95133,10 +100587,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90645] = 3, + [90869] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5587), 23, + ACTIONS(6403), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95160,7 +100614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5589), 29, + ACTIONS(6405), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95190,10 +100644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90705] = 3, + [90929] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5629), 23, + ACTIONS(6160), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95217,7 +100671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5631), 29, + ACTIONS(6162), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95247,10 +100701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90765] = 3, + [90989] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5649), 23, + ACTIONS(6462), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95274,7 +100728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5651), 29, + ACTIONS(6464), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95304,10 +100758,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90825] = 3, + [91049] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5587), 23, + ACTIONS(6458), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95331,7 +100785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5589), 29, + ACTIONS(6460), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95361,10 +100815,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90885] = 3, + [91109] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5645), 23, + ACTIONS(6454), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95388,7 +100842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5647), 29, + ACTIONS(6456), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95418,10 +100872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90945] = 3, + [91169] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5641), 23, + ACTIONS(6450), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95445,7 +100899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5643), 29, + ACTIONS(6452), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95475,10 +100929,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91005] = 3, + [91229] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5637), 23, + ACTIONS(6450), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95502,7 +100956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5639), 29, + ACTIONS(6452), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95532,10 +100986,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91065] = 3, + [91289] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5633), 23, + ACTIONS(6446), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95559,7 +101013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5635), 29, + ACTIONS(6448), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95589,10 +101043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91125] = 3, + [91349] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5629), 23, + ACTIONS(6160), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95616,7 +101070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5631), 29, + ACTIONS(6162), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95646,17 +101100,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91185] = 5, + [91409] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5969), 1, + ACTIONS(6446), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6448), 29, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, anon_sym_COLON, - ACTIONS(5971), 1, + 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, + [91469] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6442), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON_COLON, - ACTIONS(5595), 22, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6444), 29, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [91529] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6438), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -95676,10 +101241,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5597), 28, + ACTIONS(6440), 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, @@ -95705,10 +101271,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91249] = 3, + [91589] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5965), 23, + ACTIONS(6434), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95732,7 +101298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5967), 29, + ACTIONS(6436), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95762,10 +101328,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91309] = 3, + [91649] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5595), 23, + ACTIONS(6430), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95789,7 +101355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5597), 29, + ACTIONS(6432), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95819,10 +101385,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91369] = 3, + [91709] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5957), 23, + ACTIONS(6426), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95846,7 +101412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5959), 29, + ACTIONS(6428), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95876,10 +101442,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91429] = 3, + [91769] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5599), 23, + ACTIONS(6410), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95903,7 +101469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5601), 29, + ACTIONS(6412), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95933,10 +101499,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91489] = 3, + [91829] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5603), 23, + ACTIONS(6422), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95960,7 +101526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5605), 29, + ACTIONS(6424), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95990,10 +101556,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91549] = 3, + [91889] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5607), 23, + ACTIONS(6418), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -96017,7 +101583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5609), 29, + ACTIONS(6420), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -96047,19 +101613,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91609] = 6, + [91949] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5976), 1, + ACTIONS(6422), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6424), 29, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [92009] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6418), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6420), 29, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [92069] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6414), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6416), 29, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [92129] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6557), 1, anon_sym_POUND_, - ACTIONS(5973), 2, + ACTIONS(6554), 2, sym__ws, sym_comment, - STATE(1025), 3, + STATE(1089), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(5545), 20, + ACTIONS(6102), 20, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -96080,7 +101817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(131), 25, + ACTIONS(6100), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -96106,32 +101843,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [91674] = 12, + [92194] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5982), 1, + ACTIONS(6563), 1, anon_sym_POUND_, - ACTIONS(5987), 1, + ACTIONS(6568), 1, anon_sym_cl, - ACTIONS(5990), 1, + ACTIONS(6571), 1, anon_sym_do, STATE(293), 1, sym_for_clause_word, - STATE(1034), 1, + STATE(1102), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(2359), 2, + ACTIONS(2948), 2, anon_sym_in, anon_sym_being, - ACTIONS(5979), 2, + ACTIONS(6560), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 14, + ACTIONS(2950), 14, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -96146,7 +101883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(5985), 22, + ACTIONS(6566), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -96169,32 +101906,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91749] = 12, + [92269] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5995), 1, + ACTIONS(6576), 1, anon_sym_POUND_, - ACTIONS(6000), 1, + ACTIONS(6581), 1, anon_sym_cl, - ACTIONS(6003), 1, + ACTIONS(6584), 1, anon_sym_do, STATE(293), 1, sym_for_clause_word, - STATE(1034), 1, + STATE(1102), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(2359), 2, + ACTIONS(2948), 2, anon_sym_in, anon_sym_being, - ACTIONS(5992), 2, + ACTIONS(6573), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 14, + ACTIONS(2950), 14, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -96209,7 +101946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(5998), 22, + ACTIONS(6579), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -96232,32 +101969,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91824] = 12, + [92344] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5995), 1, + ACTIONS(6589), 1, anon_sym_POUND_, - ACTIONS(6000), 1, + ACTIONS(6594), 1, anon_sym_cl, - ACTIONS(6003), 1, + ACTIONS(6597), 1, anon_sym_do, STATE(293), 1, sym_for_clause_word, - STATE(1034), 1, + STATE(1102), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(2359), 2, + ACTIONS(2948), 2, anon_sym_in, anon_sym_being, - ACTIONS(5992), 2, + ACTIONS(6586), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 14, + ACTIONS(2950), 14, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -96272,7 +102009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(5998), 22, + ACTIONS(6592), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -96295,32 +102032,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91899] = 12, + [92419] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6008), 1, + ACTIONS(6602), 1, anon_sym_POUND_, - ACTIONS(6013), 1, + ACTIONS(6607), 1, anon_sym_cl, - ACTIONS(6016), 1, + ACTIONS(6610), 1, anon_sym_do, STATE(293), 1, sym_for_clause_word, - STATE(1034), 1, + STATE(1102), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(2359), 2, + ACTIONS(2948), 2, anon_sym_in, anon_sym_being, - ACTIONS(6005), 2, + ACTIONS(6599), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 14, + ACTIONS(2950), 14, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -96335,7 +102072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(6011), 22, + ACTIONS(6605), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -96358,32 +102095,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91974] = 12, + [92494] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6021), 1, + ACTIONS(6615), 1, anon_sym_POUND_, - ACTIONS(6026), 1, + ACTIONS(6620), 1, anon_sym_cl, - ACTIONS(6029), 1, + ACTIONS(6623), 1, anon_sym_do, STATE(293), 1, sym_for_clause_word, - STATE(1034), 1, + STATE(1102), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(2359), 2, + ACTIONS(2948), 2, anon_sym_in, anon_sym_being, - ACTIONS(6018), 2, + ACTIONS(6612), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 14, + ACTIONS(2950), 14, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -96398,7 +102135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(6024), 22, + ACTIONS(6618), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -96421,32 +102158,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92049] = 12, + [92569] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6034), 1, + ACTIONS(6628), 1, anon_sym_POUND_, - ACTIONS(6039), 1, + ACTIONS(6633), 1, anon_sym_cl, - ACTIONS(6042), 1, + ACTIONS(6636), 1, anon_sym_do, STATE(293), 1, sym_for_clause_word, - STATE(1034), 1, + STATE(1102), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(2359), 2, + ACTIONS(2948), 2, anon_sym_in, anon_sym_being, - ACTIONS(6031), 2, + ACTIONS(6625), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 14, + ACTIONS(2950), 14, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -96461,7 +102198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(6037), 22, + ACTIONS(6631), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -96484,32 +102221,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92124] = 12, + [92644] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6034), 1, + ACTIONS(6641), 1, anon_sym_POUND_, - ACTIONS(6039), 1, + ACTIONS(6646), 1, anon_sym_cl, - ACTIONS(6042), 1, + ACTIONS(6649), 1, anon_sym_do, STATE(293), 1, sym_for_clause_word, - STATE(1034), 1, + STATE(1102), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(2359), 2, + ACTIONS(2948), 2, anon_sym_in, anon_sym_being, - ACTIONS(6031), 2, + ACTIONS(6638), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 14, + ACTIONS(2950), 14, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -96524,7 +102261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(6037), 22, + ACTIONS(6644), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -96547,32 +102284,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92199] = 12, + [92719] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6047), 1, + ACTIONS(6654), 1, anon_sym_POUND_, - ACTIONS(6052), 1, + ACTIONS(6659), 1, anon_sym_cl, - ACTIONS(6055), 1, + ACTIONS(6662), 1, anon_sym_do, STATE(293), 1, sym_for_clause_word, - STATE(1034), 1, + STATE(1102), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(2359), 2, + ACTIONS(2948), 2, anon_sym_in, anon_sym_being, - ACTIONS(6044), 2, + ACTIONS(6651), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 14, + ACTIONS(2950), 14, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -96587,7 +102324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(6050), 22, + ACTIONS(6657), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -96610,32 +102347,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92274] = 12, + [92794] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6060), 1, + ACTIONS(6654), 1, anon_sym_POUND_, - ACTIONS(6065), 1, + ACTIONS(6659), 1, anon_sym_cl, - ACTIONS(6074), 1, + ACTIONS(6662), 1, anon_sym_do, STATE(293), 1, sym_for_clause_word, - STATE(1034), 1, + STATE(1102), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(6057), 2, - sym__ws, - sym_comment, - ACTIONS(6068), 2, + ACTIONS(2948), 2, anon_sym_in, anon_sym_being, - STATE(2072), 3, + ACTIONS(6651), 2, + sym__ws, + sym_comment, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(6071), 14, + ACTIONS(2950), 14, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -96650,7 +102387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(6063), 22, + ACTIONS(6657), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -96673,32 +102410,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92349] = 12, + [92869] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6079), 1, + ACTIONS(6641), 1, anon_sym_POUND_, - ACTIONS(6084), 1, + ACTIONS(6646), 1, anon_sym_cl, - ACTIONS(6087), 1, + ACTIONS(6649), 1, anon_sym_do, STATE(293), 1, sym_for_clause_word, - STATE(1034), 1, + STATE(1102), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(2359), 2, + ACTIONS(2948), 2, anon_sym_in, anon_sym_being, - ACTIONS(6076), 2, + ACTIONS(6638), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 14, + ACTIONS(2950), 14, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -96713,7 +102450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(6082), 22, + ACTIONS(6644), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -96736,32 +102473,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92424] = 12, + [92944] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6092), 1, + ACTIONS(6667), 1, anon_sym_POUND_, - ACTIONS(6097), 1, + ACTIONS(6672), 1, anon_sym_cl, - ACTIONS(6100), 1, + ACTIONS(6675), 1, anon_sym_do, STATE(293), 1, sym_for_clause_word, - STATE(1034), 1, + STATE(1102), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(2359), 2, + ACTIONS(2948), 2, anon_sym_in, anon_sym_being, - ACTIONS(6089), 2, + ACTIONS(6664), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 14, + ACTIONS(2950), 14, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -96776,7 +102513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(6095), 22, + ACTIONS(6670), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -96799,32 +102536,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92499] = 12, + [93019] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6105), 1, + ACTIONS(6680), 1, anon_sym_POUND_, - ACTIONS(6110), 1, + ACTIONS(6685), 1, anon_sym_cl, - ACTIONS(6113), 1, + ACTIONS(6688), 1, anon_sym_do, STATE(293), 1, sym_for_clause_word, - STATE(1034), 1, + STATE(1102), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(2359), 2, + ACTIONS(2948), 2, anon_sym_in, anon_sym_being, - ACTIONS(6102), 2, + ACTIONS(6677), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 14, + ACTIONS(2950), 14, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -96839,7 +102576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(6108), 22, + ACTIONS(6683), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -96862,32 +102599,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92574] = 12, + [93094] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6092), 1, + ACTIONS(6693), 1, anon_sym_POUND_, - ACTIONS(6097), 1, + ACTIONS(6698), 1, anon_sym_cl, - ACTIONS(6100), 1, + ACTIONS(6707), 1, anon_sym_do, STATE(293), 1, sym_for_clause_word, - STATE(1034), 1, + STATE(1102), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(2359), 2, - anon_sym_in, - anon_sym_being, - ACTIONS(6089), 2, + ACTIONS(6690), 2, sym__ws, sym_comment, - STATE(2072), 3, + ACTIONS(6701), 2, + anon_sym_in, + anon_sym_being, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 14, + ACTIONS(6704), 14, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -96902,7 +102639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(6095), 22, + ACTIONS(6696), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -96925,32 +102662,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92649] = 12, + [93169] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6047), 1, + ACTIONS(6576), 1, anon_sym_POUND_, - ACTIONS(6052), 1, + ACTIONS(6581), 1, anon_sym_cl, - ACTIONS(6055), 1, + ACTIONS(6584), 1, anon_sym_do, STATE(293), 1, sym_for_clause_word, - STATE(1034), 1, + STATE(1102), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(2359), 2, + ACTIONS(2948), 2, anon_sym_in, anon_sym_being, - ACTIONS(6044), 2, + ACTIONS(6573), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 14, + ACTIONS(2950), 14, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -96965,7 +102702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(6050), 22, + ACTIONS(6579), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -96988,32 +102725,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92724] = 12, + [93244] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6008), 1, + ACTIONS(6712), 1, anon_sym_POUND_, - ACTIONS(6013), 1, + ACTIONS(6717), 1, anon_sym_cl, - ACTIONS(6016), 1, + ACTIONS(6720), 1, anon_sym_do, STATE(293), 1, sym_for_clause_word, - STATE(1034), 1, + STATE(1102), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(2359), 2, + ACTIONS(2948), 2, anon_sym_in, anon_sym_being, - ACTIONS(6005), 2, + ACTIONS(6709), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 14, + ACTIONS(2950), 14, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -97028,7 +102765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(6011), 22, + ACTIONS(6715), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -97051,32 +102788,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92799] = 12, + [93319] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6118), 1, + ACTIONS(6712), 1, anon_sym_POUND_, - ACTIONS(6123), 1, + ACTIONS(6717), 1, anon_sym_cl, - ACTIONS(6126), 1, + ACTIONS(6720), 1, anon_sym_do, STATE(293), 1, sym_for_clause_word, - STATE(1034), 1, + STATE(1102), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(2359), 2, + ACTIONS(2948), 2, anon_sym_in, anon_sym_being, - ACTIONS(6115), 2, + ACTIONS(6709), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 14, + ACTIONS(2950), 14, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -97091,7 +102828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(6121), 22, + ACTIONS(6715), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -97114,32 +102851,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92874] = 12, + [93394] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6722), 1, + aux_sym_num_lit_token2, + ACTIONS(6138), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6140), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [93453] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6131), 1, + ACTIONS(6563), 1, anon_sym_POUND_, - ACTIONS(6136), 1, + ACTIONS(6568), 1, anon_sym_cl, - ACTIONS(6139), 1, + ACTIONS(6571), 1, anon_sym_do, STATE(293), 1, sym_for_clause_word, - STATE(1034), 1, + STATE(1102), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(2359), 2, + ACTIONS(2948), 2, anon_sym_in, anon_sym_being, - ACTIONS(6128), 2, + ACTIONS(6560), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 14, + ACTIONS(2950), 14, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -97154,7 +102946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(6134), 22, + ACTIONS(6566), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -97177,32 +102969,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92949] = 12, + [93528] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6118), 1, + ACTIONS(6727), 1, anon_sym_POUND_, - ACTIONS(6123), 1, + ACTIONS(6732), 1, anon_sym_cl, - ACTIONS(6126), 1, + ACTIONS(6735), 1, anon_sym_do, STATE(293), 1, sym_for_clause_word, - STATE(1034), 1, + STATE(1102), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(2359), 2, + ACTIONS(2948), 2, anon_sym_in, anon_sym_being, - ACTIONS(6115), 2, + ACTIONS(6724), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 14, + ACTIONS(2950), 14, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -97217,7 +103009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(6121), 22, + ACTIONS(6730), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -97240,32 +103032,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93024] = 12, + [93603] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6144), 1, + ACTIONS(6602), 1, anon_sym_POUND_, - ACTIONS(6149), 1, + ACTIONS(6607), 1, anon_sym_cl, - ACTIONS(6152), 1, + ACTIONS(6610), 1, anon_sym_do, STATE(293), 1, sym_for_clause_word, - STATE(1034), 1, + STATE(1102), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(2359), 2, + ACTIONS(2948), 2, anon_sym_in, anon_sym_being, - ACTIONS(6141), 2, + ACTIONS(6599), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 14, + ACTIONS(2950), 14, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -97280,7 +103072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(6147), 22, + ACTIONS(6605), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -97303,12 +103095,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93099] = 4, + [93678] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6154), 1, - aux_sym_num_lit_token2, - ACTIONS(5581), 23, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6745), 1, + anon_sym_RPAREN, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6737), 2, + sym__ws, + sym_comment, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1145), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [93780] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6506), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -97332,7 +103198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5583), 25, + ACTIONS(6508), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -97358,73 +103224,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [93158] = 26, + [93836] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(6486), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(6158), 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(6488), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [93892] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6482), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6164), 1, - anon_sym_RPAREN, - ACTIONS(6166), 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(6484), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(6168), 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [93948] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, + ACTIONS(6753), 1, anon_sym_and, - ACTIONS(6174), 1, + ACTIONS(6755), 1, anon_sym_with, - ACTIONS(6176), 1, + ACTIONS(6757), 1, anon_sym_do, - ACTIONS(6180), 1, + ACTIONS(6761), 1, anon_sym_repeat, - ACTIONS(6184), 1, + ACTIONS(6765), 1, anon_sym_else, - STATE(437), 1, + ACTIONS(6771), 1, + anon_sym_RPAREN, + STATE(583), 1, sym_accumulation_verb, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2394), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, aux_sym_list_lit_repeat1, - ACTIONS(6156), 2, - sym__ws, - sym_comment, - ACTIONS(6170), 2, + ACTIONS(6751), 2, anon_sym_for, anon_sym_as, - ACTIONS(6178), 2, + ACTIONS(6759), 2, anon_sym_while, anon_sym_until, - ACTIONS(6186), 3, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1158), 4, + STATE(1251), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + ACTIONS(6763), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, + STATE(2256), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -97434,301 +103406,126 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [93260] = 26, + [94050] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6190), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6188), 2, + ACTIONS(6482), 23, sym__ws, sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [93362] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, anon_sym_POUND_, - ACTIONS(6160), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6194), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6192), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1215), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [93464] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 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(6484), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6198), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6196), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1057), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [93566] = 26, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [94106] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6739), 1, anon_sym_POUND_, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + ACTIONS(6747), 1, anon_sym_cl, - ACTIONS(6168), 1, + ACTIONS(6749), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, + ACTIONS(6753), 1, anon_sym_and, - ACTIONS(6174), 1, + ACTIONS(6755), 1, anon_sym_with, - ACTIONS(6176), 1, + ACTIONS(6757), 1, anon_sym_do, - ACTIONS(6180), 1, + ACTIONS(6761), 1, anon_sym_repeat, - ACTIONS(6184), 1, + ACTIONS(6765), 1, anon_sym_else, - ACTIONS(6202), 1, + ACTIONS(6775), 1, anon_sym_RPAREN, - STATE(437), 1, + STATE(583), 1, sym_accumulation_verb, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2394), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, + ACTIONS(6751), 2, anon_sym_for, anon_sym_as, - ACTIONS(6178), 2, + ACTIONS(6759), 2, anon_sym_while, anon_sym_until, - ACTIONS(6200), 2, + ACTIONS(6773), 2, sym__ws, sym_comment, - ACTIONS(6186), 3, + ACTIONS(6767), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1187), 4, + STATE(1114), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + ACTIONS(6763), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, + STATE(2256), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -97738,73 +103535,73 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [93668] = 26, + [94208] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6739), 1, anon_sym_POUND_, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + ACTIONS(6747), 1, anon_sym_cl, - ACTIONS(6168), 1, + ACTIONS(6749), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, + ACTIONS(6753), 1, anon_sym_and, - ACTIONS(6174), 1, + ACTIONS(6755), 1, anon_sym_with, - ACTIONS(6176), 1, + ACTIONS(6757), 1, anon_sym_do, - ACTIONS(6180), 1, + ACTIONS(6761), 1, anon_sym_repeat, - ACTIONS(6184), 1, + ACTIONS(6765), 1, anon_sym_else, - ACTIONS(6194), 1, + ACTIONS(6775), 1, anon_sym_RPAREN, - STATE(437), 1, + STATE(583), 1, sym_accumulation_verb, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2394), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, + ACTIONS(6751), 2, anon_sym_for, anon_sym_as, - ACTIONS(6178), 2, + ACTIONS(6759), 2, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, + ACTIONS(6769), 2, sym__ws, sym_comment, - ACTIONS(6186), 3, + ACTIONS(6767), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1245), 4, + STATE(1251), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + ACTIONS(6763), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, + STATE(2256), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -97814,10 +103611,10 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [93770] = 3, + [94310] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5681), 23, + ACTIONS(6478), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -97841,7 +103638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5683), 25, + ACTIONS(6480), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -97867,377 +103664,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [93826] = 26, + [94366] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6206), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6204), 2, + ACTIONS(6474), 23, sym__ws, sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1051), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [93928] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, anon_sym_POUND_, - ACTIONS(6160), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6208), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [94030] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 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(6476), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6210), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [94132] = 26, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [94422] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6739), 1, anon_sym_POUND_, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + ACTIONS(6747), 1, anon_sym_cl, - ACTIONS(6168), 1, + ACTIONS(6749), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, + ACTIONS(6753), 1, anon_sym_and, - ACTIONS(6174), 1, + ACTIONS(6755), 1, anon_sym_with, - ACTIONS(6176), 1, + ACTIONS(6757), 1, anon_sym_do, - ACTIONS(6180), 1, + ACTIONS(6761), 1, anon_sym_repeat, - ACTIONS(6184), 1, + ACTIONS(6765), 1, anon_sym_else, - ACTIONS(6208), 1, + ACTIONS(6777), 1, anon_sym_RPAREN, - STATE(437), 1, + STATE(583), 1, sym_accumulation_verb, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6212), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1210), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [94234] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6214), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, + STATE(2515), 1, sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, + STATE(2600), 1, aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, + ACTIONS(6751), 2, anon_sym_for, anon_sym_as, - ACTIONS(6178), 2, + ACTIONS(6759), 2, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, + ACTIONS(6769), 2, sym__ws, sym_comment, - ACTIONS(6186), 3, + ACTIONS(6767), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1245), 4, + STATE(1251), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + ACTIONS(6763), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, + STATE(2256), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -98247,73 +103793,73 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [94336] = 26, + [94524] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6739), 1, anon_sym_POUND_, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + ACTIONS(6747), 1, anon_sym_cl, - ACTIONS(6168), 1, + ACTIONS(6749), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, + ACTIONS(6753), 1, anon_sym_and, - ACTIONS(6174), 1, + ACTIONS(6755), 1, anon_sym_with, - ACTIONS(6176), 1, + ACTIONS(6757), 1, anon_sym_do, - ACTIONS(6180), 1, + ACTIONS(6761), 1, anon_sym_repeat, - ACTIONS(6184), 1, + ACTIONS(6765), 1, anon_sym_else, - ACTIONS(6214), 1, + ACTIONS(6777), 1, anon_sym_RPAREN, - STATE(437), 1, + STATE(583), 1, sym_accumulation_verb, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2394), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, + ACTIONS(6751), 2, anon_sym_for, anon_sym_as, - ACTIONS(6178), 2, + ACTIONS(6759), 2, anon_sym_while, anon_sym_until, - ACTIONS(6216), 2, + ACTIONS(6779), 2, sym__ws, sym_comment, - ACTIONS(6186), 3, + ACTIONS(6767), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1073), 4, + STATE(1117), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + ACTIONS(6763), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, + STATE(2256), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -98323,10 +103869,10 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [94438] = 3, + [94626] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5591), 23, + ACTIONS(6482), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98350,7 +103896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5593), 25, + ACTIONS(6484), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98376,10 +103922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [94494] = 3, + [94682] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5591), 23, + ACTIONS(6482), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98403,7 +103949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5593), 25, + ACTIONS(6484), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98429,10 +103975,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [94550] = 3, + [94738] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5961), 23, + ACTIONS(6478), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98456,7 +104002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5963), 25, + ACTIONS(6480), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98482,10 +104028,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [94606] = 3, + [94794] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5957), 23, + ACTIONS(6474), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98509,7 +104055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5959), 25, + ACTIONS(6476), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98535,10 +104081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [94662] = 3, + [94850] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5587), 23, + ACTIONS(6470), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98562,7 +104108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5589), 25, + ACTIONS(6472), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98588,10 +104134,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [94718] = 3, + [94906] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5587), 23, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6783), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6781), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1120), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [95008] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6783), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [95110] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6466), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98615,7 +104313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5589), 25, + ACTIONS(6468), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98641,10 +104339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [94774] = 3, + [95166] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5961), 23, + ACTIONS(6462), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98668,7 +104366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5963), 25, + ACTIONS(6464), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98694,10 +104392,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [94830] = 3, + [95222] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6787), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6785), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [95324] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5957), 23, + ACTIONS(6458), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98721,7 +104495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5959), 25, + ACTIONS(6460), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98747,10 +104521,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [94886] = 3, + [95380] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5587), 23, + ACTIONS(6454), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98774,7 +104548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5589), 25, + ACTIONS(6456), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98800,10 +104574,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [94942] = 3, + [95436] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6789), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [95538] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5587), 23, + ACTIONS(6450), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98827,7 +104677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5589), 25, + ACTIONS(6452), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98853,10 +104703,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [94998] = 3, + [95594] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6793), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6791), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1134), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [95696] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6793), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [95798] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5953), 23, + ACTIONS(6450), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98880,7 +104882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5955), 25, + ACTIONS(6452), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98906,10 +104908,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95054] = 3, + [95854] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5949), 23, + ACTIONS(6446), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98933,7 +104935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5951), 25, + ACTIONS(6448), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98959,73 +104961,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95110] = 26, + [95910] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6739), 1, anon_sym_POUND_, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + ACTIONS(6747), 1, anon_sym_cl, - ACTIONS(6168), 1, + ACTIONS(6749), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, + ACTIONS(6753), 1, anon_sym_and, - ACTIONS(6174), 1, + ACTIONS(6755), 1, anon_sym_with, - ACTIONS(6176), 1, + ACTIONS(6757), 1, anon_sym_do, - ACTIONS(6180), 1, + ACTIONS(6761), 1, anon_sym_repeat, - ACTIONS(6184), 1, + ACTIONS(6765), 1, anon_sym_else, - ACTIONS(6218), 1, + ACTIONS(6795), 1, anon_sym_RPAREN, - STATE(437), 1, + STATE(583), 1, sym_accumulation_verb, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2394), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, + ACTIONS(6751), 2, anon_sym_for, anon_sym_as, - ACTIONS(6178), 2, + ACTIONS(6759), 2, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, + ACTIONS(6769), 2, sym__ws, sym_comment, - ACTIONS(6186), 3, + ACTIONS(6767), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1245), 4, + STATE(1251), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + ACTIONS(6763), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, + STATE(2256), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -99035,73 +105037,73 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [95212] = 26, + [96012] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6739), 1, anon_sym_POUND_, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + ACTIONS(6747), 1, anon_sym_cl, - ACTIONS(6168), 1, + ACTIONS(6749), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, + ACTIONS(6753), 1, anon_sym_and, - ACTIONS(6174), 1, + ACTIONS(6755), 1, anon_sym_with, - ACTIONS(6176), 1, + ACTIONS(6757), 1, anon_sym_do, - ACTIONS(6180), 1, + ACTIONS(6761), 1, anon_sym_repeat, - ACTIONS(6184), 1, + ACTIONS(6765), 1, anon_sym_else, - ACTIONS(6222), 1, + ACTIONS(6795), 1, anon_sym_RPAREN, - STATE(437), 1, + STATE(583), 1, sym_accumulation_verb, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2394), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, + ACTIONS(6751), 2, anon_sym_for, anon_sym_as, - ACTIONS(6178), 2, + ACTIONS(6759), 2, anon_sym_while, anon_sym_until, - ACTIONS(6220), 2, + ACTIONS(6797), 2, sym__ws, sym_comment, - ACTIONS(6186), 3, + ACTIONS(6767), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1078), 4, + STATE(1137), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + ACTIONS(6763), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, + STATE(2256), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -99111,73 +105113,179 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [95314] = 26, + [96114] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(6446), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(6158), 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(6448), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [96170] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6442), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 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(6444), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [96226] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, anon_sym_cl, - ACTIONS(6168), 1, + ACTIONS(6749), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, + ACTIONS(6753), 1, anon_sym_and, - ACTIONS(6174), 1, + ACTIONS(6755), 1, anon_sym_with, - ACTIONS(6176), 1, + ACTIONS(6757), 1, anon_sym_do, - ACTIONS(6180), 1, + ACTIONS(6761), 1, anon_sym_repeat, - ACTIONS(6184), 1, + ACTIONS(6765), 1, anon_sym_else, - ACTIONS(6222), 1, + ACTIONS(6801), 1, anon_sym_RPAREN, - STATE(437), 1, + STATE(583), 1, sym_accumulation_verb, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2394), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, + ACTIONS(6751), 2, anon_sym_for, anon_sym_as, - ACTIONS(6178), 2, + ACTIONS(6759), 2, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, + ACTIONS(6799), 2, sym__ws, sym_comment, - ACTIONS(6186), 3, + ACTIONS(6767), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1245), 4, + STATE(1140), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + ACTIONS(6763), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, + STATE(2256), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -99187,73 +105295,73 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [95416] = 26, + [96328] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6739), 1, anon_sym_POUND_, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + ACTIONS(6747), 1, anon_sym_cl, - ACTIONS(6168), 1, + ACTIONS(6749), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, + ACTIONS(6753), 1, anon_sym_and, - ACTIONS(6174), 1, + ACTIONS(6755), 1, anon_sym_with, - ACTIONS(6176), 1, + ACTIONS(6757), 1, anon_sym_do, - ACTIONS(6180), 1, + ACTIONS(6761), 1, anon_sym_repeat, - ACTIONS(6184), 1, + ACTIONS(6765), 1, anon_sym_else, - ACTIONS(6226), 1, + ACTIONS(6801), 1, anon_sym_RPAREN, - STATE(437), 1, + STATE(583), 1, sym_accumulation_verb, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2394), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, + ACTIONS(6751), 2, anon_sym_for, anon_sym_as, - ACTIONS(6178), 2, + ACTIONS(6759), 2, anon_sym_while, anon_sym_until, - ACTIONS(6224), 2, + ACTIONS(6769), 2, sym__ws, sym_comment, - ACTIONS(6186), 3, + ACTIONS(6767), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1081), 4, + STATE(1251), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + ACTIONS(6763), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, + STATE(2256), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -99263,86 +105371,63 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [95518] = 26, + [96430] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6438), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 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(6440), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6230), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6228), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1149), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [95620] = 3, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [96486] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5685), 23, + ACTIONS(6434), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99366,7 +105451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5687), 25, + ACTIONS(6436), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -99392,618 +105477,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95676] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6234), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6232), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1103), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [95778] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6236), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [95880] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6236), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6238), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1084), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [95982] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6226), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [96084] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6240), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [96186] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6240), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6242), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1092), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [96288] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6234), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [96390] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6244), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [96492] = 3, + [96542] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5945), 23, + ACTIONS(6430), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100027,7 +105504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5947), 25, + ACTIONS(6432), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100053,10 +105530,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96548] = 3, + [96598] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5941), 23, + ACTIONS(6426), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100080,7 +105557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5943), 25, + ACTIONS(6428), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100106,10 +105583,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96604] = 3, + [96654] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5945), 23, + ACTIONS(6422), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100133,7 +105610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5947), 25, + ACTIONS(6424), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100159,126 +105636,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96660] = 3, + [96710] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5941), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5943), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [96716] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6739), 1, anon_sym_POUND_, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + ACTIONS(6747), 1, anon_sym_cl, - ACTIONS(6168), 1, + ACTIONS(6749), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, + ACTIONS(6753), 1, anon_sym_and, - ACTIONS(6174), 1, + ACTIONS(6755), 1, anon_sym_with, - ACTIONS(6176), 1, + ACTIONS(6757), 1, anon_sym_do, - ACTIONS(6180), 1, + ACTIONS(6761), 1, anon_sym_repeat, - ACTIONS(6184), 1, + ACTIONS(6765), 1, anon_sym_else, - ACTIONS(6248), 1, + ACTIONS(6803), 1, anon_sym_RPAREN, - STATE(437), 1, + STATE(583), 1, sym_accumulation_verb, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2394), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, + ACTIONS(6751), 2, anon_sym_for, anon_sym_as, - ACTIONS(6178), 2, + ACTIONS(6759), 2, anon_sym_while, anon_sym_until, - ACTIONS(6246), 2, + ACTIONS(6769), 2, sym__ws, sym_comment, - ACTIONS(6186), 3, + ACTIONS(6767), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1071), 4, + STATE(1251), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + ACTIONS(6763), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, + STATE(2256), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -100288,10 +105712,10 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [96818] = 3, + [96812] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5937), 23, + ACTIONS(6418), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100315,7 +105739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5939), 25, + ACTIONS(6420), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100341,225 +105765,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96874] = 26, + [96868] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6252), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6250), 2, + ACTIONS(6422), 23, sym__ws, sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1083), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [96976] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, anon_sym_POUND_, - ACTIONS(6160), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 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(6424), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6254), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [97078] = 26, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [96924] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6739), 1, anon_sym_POUND_, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + ACTIONS(6747), 1, anon_sym_cl, - ACTIONS(6168), 1, + ACTIONS(6749), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, + ACTIONS(6753), 1, anon_sym_and, - ACTIONS(6174), 1, + ACTIONS(6755), 1, anon_sym_with, - ACTIONS(6176), 1, + ACTIONS(6757), 1, anon_sym_do, - ACTIONS(6180), 1, + ACTIONS(6761), 1, anon_sym_repeat, - ACTIONS(6184), 1, + ACTIONS(6765), 1, anon_sym_else, - ACTIONS(6248), 1, + ACTIONS(6805), 1, anon_sym_RPAREN, - STATE(437), 1, + STATE(583), 1, sym_accumulation_verb, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2394), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, + ACTIONS(6751), 2, anon_sym_for, anon_sym_as, - ACTIONS(6178), 2, + ACTIONS(6759), 2, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, + ACTIONS(6769), 2, sym__ws, sym_comment, - ACTIONS(6186), 3, + ACTIONS(6767), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1245), 4, + STATE(1251), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + ACTIONS(6763), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, + STATE(2256), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -100569,10 +105894,10 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [97180] = 3, + [97026] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5949), 23, + ACTIONS(6418), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100596,7 +105921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5951), 25, + ACTIONS(6420), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100622,10 +105947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97236] = 3, + [97082] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5945), 23, + ACTIONS(6414), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100649,7 +105974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5947), 25, + ACTIONS(6416), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100675,10 +106000,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97292] = 3, + [97138] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5941), 23, + ACTIONS(6410), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100702,7 +106027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5943), 25, + ACTIONS(6412), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100728,10 +106053,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97348] = 3, + [97194] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5945), 23, + ACTIONS(6160), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100755,7 +106080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5947), 25, + ACTIONS(6162), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100781,86 +106106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97404] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6258), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6256), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1118), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [97506] = 3, + [97250] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5941), 23, + ACTIONS(6160), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100884,7 +106133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5943), 25, + ACTIONS(6162), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100910,10 +106159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97562] = 3, + [97306] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5937), 23, + ACTIONS(6403), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100937,7 +106186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5939), 25, + ACTIONS(6405), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100963,10 +106212,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97618] = 3, + [97362] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5933), 23, + ACTIONS(6399), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100990,7 +106239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5935), 25, + ACTIONS(6401), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101016,10 +106265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97674] = 3, + [97418] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5929), 23, + ACTIONS(6392), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101043,7 +106292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5931), 25, + ACTIONS(6394), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101069,86 +106318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97730] = 26, + [97474] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6260), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [97832] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5925), 23, + ACTIONS(6392), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101172,7 +106345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5927), 25, + ACTIONS(6394), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101198,10 +106371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97888] = 3, + [97530] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5921), 23, + ACTIONS(6388), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101225,7 +106398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5923), 25, + ACTIONS(6390), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101251,10 +106424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [97944] = 3, + [97586] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5921), 23, + ACTIONS(6384), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101278,7 +106451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5923), 25, + ACTIONS(6386), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101304,10 +106477,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [98000] = 3, + [97642] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5917), 23, + ACTIONS(6380), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101331,7 +106504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5919), 25, + ACTIONS(6382), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101357,86 +106530,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [98056] = 26, + [97698] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6264), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6262), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1080), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [98158] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5913), 23, + ACTIONS(6376), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101460,7 +106557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5915), 25, + ACTIONS(6378), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101486,10 +106583,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [98214] = 3, + [97754] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5921), 23, + ACTIONS(6372), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101513,7 +106610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5923), 25, + ACTIONS(6374), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101539,86 +106636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [98270] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6268), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6266), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1164), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [98372] = 3, + [97810] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5921), 23, + ACTIONS(6368), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101642,7 +106663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5923), 25, + ACTIONS(6370), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101668,10 +106689,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [98428] = 3, + [97866] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5917), 23, + ACTIONS(6364), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101695,7 +106716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5919), 25, + ACTIONS(6366), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101721,86 +106742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [98484] = 26, + [97922] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6264), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [98586] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5913), 23, + ACTIONS(6360), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101824,7 +106769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5915), 25, + ACTIONS(6362), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101850,86 +106795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [98642] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6270), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [98744] = 3, + [97978] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5909), 23, + ACTIONS(6356), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101953,7 +106822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5911), 25, + ACTIONS(6358), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101979,162 +106848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [98800] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6272), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [98902] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6272), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6274), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1146), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [99004] = 3, + [98034] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5905), 23, + ACTIONS(6352), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102158,7 +106875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5907), 25, + ACTIONS(6354), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102184,10 +106901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [99060] = 3, + [98090] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5901), 23, + ACTIONS(6348), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102211,7 +106928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5903), 25, + ACTIONS(6350), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102237,10 +106954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [99116] = 3, + [98146] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5897), 23, + ACTIONS(6344), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102264,7 +106981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5899), 25, + ACTIONS(6346), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102290,10 +107007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [99172] = 3, + [98202] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 23, + ACTIONS(6340), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102317,7 +107034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5895), 25, + ACTIONS(6342), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102343,10 +107060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [99228] = 3, + [98258] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5889), 23, + ACTIONS(6336), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102370,7 +107087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5891), 25, + ACTIONS(6338), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102396,10 +107113,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [99284] = 3, + [98314] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5889), 23, + ACTIONS(6332), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102423,7 +107140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5891), 25, + ACTIONS(6334), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102449,139 +107166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [99340] = 26, + [98370] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6278), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6276), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1116), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [99442] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5885), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5887), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [99498] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5885), 23, + ACTIONS(6328), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102605,7 +107193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5887), 25, + ACTIONS(6330), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102631,10 +107219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [99554] = 3, + [98426] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5881), 23, + ACTIONS(6324), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102658,7 +107246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5883), 25, + ACTIONS(6326), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102684,10 +107272,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [99610] = 3, + [98482] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5877), 23, + ACTIONS(6320), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102711,7 +107299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5879), 25, + ACTIONS(6322), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102737,73 +107325,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [99666] = 26, + [98538] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6739), 1, anon_sym_POUND_, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + ACTIONS(6747), 1, anon_sym_cl, - ACTIONS(6168), 1, + ACTIONS(6749), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, + ACTIONS(6753), 1, anon_sym_and, - ACTIONS(6174), 1, + ACTIONS(6755), 1, anon_sym_with, - ACTIONS(6176), 1, + ACTIONS(6757), 1, anon_sym_do, - ACTIONS(6180), 1, + ACTIONS(6761), 1, anon_sym_repeat, - ACTIONS(6184), 1, + ACTIONS(6765), 1, anon_sym_else, - ACTIONS(6260), 1, + ACTIONS(6809), 1, anon_sym_RPAREN, - STATE(437), 1, + STATE(583), 1, sym_accumulation_verb, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2394), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, + ACTIONS(6751), 2, anon_sym_for, anon_sym_as, - ACTIONS(6178), 2, + ACTIONS(6759), 2, anon_sym_while, anon_sym_until, - ACTIONS(6280), 2, + ACTIONS(6807), 2, sym__ws, sym_comment, - ACTIONS(6186), 3, + ACTIONS(6767), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1093), 4, + STATE(1154), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + ACTIONS(6763), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, + STATE(2256), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -102813,10 +107401,10 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [99768] = 3, + [98640] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5873), 23, + ACTIONS(6316), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102840,7 +107428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5875), 25, + ACTIONS(6318), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102866,10 +107454,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [99824] = 3, + [98696] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5869), 23, + ACTIONS(6312), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102893,7 +107481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5871), 25, + ACTIONS(6314), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102919,10 +107507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [99880] = 3, + [98752] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5865), 23, + ACTIONS(6308), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102946,7 +107534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5867), 25, + ACTIONS(6310), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102972,86 +107560,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [99936] = 26, + [98808] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6304), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 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(6306), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6284), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6282), 2, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98864] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6300), 23, sym__ws, sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1151), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100038] = 3, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6302), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98920] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5861), 23, + ACTIONS(6296), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103075,7 +107693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5863), 25, + ACTIONS(6298), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103101,10 +107719,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100094] = 3, + [98976] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5857), 23, + ACTIONS(6292), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103128,7 +107746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5859), 25, + ACTIONS(6294), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103154,10 +107772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100150] = 3, + [99032] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5861), 23, + ACTIONS(6288), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103181,7 +107799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5863), 25, + ACTIONS(6290), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103207,10 +107825,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100206] = 3, + [99088] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5857), 23, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6809), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [99190] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6284), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103234,7 +107928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5859), 25, + ACTIONS(6286), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103260,10 +107954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100262] = 3, + [99246] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5853), 23, + ACTIONS(6280), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103287,7 +107981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5855), 25, + ACTIONS(6282), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103313,10 +108007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100318] = 3, + [99302] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5849), 23, + ACTIONS(6276), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103340,7 +108034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5851), 25, + ACTIONS(6278), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103366,86 +108060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100374] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6288), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6286), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1114), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100476] = 3, + [99358] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5845), 23, + ACTIONS(6272), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103469,7 +108087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5847), 25, + ACTIONS(6274), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103495,10 +108113,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100532] = 3, + [99414] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5845), 23, + ACTIONS(6268), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103522,7 +108140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5847), 25, + ACTIONS(6270), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103548,10 +108166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100588] = 3, + [99470] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5841), 23, + ACTIONS(6264), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103575,7 +108193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5843), 25, + ACTIONS(6266), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103601,86 +108219,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100644] = 26, + [99526] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6260), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6164), 1, - anon_sym_RPAREN, - ACTIONS(6166), 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(6262), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100746] = 3, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99582] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5837), 23, + ACTIONS(6256), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103704,7 +108299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5839), 25, + ACTIONS(6258), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103730,10 +108325,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100802] = 3, + [99638] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5833), 23, + ACTIONS(6188), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103757,7 +108352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5835), 25, + ACTIONS(6190), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103783,149 +108378,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100858] = 26, + [99694] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6739), 1, anon_sym_POUND_, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + ACTIONS(6747), 1, anon_sym_cl, - ACTIONS(6168), 1, + ACTIONS(6749), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, + ACTIONS(6753), 1, anon_sym_and, - ACTIONS(6174), 1, + ACTIONS(6755), 1, anon_sym_with, - ACTIONS(6176), 1, + ACTIONS(6757), 1, anon_sym_do, - ACTIONS(6180), 1, + ACTIONS(6761), 1, anon_sym_repeat, - ACTIONS(6184), 1, + ACTIONS(6765), 1, anon_sym_else, - ACTIONS(6290), 1, + ACTIONS(6811), 1, anon_sym_RPAREN, - STATE(437), 1, + STATE(583), 1, sym_accumulation_verb, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100960] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6292), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, + STATE(2515), 1, sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, + STATE(2600), 1, aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, + ACTIONS(6751), 2, anon_sym_for, anon_sym_as, - ACTIONS(6178), 2, + ACTIONS(6759), 2, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, + ACTIONS(6769), 2, sym__ws, sym_comment, - ACTIONS(6186), 3, + ACTIONS(6767), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1245), 4, + STATE(1251), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + ACTIONS(6763), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, + STATE(2256), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -103935,86 +108454,169 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [101062] = 26, + [99796] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(6252), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(6158), 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(6254), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99852] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6248), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 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(6250), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6294), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6188), 2, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99908] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6244), 23, sym__ws, sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [101164] = 3, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6246), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99964] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5833), 23, + ACTIONS(6502), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104038,7 +108640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5835), 25, + ACTIONS(6504), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104064,10 +108666,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101220] = 3, + [100020] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5829), 23, + ACTIONS(6494), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104091,7 +108693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5831), 25, + ACTIONS(6496), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104117,10 +108719,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101276] = 3, + [100076] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5825), 23, + ACTIONS(6498), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104144,7 +108746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5827), 25, + ACTIONS(6500), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104170,73 +108772,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101332] = 26, + [100132] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6739), 1, anon_sym_POUND_, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + ACTIONS(6747), 1, anon_sym_cl, - ACTIONS(6168), 1, + ACTIONS(6749), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, + ACTIONS(6753), 1, anon_sym_and, - ACTIONS(6174), 1, + ACTIONS(6755), 1, anon_sym_with, - ACTIONS(6176), 1, + ACTIONS(6757), 1, anon_sym_do, - ACTIONS(6180), 1, + ACTIONS(6761), 1, anon_sym_repeat, - ACTIONS(6184), 1, + ACTIONS(6765), 1, anon_sym_else, - ACTIONS(6290), 1, + ACTIONS(6815), 1, anon_sym_RPAREN, - STATE(437), 1, + STATE(583), 1, sym_accumulation_verb, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2394), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, + ACTIONS(6751), 2, anon_sym_for, anon_sym_as, - ACTIONS(6178), 2, + ACTIONS(6759), 2, anon_sym_while, anon_sym_until, - ACTIONS(6296), 2, + ACTIONS(6813), 2, sym__ws, sym_comment, - ACTIONS(6186), 3, + ACTIONS(6767), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1192), 4, + STATE(1280), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + ACTIONS(6763), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, + STATE(2256), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -104246,10 +108848,10 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [101434] = 3, + [100234] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5821), 23, + ACTIONS(6240), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104273,7 +108875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5823), 25, + ACTIONS(6242), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104299,73 +108901,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101490] = 26, + [100290] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6739), 1, anon_sym_POUND_, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + ACTIONS(6747), 1, anon_sym_cl, - ACTIONS(6168), 1, + ACTIONS(6749), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, + ACTIONS(6753), 1, anon_sym_and, - ACTIONS(6174), 1, + ACTIONS(6755), 1, anon_sym_with, - ACTIONS(6176), 1, + ACTIONS(6757), 1, anon_sym_do, - ACTIONS(6180), 1, + ACTIONS(6761), 1, anon_sym_repeat, - ACTIONS(6184), 1, + ACTIONS(6765), 1, anon_sym_else, - ACTIONS(6278), 1, + ACTIONS(6811), 1, anon_sym_RPAREN, - STATE(437), 1, + STATE(583), 1, sym_accumulation_verb, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2394), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, + ACTIONS(6751), 2, anon_sym_for, anon_sym_as, - ACTIONS(6178), 2, + ACTIONS(6759), 2, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, + ACTIONS(6817), 2, sym__ws, sym_comment, - ACTIONS(6186), 3, + ACTIONS(6767), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1245), 4, + STATE(1240), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + ACTIONS(6763), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, + STATE(2256), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -104375,73 +108977,73 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [101592] = 26, + [100392] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6739), 1, anon_sym_POUND_, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + ACTIONS(6747), 1, anon_sym_cl, - ACTIONS(6168), 1, + ACTIONS(6749), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, + ACTIONS(6753), 1, anon_sym_and, - ACTIONS(6174), 1, + ACTIONS(6755), 1, anon_sym_with, - ACTIONS(6176), 1, + ACTIONS(6757), 1, anon_sym_do, - ACTIONS(6180), 1, + ACTIONS(6761), 1, anon_sym_repeat, - ACTIONS(6184), 1, + ACTIONS(6765), 1, anon_sym_else, - ACTIONS(6298), 1, + ACTIONS(6821), 1, anon_sym_RPAREN, - STATE(437), 1, + STATE(583), 1, sym_accumulation_verb, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2394), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, + ACTIONS(6751), 2, anon_sym_for, anon_sym_as, - ACTIONS(6178), 2, + ACTIONS(6759), 2, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, + ACTIONS(6819), 2, sym__ws, sym_comment, - ACTIONS(6186), 3, + ACTIONS(6767), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1852), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1245), 4, + STATE(1293), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + ACTIONS(6763), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, + STATE(2256), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -104451,10 +109053,10 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [101694] = 3, + [100494] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5817), 23, + ACTIONS(6236), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104478,7 +109080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5819), 25, + ACTIONS(6238), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104504,86 +109106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101750] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6298), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6300), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1163), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [101852] = 3, + [100550] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5813), 23, + ACTIONS(6490), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104607,7 +109133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5815), 25, + ACTIONS(6492), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104633,808 +109159,8717 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101908] = 26, + [100606] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(6232), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6234), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100662] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6502), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6504), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100718] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6228), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6230), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100774] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6506), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6508), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100830] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6224), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6226), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100886] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6510), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6512), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100942] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6220), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6222), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100998] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6216), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6218), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101054] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6212), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6214), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101110] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6188), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6190), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101166] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6208), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6210), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101222] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6204), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6206), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101278] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6200), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6202), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101334] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6196), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6198), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101390] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6192), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6194), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101446] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6188), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6190), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101502] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6823), 1, + anon_sym_COLON, + ACTIONS(6825), 1, + anon_sym_COLON_COLON, + ACTIONS(6180), 22, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6182), 24, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101562] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6184), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6186), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101618] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6180), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6182), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101674] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6829), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6827), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1254), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [101776] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6176), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6178), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101832] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6172), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6174), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101888] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6168), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6170), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101944] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6823), 1, + anon_sym_COLON, + ACTIONS(6825), 1, + anon_sym_COLON_COLON, + ACTIONS(6164), 22, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6166), 24, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [102004] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6823), 1, + anon_sym_COLON, + ACTIONS(6825), 1, + anon_sym_COLON_COLON, + ACTIONS(6152), 22, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6154), 24, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [102064] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6498), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6500), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [102120] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6831), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [102222] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6835), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6833), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 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(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [102324] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6502), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6504), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [102380] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6506), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6508), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [102436] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6502), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6504), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [102492] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6148), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6150), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [102548] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6506), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6508), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [102604] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6510), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6512), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [102660] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6514), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6516), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [102716] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6839), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6837), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1260), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [102818] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6518), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6520), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [102874] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6844), 1, + anon_sym_POUND_, + ACTIONS(6847), 1, + anon_sym_CARET, + ACTIONS(6850), 1, + anon_sym_POUND_CARET, + ACTIONS(6853), 1, + anon_sym_LPAREN, + ACTIONS(6856), 1, + anon_sym_RPAREN, + ACTIONS(6858), 1, + anon_sym_cl, + ACTIONS(6861), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6867), 1, + anon_sym_and, + ACTIONS(6870), 1, + anon_sym_with, + ACTIONS(6873), 1, + anon_sym_do, + ACTIONS(6879), 1, + anon_sym_repeat, + ACTIONS(6885), 1, + anon_sym_else, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6841), 2, + sym__ws, + sym_comment, + ACTIONS(6864), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6876), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6888), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6882), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [102976] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6518), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6520), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [103032] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6522), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6524), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [103088] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6891), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [103190] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6891), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6893), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1262), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [103292] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6526), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6528), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [103348] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6518), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6520), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [103404] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6518), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6520), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [103460] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6897), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6895), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 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(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [103562] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6899), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [103664] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6522), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6524), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [103720] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6897), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [103822] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6526), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6528), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [103878] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6144), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6146), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [103934] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6144), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6146), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [103990] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6901), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [104092] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6901), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6903), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1268), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [104194] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6905), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [104296] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6907), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [104398] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6911), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6909), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1269), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [104500] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6911), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [104602] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6913), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [104704] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6913), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6915), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1271), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [104806] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6919), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6917), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1272), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [104908] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6919), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [105010] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6921), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [105112] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6925), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6923), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1294), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [105214] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6929), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6927), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1275), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [105316] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6921), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6931), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1201), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [105418] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6925), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [105520] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6933), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [105622] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6937), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6935), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1281), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [105724] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6937), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [105826] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6939), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [105928] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6939), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6941), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1283), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [106030] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6945), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6943), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1284), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [106132] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6945), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [106234] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6949), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6947), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1276), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [106336] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6951), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [106438] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6955), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6953), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1287), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [106540] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6957), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [106642] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6961), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6959), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1151), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [106744] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6949), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [106846] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6963), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [106948] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6963), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6965), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 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(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107050] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6951), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6967), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1291), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107152] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6969), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107254] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6815), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107356] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6973), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6971), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 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(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107458] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6975), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107560] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6977), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107662] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6977), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6979), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1191), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107764] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6803), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6981), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 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(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107866] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6985), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6983), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1300), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107968] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6985), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108070] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6987), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108172] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6991), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6989), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1312), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108274] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6987), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6993), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 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(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108376] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6839), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108478] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6899), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6995), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 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(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108580] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6999), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6997), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 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(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108682] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6739), 1, + anon_sym_POUND_, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(6747), 1, + anon_sym_cl, + ACTIONS(6749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_with, + ACTIONS(6757), 1, + anon_sym_do, + ACTIONS(6761), 1, + anon_sym_repeat, + ACTIONS(6765), 1, + anon_sym_else, + ACTIONS(6999), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_accumulation_verb, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, + aux_sym_list_lit_repeat1, + ACTIONS(6751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(6759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(6769), 2, + sym__ws, + sym_comment, + ACTIONS(6767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2169), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(6763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2256), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108784] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7001), 1, + anon_sym_COLON, + ACTIONS(7003), 1, + anon_sym_COLON_COLON, + ACTIONS(6154), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6152), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [108841] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7001), 1, + anon_sym_COLON, + ACTIONS(7003), 1, + anon_sym_COLON_COLON, + ACTIONS(6166), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6164), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [108898] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7001), 1, + anon_sym_COLON, + ACTIONS(7003), 1, + anon_sym_COLON_COLON, + ACTIONS(6182), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6180), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [108955] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6150), 4, + anon_sym_COLON, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6148), 41, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_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_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, + [109008] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7005), 1, + aux_sym_num_lit_token2, + ACTIONS(6140), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6138), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [109062] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6302), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6300), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [109113] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6412), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6410), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [109164] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6394), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6392), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [109215] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6390), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6388), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [109266] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7009), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7007), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [109317] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7013), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7011), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [109368] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6386), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6384), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [109419] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6382), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6380), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [109470] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6436), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6434), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [109521] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6378), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6376), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [109572] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6370), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6368), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [109623] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6366), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6364), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [109674] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6362), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6360), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [109725] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6358), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6356), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [109776] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6354), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6352), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [109827] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6346), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6344), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [109878] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6342), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6340), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [109929] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6338), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6336), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [109980] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6334), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6332), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(6158), 1, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [110031] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6330), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6328), 40, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(6168), 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, + anon_sym_for, anon_sym_and, - ACTIONS(6174), 1, + anon_sym_as, anon_sym_with, - ACTIONS(6176), 1, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [110082] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6326), 3, + anon_sym_in, + anon_sym_being, anon_sym_do, - ACTIONS(6180), 1, + ACTIONS(6324), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, anon_sym_repeat, - ACTIONS(6184), 1, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, anon_sym_else, - ACTIONS(6304), 1, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [110133] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6318), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6316), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6302), 2, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [110184] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6314), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6312), 40, sym__ws, sym_comment, - ACTIONS(6186), 3, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1150), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + [110235] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6310), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6308), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102010] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [110286] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(6306), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6304), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(6158), 1, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [110337] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6440), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6438), 40, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [110388] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6298), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6296), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [110439] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6294), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6292), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [110490] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6290), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6288), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [110541] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6282), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6280), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(6168), 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6306), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102112] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [110592] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6278), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6276), 40, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(6168), 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6308), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102214] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [110643] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6274), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6272), 40, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(6168), 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6304), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102316] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [110694] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6266), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6264), 40, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(6168), 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6308), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6310), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1168), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102418] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [110745] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6262), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6260), 40, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(6168), 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6314), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6312), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1198), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102520] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [110796] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6258), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6256), 40, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(6168), 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6314), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102622] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [110847] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6190), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6188), 40, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(6168), 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6318), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6316), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1047), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102724] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [110898] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6250), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6248), 40, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(6168), 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, + anon_sym_for, anon_sym_and, - ACTIONS(6174), 1, + anon_sym_as, anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, + anon_sym_while, + anon_sym_until, anon_sym_repeat, - ACTIONS(6184), 1, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, anon_sym_else, - ACTIONS(6320), 1, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [110949] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6246), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6244), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102826] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [111000] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6444), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6442), 40, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(6168), 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6320), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6322), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1165), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102928] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [111051] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5809), 23, + ACTIONS(6242), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6240), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5811), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -105446,48 +117881,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102984] = 3, + 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, + [111102] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5677), 23, + ACTIONS(6238), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6236), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5679), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -105499,48 +117929,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103040] = 3, + 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, + [111153] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5805), 23, + ACTIONS(6234), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6232), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5807), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -105552,48 +117977,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103096] = 3, + 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, + [111204] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5801), 23, + ACTIONS(6230), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6228), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5803), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -105605,48 +118025,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103152] = 3, + 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, + [111255] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5797), 23, + ACTIONS(6226), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6224), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5799), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -105658,48 +118073,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103208] = 3, + 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, + [111306] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5793), 23, + ACTIONS(6222), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6220), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5795), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -105711,48 +118121,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103264] = 3, + 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, + [111357] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5789), 23, + ACTIONS(6218), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6216), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5791), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -105764,200 +118169,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103320] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6326), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6324), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1194), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + [111408] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6190), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6188), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [103422] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [111459] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6210), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6208), 40, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(6168), 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6330), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6328), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1170), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [103524] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [111510] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5785), 23, + ACTIONS(6448), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6446), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5787), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -105969,48 +118313,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103580] = 3, + 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, + [111561] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5781), 23, + ACTIONS(6194), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6192), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5783), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -106022,276 +118361,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103636] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6318), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [103738] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [111612] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6190), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6188), 40, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(6168), 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6294), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6332), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1223), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [103840] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [111663] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6394), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6392), 40, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(6168), 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6336), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6334), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1054), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [103942] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [111714] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5777), 23, + ACTIONS(6186), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6184), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5779), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -106303,124 +118505,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103998] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6330), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [104100] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [111765] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5773), 23, + ACTIONS(6182), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6180), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5775), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [111816] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6448), 3, anon_sym_in, - anon_sym_across, anon_sym_being, + anon_sym_do, + ACTIONS(6446), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -106432,48 +118601,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [104156] = 3, + 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, + [111867] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5769), 23, + ACTIONS(6174), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6172), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5771), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -106485,48 +118649,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [104212] = 3, + 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, + [111918] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5765), 23, + ACTIONS(6170), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6168), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5767), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -106538,48 +118697,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [104268] = 3, + 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, + [111969] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5761), 23, + ACTIONS(6401), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6399), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5763), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -106591,276 +118745,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [104324] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6338), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [104426] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, anon_sym_else, - ACTIONS(6338), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(6178), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(6340), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1183), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [104528] = 26, + [112020] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6405), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6403), 40, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(6168), 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6342), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [104630] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [112071] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5757), 23, + ACTIONS(6162), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6160), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5759), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -106872,48 +118841,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [104686] = 3, + 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, + [112122] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5753), 23, + ACTIONS(6452), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6450), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5755), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -106925,200 +118889,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [104742] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6342), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6344), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1208), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [104844] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [112173] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6162), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6160), 40, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6346), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [104946] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [112224] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5749), 23, + ACTIONS(6520), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6518), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5751), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -107130,48 +118985,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105002] = 3, + 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, + [112275] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5745), 23, + ACTIONS(6452), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6450), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5747), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -107183,48 +119033,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105058] = 3, + 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, + [112326] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5741), 23, + ACTIONS(6456), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6454), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5743), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -107236,48 +119081,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105114] = 3, + 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, + [112377] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5737), 23, + ACTIONS(6374), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6372), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5739), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -107289,48 +119129,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105170] = 3, + 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, + [112428] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5733), 23, + ACTIONS(6432), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6430), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5735), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -107342,48 +119177,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105226] = 3, + 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, + [112479] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5729), 23, + ACTIONS(6416), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6414), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5731), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -107395,48 +119225,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105282] = 3, + 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, + [112530] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5725), 23, + ACTIONS(6350), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6348), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5727), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -107448,48 +119273,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105338] = 3, + 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, + [112581] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5721), 23, + ACTIONS(6322), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6320), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5723), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -107501,200 +119321,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105394] = 26, + 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, + [112632] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6286), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6284), 40, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(6168), 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, + anon_sym_for, anon_sym_and, - ACTIONS(6174), 1, + anon_sym_as, anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, + anon_sym_while, + anon_sym_until, anon_sym_repeat, - ACTIONS(6184), 1, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, anon_sym_else, - ACTIONS(6350), 1, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [112683] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6420), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6418), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6348), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1212), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [105496] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [112734] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(6270), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6268), 40, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(6168), 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6350), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [105598] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [112785] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5717), 23, + ACTIONS(6424), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6422), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5719), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -107706,124 +119513,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105654] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6352), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [105756] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [112836] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5713), 23, + ACTIONS(7017), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7015), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5715), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -107835,200 +119561,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105812] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6354), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [105914] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [112887] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, + ACTIONS(7021), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7019), 40, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6160), 1, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6166), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(6168), 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6354), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6356), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1055), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [106016] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [112938] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5709), 23, + ACTIONS(6420), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6418), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5711), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -108040,124 +119657,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106072] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6336), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [106174] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [112989] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5705), 23, + ACTIONS(6424), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6422), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5707), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -108169,48 +119705,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106230] = 3, + 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, + [113040] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5623), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5625), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(7021), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7019), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -108222,48 +119753,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106286] = 3, + 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, + [113091] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5701), 23, + ACTIONS(6214), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6212), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5703), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -108275,48 +119801,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106342] = 3, + 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, + [113142] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5697), 23, + ACTIONS(6428), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6426), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5699), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -108328,48 +119849,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106398] = 3, + 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, + [113193] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5629), 23, + ACTIONS(6206), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6204), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5631), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -108381,124 +119897,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106454] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6346), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6358), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1229), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [106556] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [113244] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5693), 23, + ACTIONS(6202), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6200), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5695), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -108510,126 +119945,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106612] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6360), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [106714] = 5, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [113295] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6362), 1, - anon_sym_COLON, - ACTIONS(6364), 1, - anon_sym_COLON_COLON, - ACTIONS(5619), 22, + ACTIONS(6198), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6196), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5621), 24, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -108641,50 +119993,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106774] = 5, + 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, + [113346] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6362), 1, - anon_sym_COLON, - ACTIONS(6364), 1, - anon_sym_COLON_COLON, - ACTIONS(5611), 22, + ACTIONS(6146), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6144), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5613), 24, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -108696,48 +120041,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106834] = 3, + 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, + [113397] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5607), 23, + ACTIONS(6146), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6144), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5609), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -108749,48 +120089,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106890] = 3, + 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, + [113448] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5603), 23, + ACTIONS(6528), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6526), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5605), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [113499] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6524), 3, anon_sym_in, - anon_sym_across, anon_sym_being, + anon_sym_do, + ACTIONS(6522), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -108802,48 +120185,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106946] = 3, + 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, + [113550] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5599), 23, + ACTIONS(6520), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6518), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5601), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -108855,124 +120233,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107002] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, - anon_sym_and, - ACTIONS(6174), 1, - anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, - anon_sym_repeat, - ACTIONS(6184), 1, - anon_sym_else, - ACTIONS(6366), 1, - anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6188), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [107104] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [113601] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5595), 23, + ACTIONS(6520), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6518), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5597), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -108984,48 +120281,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107160] = 3, + 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, + [113652] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5965), 23, + ACTIONS(6528), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6526), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5967), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -109037,50 +120329,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107216] = 5, + 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, + [113703] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6362), 1, - anon_sym_COLON, - ACTIONS(6364), 1, - anon_sym_COLON_COLON, - ACTIONS(5595), 22, + ACTIONS(6524), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6522), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5597), 24, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -109092,48 +120377,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107276] = 3, + 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, + [113754] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5629), 23, + ACTIONS(6520), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6518), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5631), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -109145,48 +120425,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107332] = 3, + 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, + [113805] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5633), 23, + ACTIONS(6460), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6458), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5635), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -109198,48 +120473,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107388] = 3, + 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, + [113856] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5637), 23, + ACTIONS(6516), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6514), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5639), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -109251,48 +120521,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107444] = 3, + 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, + [113907] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5641), 23, + ACTIONS(6512), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6510), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5643), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -109304,48 +120569,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107500] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5645), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5647), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, + 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, + [113958] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6508), 3, anon_sym_in, - anon_sym_across, anon_sym_being, + anon_sym_do, + ACTIONS(6506), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -109357,48 +120617,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107556] = 3, + 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, + [114009] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5649), 23, + ACTIONS(6504), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6502), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5651), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -109410,48 +120665,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107612] = 3, + 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, + [114060] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5629), 23, + ACTIONS(6508), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6506), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5631), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -109463,48 +120713,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107668] = 3, + 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, + [114111] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5653), 23, + ACTIONS(6504), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6502), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5655), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -109516,48 +120761,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107724] = 3, + 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, + [114162] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5657), 23, + ACTIONS(6500), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6498), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5659), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -109569,48 +120809,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107780] = 3, + 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, + [114213] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5661), 23, + ACTIONS(6512), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6510), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5663), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -109622,48 +120857,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107836] = 3, + 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, + [114264] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5689), 23, + ACTIONS(6464), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6462), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5691), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -109675,48 +120905,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107892] = 3, + 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, + [114315] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5665), 23, + ACTIONS(6508), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6506), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5667), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -109728,124 +120953,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107948] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6371), 1, - anon_sym_POUND_, - ACTIONS(6374), 1, - anon_sym_CARET, - ACTIONS(6377), 1, - anon_sym_POUND_CARET, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6383), 1, - anon_sym_RPAREN, - ACTIONS(6385), 1, - anon_sym_cl, - ACTIONS(6388), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6394), 1, - anon_sym_and, - ACTIONS(6397), 1, - anon_sym_with, - ACTIONS(6400), 1, - anon_sym_do, - ACTIONS(6406), 1, - anon_sym_repeat, - ACTIONS(6412), 1, - anon_sym_else, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6368), 2, - sym__ws, - sym_comment, - ACTIONS(6391), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6403), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6415), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1245), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6409), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [108050] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [114366] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5669), 23, + ACTIONS(6504), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6502), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5671), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -109857,124 +121001,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108106] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - anon_sym_POUND_, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, aux_sym_accumulation_verb_token1, - ACTIONS(6172), 1, + anon_sym_for, anon_sym_and, - ACTIONS(6174), 1, + anon_sym_as, anon_sym_with, - ACTIONS(6176), 1, - anon_sym_do, - ACTIONS(6180), 1, + anon_sym_while, + anon_sym_until, anon_sym_repeat, - ACTIONS(6184), 1, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, anon_sym_else, - ACTIONS(6360), 1, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [114417] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6508), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6506), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(437), 1, - sym_accumulation_verb, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(6170), 2, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(6178), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(6418), 2, - sym__ws, - sym_comment, - ACTIONS(6186), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1852), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1157), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(6182), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2018), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [108208] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [114468] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5673), 23, + ACTIONS(6504), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(6502), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5675), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, anon_sym_across, - anon_sym_being, anon_sym_using, + aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, @@ -109986,19 +121097,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108264] = 3, + 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, + [114519] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5625), 4, - anon_sym_COLON, + ACTIONS(6500), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(5623), 41, + ACTIONS(6498), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -110036,18 +121163,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108317] = 5, + [114570] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6420), 1, - anon_sym_COLON, - ACTIONS(6422), 1, - anon_sym_COLON_COLON, - ACTIONS(5621), 3, + ACTIONS(6496), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(5619), 40, + ACTIONS(6494), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110088,18 +121211,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108374] = 5, + [114621] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6420), 1, - anon_sym_COLON, - ACTIONS(6422), 1, - anon_sym_COLON_COLON, - ACTIONS(5613), 3, + ACTIONS(6492), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(5611), 40, + ACTIONS(6490), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110140,18 +121259,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108431] = 5, + [114672] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6420), 1, - anon_sym_COLON, - ACTIONS(6422), 1, - anon_sym_COLON_COLON, - ACTIONS(5597), 3, + ACTIONS(6488), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(5595), 40, + ACTIONS(6486), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110192,16 +121307,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108488] = 4, + [114723] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6424), 1, - aux_sym_num_lit_token2, - ACTIONS(5583), 3, + ACTIONS(6484), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(5581), 40, + ACTIONS(6482), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110242,14 +121355,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108542] = 3, + [114774] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5923), 3, + ACTIONS(6484), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(5921), 40, + ACTIONS(6482), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110290,14 +121403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108593] = 3, + [114825] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5935), 3, + ACTIONS(6480), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(5933), 40, + ACTIONS(6478), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110338,14 +121451,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108644] = 3, + [114876] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5647), 3, + ACTIONS(6476), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(5645), 40, + ACTIONS(6474), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110386,14 +121499,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108695] = 3, + [114927] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5727), 3, + ACTIONS(6484), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(5725), 40, + ACTIONS(6482), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110434,14 +121547,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108746] = 3, + [114978] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5751), 3, + ACTIONS(6484), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(5749), 40, + ACTIONS(6482), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110482,14 +121595,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108797] = 3, + [115029] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5639), 3, + ACTIONS(6480), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(5637), 40, + ACTIONS(6478), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110530,14 +121643,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108848] = 3, + [115080] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5683), 3, + ACTIONS(6476), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(5681), 40, + ACTIONS(6474), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110578,14 +121691,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108899] = 3, + [115131] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5655), 3, + ACTIONS(6472), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(5653), 40, + ACTIONS(6470), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110626,14 +121739,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108950] = 3, + [115182] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5593), 3, + ACTIONS(6468), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(5591), 40, + ACTIONS(6466), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110674,5401 +121787,5510 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [109001] = 3, + [115233] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5593), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5591), 40, + ACTIONS(3030), 1, + anon_sym_lambda, + ACTIONS(7027), 1, + anon_sym_cl, + ACTIONS(7029), 1, + anon_sym_loop, + STATE(152), 1, + sym_defun_header, + STATE(760), 1, + sym_defun_keyword, + ACTIONS(3028), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(7025), 9, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(7023), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [115294] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3030), 1, + anon_sym_lambda, + ACTIONS(7031), 1, + anon_sym_cl, + ACTIONS(7033), 1, + anon_sym_loop, + STATE(254), 1, + sym_defun_header, + STATE(760), 1, + sym_defun_keyword, + ACTIONS(3028), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(7025), 9, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(7023), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [115355] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3030), 1, + anon_sym_lambda, + ACTIONS(7035), 1, + anon_sym_cl, + ACTIONS(7037), 1, + anon_sym_loop, + STATE(249), 1, + sym_defun_header, + STATE(760), 1, + sym_defun_keyword, + ACTIONS(3028), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(7025), 9, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(7023), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [115416] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3030), 1, + anon_sym_lambda, + ACTIONS(7039), 1, + anon_sym_cl, + ACTIONS(7041), 1, + anon_sym_loop, + STATE(213), 1, + sym_defun_header, + STATE(760), 1, + sym_defun_keyword, + ACTIONS(3028), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(7025), 9, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(7023), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [115477] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3030), 1, + anon_sym_lambda, + ACTIONS(7043), 1, + anon_sym_cl, + ACTIONS(7045), 1, + anon_sym_loop, + STATE(193), 1, + sym_defun_header, + STATE(760), 1, + sym_defun_keyword, + ACTIONS(3028), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(7025), 9, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(7023), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [115538] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3030), 1, + anon_sym_lambda, + ACTIONS(7047), 1, + anon_sym_cl, + ACTIONS(7049), 1, + anon_sym_loop, + STATE(164), 1, + sym_defun_header, + STATE(760), 1, + sym_defun_keyword, + ACTIONS(3028), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(7025), 9, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(7023), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [115599] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3030), 1, + anon_sym_lambda, + ACTIONS(7051), 1, + anon_sym_cl, + ACTIONS(7053), 1, + anon_sym_loop, + STATE(168), 1, + sym_defun_header, + STATE(760), 1, + sym_defun_keyword, + ACTIONS(3028), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(7025), 9, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(7023), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [115660] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3030), 1, + anon_sym_lambda, + ACTIONS(7055), 1, + anon_sym_cl, + ACTIONS(7057), 1, + anon_sym_loop, + STATE(188), 1, + sym_defun_header, + STATE(760), 1, + sym_defun_keyword, + ACTIONS(3028), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(7025), 9, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(7023), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [115721] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3030), 1, + anon_sym_lambda, + ACTIONS(7059), 1, + anon_sym_cl, + ACTIONS(7061), 1, + anon_sym_loop, + STATE(215), 1, + sym_defun_header, + STATE(760), 1, + sym_defun_keyword, + ACTIONS(3028), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(7025), 9, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(7023), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [115782] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3030), 1, + anon_sym_lambda, + ACTIONS(7063), 1, + anon_sym_cl, + ACTIONS(7065), 1, + anon_sym_loop, + STATE(227), 1, + sym_defun_header, + STATE(760), 1, + sym_defun_keyword, + ACTIONS(3028), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(7025), 9, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(7023), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [109052] = 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, + [115843] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5961), 40, + ACTIONS(7067), 1, + aux_sym_num_lit_token2, + ACTIONS(6140), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6138), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [109103] = 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, + [115893] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5959), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5957), 40, + ACTIONS(6504), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6502), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [109154] = 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, + [115940] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5589), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5587), 40, + ACTIONS(6504), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6502), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [109205] = 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, + [115987] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5687), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5685), 40, + ACTIONS(6424), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6422), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [109256] = 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, + [116034] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5691), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5689), 40, + ACTIONS(6420), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6418), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [109307] = 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, + [116081] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5631), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5629), 40, + ACTIONS(6432), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6430), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [109358] = 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, + [116128] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5699), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5697), 40, + ACTIONS(6424), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6422), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [109409] = 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [116175] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5703), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5701), 40, + ACTIONS(6420), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6418), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [109460] = 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, + [116222] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5589), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5587), 40, + ACTIONS(6416), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6414), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [109511] = 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, + [116269] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5707), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5705), 40, + ACTIONS(6412), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6410), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [109562] = 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, + [116316] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5961), 40, + ACTIONS(6162), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6160), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [109613] = 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, + [116363] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5715), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5713), 40, + ACTIONS(6162), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6160), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [109664] = 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, + [116410] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5959), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5957), 40, + ACTIONS(6405), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6403), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [109715] = 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, + [116457] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5719), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5717), 40, + ACTIONS(6358), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6356), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [109766] = 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, + [116504] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5589), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5587), 40, + ACTIONS(6512), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6510), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [109817] = 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, + [116551] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5589), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5587), 40, + ACTIONS(6436), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6434), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [109868] = 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, + [116598] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5955), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5953), 40, + ACTIONS(6394), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6392), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [109919] = 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, + [116645] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5949), 40, + ACTIONS(6440), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6438), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [109970] = 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, + [116692] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5947), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5945), 40, + ACTIONS(6444), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6442), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [110021] = 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, + [116739] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5943), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5941), 40, + ACTIONS(6394), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6392), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [110072] = 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, + [116786] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5711), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5709), 40, + ACTIONS(6390), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6388), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [110123] = 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, + [116833] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5723), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5721), 40, + ACTIONS(6386), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6384), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [110174] = 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, + [116880] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5631), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5629), 40, + ACTIONS(6382), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6380), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [110225] = 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, + [116927] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5731), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5729), 40, + ACTIONS(6378), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6376), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [110276] = 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, + [116974] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5763), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5761), 40, + ACTIONS(6374), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6372), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [110327] = 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, + [117021] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5947), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5945), 40, + ACTIONS(6448), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6446), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [110378] = 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, + [117068] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5735), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5733), 40, + ACTIONS(6370), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6368), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [110429] = 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, + [117115] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5739), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5737), 40, + ACTIONS(6366), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6364), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [110480] = 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, + [117162] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6428), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(6426), 40, + ACTIONS(6362), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6360), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [110531] = 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, + [117209] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6428), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(6426), 40, + ACTIONS(6448), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6446), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [110582] = 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, + [117256] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5743), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5741), 40, + ACTIONS(6354), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6352), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [110633] = 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, + [117303] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5747), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5745), 40, + ACTIONS(6350), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6348), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [110684] = 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, + [117350] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5667), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5665), 40, + ACTIONS(6346), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6344), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [110735] = 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, + [117397] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5755), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5753), 40, + ACTIONS(6342), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6340), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [110786] = 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, + [117444] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5759), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5757), 40, + ACTIONS(6452), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6450), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [110837] = 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, + [117491] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5767), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5765), 40, + ACTIONS(6452), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6450), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [110888] = 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, + [117538] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5771), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5769), 40, + ACTIONS(6456), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6454), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [110939] = 3, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [117585] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5943), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5941), 40, + ACTIONS(6338), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6336), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [110990] = 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, + [117632] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5939), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5937), 40, + ACTIONS(6460), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6458), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [111041] = 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, + [117679] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5949), 40, + ACTIONS(6334), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6332), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [111092] = 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, + [117726] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5943), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5941), 40, + ACTIONS(6464), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6462), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [111143] = 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, + [117773] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5947), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5945), 40, + ACTIONS(6330), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6328), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [111194] = 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, + [117820] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5943), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5941), 40, + ACTIONS(6326), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6324), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [111245] = 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, + [117867] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6432), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(6430), 40, + ACTIONS(6322), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6320), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [111296] = 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, + [117914] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5775), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5773), 40, + ACTIONS(6468), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6466), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [111347] = 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, + [117961] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5791), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5789), 40, + ACTIONS(6401), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6399), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [111398] = 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, + [118008] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5815), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5813), 40, + ACTIONS(6318), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6316), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [111449] = 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, + [118055] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5779), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5777), 40, + ACTIONS(6314), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6312), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [111500] = 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, + [118102] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5783), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5781), 40, + ACTIONS(6310), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6308), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [111551] = 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, + [118149] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5787), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5785), 40, + ACTIONS(6306), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6304), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [111602] = 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, + [118196] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5939), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5937), 40, + ACTIONS(6302), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6300), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [111653] = 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, + [118243] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5675), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5673), 40, + ACTIONS(6298), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6296), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [111704] = 3, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [118290] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5795), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5793), 40, + ACTIONS(6294), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6292), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [111755] = 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, + [118337] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5799), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5797), 40, + ACTIONS(6290), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6288), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [111806] = 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, + [118384] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5803), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5801), 40, + ACTIONS(6286), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6284), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [111857] = 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, + [118431] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5663), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5661), 40, + ACTIONS(6282), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6280), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [111908] = 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, + [118478] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5643), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5641), 40, + ACTIONS(6278), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6276), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [111959] = 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, + [118525] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5807), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5805), 40, + ACTIONS(6274), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6272), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [112010] = 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, + [118572] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5811), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5809), 40, + ACTIONS(6270), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6268), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [118619] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6266), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [112061] = 3, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6264), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [118666] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5931), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5929), 40, + ACTIONS(6262), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6260), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [112112] = 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, + [118713] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5927), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5925), 40, + ACTIONS(6258), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6256), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [112163] = 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, + [118760] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5923), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5921), 40, + ACTIONS(6190), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6188), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [112214] = 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, + [118807] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5819), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5817), 40, + ACTIONS(6254), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6252), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [112265] = 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, + [118854] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5823), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5821), 40, + ACTIONS(6250), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6248), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [112316] = 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, + [118901] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5947), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5945), 40, + ACTIONS(6246), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6244), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [112367] = 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, + [118948] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5679), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5677), 40, + ACTIONS(6472), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6470), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [112418] = 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, + [118995] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5915), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5913), 40, + ACTIONS(6476), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6474), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [112469] = 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, + [119042] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5923), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5921), 40, + ACTIONS(6480), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6478), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [112520] = 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, + [119089] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5923), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5921), 40, + ACTIONS(6484), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6482), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [112571] = 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, + [119136] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5917), 40, + ACTIONS(6242), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6240), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [112622] = 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, + [119183] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5831), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5829), 40, + ACTIONS(6484), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6482), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [112673] = 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, + [119230] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5915), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5913), 40, + ACTIONS(6238), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6236), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [112724] = 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, + [119277] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5911), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5909), 40, + ACTIONS(6476), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6474), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [112775] = 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, + [119324] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5917), 40, + ACTIONS(6234), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6232), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [112826] = 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, + [119371] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5907), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5905), 40, + ACTIONS(6480), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6478), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [112877] = 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, + [119418] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5835), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5833), 40, + ACTIONS(6230), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6228), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [112928] = 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, + [119465] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5839), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5837), 40, + ACTIONS(6428), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6426), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [112979] = 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, + [119512] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5843), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5841), 40, + ACTIONS(6484), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6482), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [113030] = 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, + [119559] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5903), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5901), 40, + ACTIONS(6226), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6224), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [113081] = 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, + [119606] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5847), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5845), 40, + ACTIONS(6484), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6482), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [113132] = 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, + [119653] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5847), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5845), 40, + ACTIONS(6222), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6220), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [119700] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6218), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [113183] = 3, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6216), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [119747] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5899), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5897), 40, + ACTIONS(6214), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6212), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [113234] = 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, + [119794] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5827), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5825), 40, + ACTIONS(6190), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6188), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [113285] = 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, + [119841] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5895), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5893), 40, + ACTIONS(6210), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6208), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [113336] = 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, + [119888] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5891), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5889), 40, + ACTIONS(6206), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6204), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [113387] = 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, + [119935] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5891), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5889), 40, + ACTIONS(6202), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6200), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [113438] = 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, + [119982] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5887), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5885), 40, + ACTIONS(6198), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6196), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [113489] = 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, + [120029] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5887), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5885), 40, + ACTIONS(6194), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6192), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [113540] = 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, + [120076] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5883), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5881), 40, + ACTIONS(6190), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6188), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [113591] = 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, + [120123] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5635), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5633), 40, + ACTIONS(7069), 1, + anon_sym_COLON, + ACTIONS(7071), 1, + anon_sym_COLON_COLON, + ACTIONS(6182), 15, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6180), 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_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [113642] = 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, + [120174] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5879), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5877), 40, + ACTIONS(6186), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6184), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [113693] = 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, + [120221] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5875), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5873), 40, + ACTIONS(6182), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6180), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [113744] = 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, + [120268] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5871), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5869), 40, + ACTIONS(6488), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6486), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [113795] = 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, + [120315] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5835), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5833), 40, + ACTIONS(6178), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6176), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [113846] = 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, + [120362] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5651), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5649), 40, + ACTIONS(6174), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6172), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [113897] = 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, + [120409] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5867), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5865), 40, + ACTIONS(6170), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6168), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [113948] = 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, + [120456] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6436), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(6434), 40, + ACTIONS(7069), 1, + anon_sym_COLON, + ACTIONS(7071), 1, + anon_sym_COLON_COLON, + ACTIONS(6166), 15, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6164), 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_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [113999] = 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, + [120507] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5609), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5607), 40, + ACTIONS(7069), 1, + anon_sym_COLON, + ACTIONS(7071), 1, + anon_sym_COLON_COLON, + ACTIONS(6154), 15, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6152), 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_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [114050] = 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, + [120558] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5863), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5861), 40, + ACTIONS(6146), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6144), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [114101] = 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, + [120605] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5859), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5857), 40, + ACTIONS(6146), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6144), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [114152] = 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, + [120652] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5863), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5861), 40, + ACTIONS(6492), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6490), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [114203] = 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, + [120699] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5859), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5857), 40, + ACTIONS(6496), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6494), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [114254] = 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, + [120746] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5855), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5853), 40, + ACTIONS(6500), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6498), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [114305] = 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, + [120793] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5631), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5629), 40, + ACTIONS(6504), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6502), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [114356] = 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, + [120840] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6440), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(6438), 40, + ACTIONS(6508), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6506), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [114407] = 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, + [120887] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5851), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5849), 40, + ACTIONS(6504), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6502), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [114458] = 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, + [120934] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5605), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5603), 40, + ACTIONS(6150), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6148), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [114509] = 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, + [120981] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5671), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5669), 40, + ACTIONS(6508), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6506), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [114560] = 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, + [121028] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5597), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5595), 40, + ACTIONS(6512), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6510), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [114611] = 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, + [121075] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5967), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5965), 40, + ACTIONS(6500), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6498), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [114662] = 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, + [121122] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5659), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(5657), 40, + ACTIONS(6528), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6526), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_cl, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [114713] = 9, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121169] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2441), 1, - anon_sym_lambda, - ACTIONS(6446), 1, - anon_sym_cl, - ACTIONS(6448), 1, - anon_sym_loop, - STATE(197), 1, - sym_defun_header, - STATE(668), 1, - sym_defun_keyword, - ACTIONS(2439), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(6444), 9, + ACTIONS(6524), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116078,7 +127300,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(6442), 23, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6522), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116102,25 +127331,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [114774] = 9, + [121216] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2441), 1, - anon_sym_lambda, - ACTIONS(6450), 1, - anon_sym_cl, - ACTIONS(6452), 1, - anon_sym_loop, - STATE(96), 1, - sym_defun_header, - STATE(668), 1, - sym_defun_keyword, - ACTIONS(2439), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(6444), 9, + ACTIONS(6520), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116130,7 +127344,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(6442), 23, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6518), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116154,25 +127375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [114835] = 9, + [121263] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2441), 1, - anon_sym_lambda, - ACTIONS(6454), 1, - anon_sym_cl, - ACTIONS(6456), 1, - anon_sym_loop, - STATE(136), 1, - sym_defun_header, - STATE(668), 1, - sym_defun_keyword, - ACTIONS(2439), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(6444), 9, + ACTIONS(6508), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116182,7 +127388,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(6442), 23, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6506), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116206,25 +127419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [114896] = 9, + [121310] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2441), 1, - anon_sym_lambda, - ACTIONS(6458), 1, - anon_sym_cl, - ACTIONS(6460), 1, - anon_sym_loop, - STATE(160), 1, - sym_defun_header, - STATE(668), 1, - sym_defun_keyword, - ACTIONS(2439), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(6444), 9, + ACTIONS(6520), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116234,7 +127432,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(6442), 23, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6518), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116258,25 +127463,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [114957] = 9, + [121357] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2441), 1, - anon_sym_lambda, - ACTIONS(6462), 1, - anon_sym_cl, - ACTIONS(6464), 1, - anon_sym_loop, - STATE(163), 1, - sym_defun_header, - STATE(668), 1, - sym_defun_keyword, - ACTIONS(2439), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(6444), 9, + ACTIONS(6528), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116286,7 +127476,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(6442), 23, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6526), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116310,25 +127507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [115018] = 9, + [121404] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2441), 1, - anon_sym_lambda, - ACTIONS(6466), 1, - anon_sym_cl, - ACTIONS(6468), 1, - anon_sym_loop, - STATE(130), 1, - sym_defun_header, - STATE(668), 1, - sym_defun_keyword, - ACTIONS(2439), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(6444), 9, + ACTIONS(6524), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116338,7 +127520,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(6442), 23, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6522), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116362,25 +127551,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [115079] = 9, + [121451] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2441), 1, - anon_sym_lambda, - ACTIONS(6470), 1, - anon_sym_cl, - ACTIONS(6472), 1, - anon_sym_loop, - STATE(94), 1, - sym_defun_header, - STATE(668), 1, - sym_defun_keyword, - ACTIONS(2439), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(6444), 9, + ACTIONS(6520), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116390,7 +127564,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(6442), 23, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6518), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116414,25 +127595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [115140] = 9, + [121498] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2441), 1, - anon_sym_lambda, - ACTIONS(6474), 1, - anon_sym_cl, - ACTIONS(6476), 1, - anon_sym_loop, - STATE(152), 1, - sym_defun_header, - STATE(668), 1, - sym_defun_keyword, - ACTIONS(2439), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(6444), 9, + ACTIONS(6520), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116442,7 +127608,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(6442), 23, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6518), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116466,25 +127639,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [115201] = 9, + [121545] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2441), 1, - anon_sym_lambda, - ACTIONS(6478), 1, + ACTIONS(6516), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(6480), 1, anon_sym_loop, - STATE(189), 1, - sym_defun_header, - STATE(668), 1, - sym_defun_keyword, - ACTIONS(2439), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(6444), 9, + anon_sym_lambda, + ACTIONS(6514), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121592] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6508), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116494,7 +127696,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(6442), 23, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(6506), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116518,554 +127727,1184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [115262] = 9, + [121639] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7073), 1, + anon_sym_POUND, + ACTIONS(7075), 1, + aux_sym_num_lit_token1, + ACTIONS(7079), 1, + anon_sym_DQUOTE, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7085), 1, + anon_sym_COMMA, + ACTIONS(7091), 1, + anon_sym_SLASH, + STATE(1836), 1, + sym_format_prefix_parameters, + STATE(2238), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3545), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7087), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [121711] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7073), 1, + anon_sym_POUND, + ACTIONS(7075), 1, + aux_sym_num_lit_token1, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7085), 1, + anon_sym_COMMA, + ACTIONS(7091), 1, + anon_sym_SLASH, + ACTIONS(7093), 1, + anon_sym_DQUOTE, + STATE(1836), 1, + sym_format_prefix_parameters, + STATE(2238), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3545), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7087), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [121783] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7073), 1, + anon_sym_POUND, + ACTIONS(7075), 1, + aux_sym_num_lit_token1, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7085), 1, + anon_sym_COMMA, + ACTIONS(7091), 1, + anon_sym_SLASH, + ACTIONS(7095), 1, + anon_sym_DQUOTE, + STATE(1836), 1, + sym_format_prefix_parameters, + STATE(2238), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3545), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7087), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [121855] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7073), 1, + anon_sym_POUND, + ACTIONS(7075), 1, + aux_sym_num_lit_token1, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7085), 1, + anon_sym_COMMA, + ACTIONS(7091), 1, + anon_sym_SLASH, + ACTIONS(7097), 1, + anon_sym_DQUOTE, + STATE(1836), 1, + sym_format_prefix_parameters, + STATE(2238), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3545), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7087), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [121927] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7073), 1, + anon_sym_POUND, + ACTIONS(7075), 1, + aux_sym_num_lit_token1, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7085), 1, + anon_sym_COMMA, + ACTIONS(7091), 1, + anon_sym_SLASH, + ACTIONS(7099), 1, + anon_sym_DQUOTE, + STATE(1836), 1, + sym_format_prefix_parameters, + STATE(2238), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3545), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7087), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [121999] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7073), 1, + anon_sym_POUND, + ACTIONS(7075), 1, + aux_sym_num_lit_token1, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7085), 1, + anon_sym_COMMA, + ACTIONS(7091), 1, + anon_sym_SLASH, + ACTIONS(7101), 1, + anon_sym_DQUOTE, + STATE(1836), 1, + sym_format_prefix_parameters, + STATE(2238), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3545), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7087), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [122071] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7073), 1, + anon_sym_POUND, + ACTIONS(7075), 1, + aux_sym_num_lit_token1, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7085), 1, + anon_sym_COMMA, + ACTIONS(7091), 1, + anon_sym_SLASH, + ACTIONS(7103), 1, + anon_sym_DQUOTE, + STATE(1836), 1, + sym_format_prefix_parameters, + STATE(2238), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3545), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7087), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [122143] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7073), 1, + anon_sym_POUND, + ACTIONS(7075), 1, + aux_sym_num_lit_token1, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7085), 1, + anon_sym_COMMA, + ACTIONS(7091), 1, + anon_sym_SLASH, + ACTIONS(7105), 1, + anon_sym_DQUOTE, + STATE(1836), 1, + sym_format_prefix_parameters, + STATE(2238), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3545), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7087), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [122215] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2441), 1, - anon_sym_lambda, - ACTIONS(6482), 1, - anon_sym_cl, - ACTIONS(6484), 1, - anon_sym_loop, - STATE(192), 1, - sym_defun_header, - STATE(668), 1, - sym_defun_keyword, - ACTIONS(2439), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(6444), 9, + ACTIONS(7073), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(7075), 1, aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7085), 1, anon_sym_COMMA, - sym_fancy_literal, - ACTIONS(6442), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(7091), 1, + anon_sym_SLASH, + ACTIONS(7107), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [115323] = 4, + STATE(1836), 1, + sym_format_prefix_parameters, + STATE(2238), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3545), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7087), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [122287] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6486), 1, - aux_sym_num_lit_token2, - ACTIONS(5583), 16, + ACTIONS(7073), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(7075), 1, aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7085), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5581), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(7091), 1, + anon_sym_SLASH, + ACTIONS(7109), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [115373] = 3, + STATE(1836), 1, + sym_format_prefix_parameters, + STATE(2238), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3545), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7087), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [122359] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5939), 16, + ACTIONS(7073), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(7075), 1, aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7085), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5937), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(7091), 1, + anon_sym_SLASH, + ACTIONS(7111), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [115420] = 3, + STATE(1836), 1, + sym_format_prefix_parameters, + STATE(2238), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3545), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7087), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [122431] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5731), 16, + ACTIONS(7073), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(7075), 1, aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7085), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5729), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(7091), 1, + anon_sym_SLASH, + ACTIONS(7113), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [115467] = 5, + STATE(1836), 1, + sym_format_prefix_parameters, + STATE(2238), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3545), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7087), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [122503] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6488), 1, - anon_sym_COLON, - ACTIONS(6490), 1, - anon_sym_COLON_COLON, - ACTIONS(5621), 15, + ACTIONS(7073), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(7075), 1, aux_sym_num_lit_token1, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7085), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5619), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(7091), 1, + anon_sym_SLASH, + ACTIONS(7115), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [115518] = 5, + STATE(1836), 1, + sym_format_prefix_parameters, + STATE(2238), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3545), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7087), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [122575] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6488), 1, - anon_sym_COLON, - ACTIONS(6490), 1, - anon_sym_COLON_COLON, - ACTIONS(5613), 15, + ACTIONS(7073), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(7075), 1, aux_sym_num_lit_token1, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7085), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5611), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(7091), 1, + anon_sym_SLASH, + ACTIONS(7117), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [115569] = 3, + STATE(1836), 1, + sym_format_prefix_parameters, + STATE(2238), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3545), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7087), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [122647] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5609), 16, + ACTIONS(7073), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(7075), 1, aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7085), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5607), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(7091), 1, + anon_sym_SLASH, + ACTIONS(7119), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [115616] = 3, + STATE(1836), 1, + sym_format_prefix_parameters, + STATE(2238), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3545), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7087), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [122719] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5605), 16, + ACTIONS(7073), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(7075), 1, aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7085), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5603), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(7091), 1, + anon_sym_SLASH, + ACTIONS(7121), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [115663] = 3, + STATE(1836), 1, + sym_format_prefix_parameters, + STATE(2238), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3545), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7087), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [122791] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5601), 16, + ACTIONS(7073), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(7075), 1, aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7085), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5599), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(7091), 1, + anon_sym_SLASH, + ACTIONS(7123), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [115710] = 3, + STATE(1836), 1, + sym_format_prefix_parameters, + STATE(2238), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3545), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7087), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [122863] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5597), 16, + ACTIONS(7073), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(7075), 1, aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7085), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5595), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(7091), 1, + anon_sym_SLASH, + ACTIONS(7125), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [115757] = 3, + STATE(1836), 1, + sym_format_prefix_parameters, + STATE(2238), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3545), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7087), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [122935] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5967), 16, + ACTIONS(7073), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(7075), 1, aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7085), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5965), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(7091), 1, + anon_sym_SLASH, + ACTIONS(7127), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [115804] = 5, + STATE(1836), 1, + sym_format_prefix_parameters, + STATE(2238), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3545), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7087), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [123007] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6488), 1, - anon_sym_COLON, - ACTIONS(6490), 1, - anon_sym_COLON_COLON, - ACTIONS(5597), 15, + ACTIONS(7073), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(7075), 1, aux_sym_num_lit_token1, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7085), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5595), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(7091), 1, + anon_sym_SLASH, + ACTIONS(7129), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, + STATE(1836), 1, + sym_format_prefix_parameters, + STATE(2238), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3545), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7087), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [123079] = 15, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7073), 1, + anon_sym_POUND, + ACTIONS(7075), 1, + aux_sym_num_lit_token1, + ACTIONS(7083), 1, anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [115855] = 3, + ACTIONS(7085), 1, + anon_sym_COMMA, + ACTIONS(7091), 1, + anon_sym_SLASH, + STATE(1836), 1, + sym_format_prefix_parameters, + STATE(2238), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3545), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7087), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [123148] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5631), 16, + ACTIONS(6468), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117076,13 +128915,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5629), 23, + ACTIONS(6466), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117092,6 +128926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117106,10 +128942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [115902] = 3, + [123192] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5635), 16, + ACTIONS(6222), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117120,13 +128956,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5633), 23, + ACTIONS(6220), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117136,6 +128967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117150,10 +128983,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [115949] = 3, + [123236] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5639), 16, + ACTIONS(7131), 1, + aux_sym_num_lit_token2, + ACTIONS(6140), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117164,13 +128999,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5637), 23, + ACTIONS(6138), 25, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117180,6 +129010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117194,10 +129025,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [115996] = 3, + [123282] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5643), 16, + ACTIONS(6190), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117208,13 +129039,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5641), 23, + ACTIONS(6188), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117224,6 +129050,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117238,10 +129066,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [116043] = 3, + [123326] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5647), 16, + ACTIONS(6412), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117252,13 +129080,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5645), 23, + ACTIONS(6410), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117268,6 +129091,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117282,10 +129107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [116090] = 3, + [123370] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5651), 16, + ACTIONS(6250), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117296,13 +129121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5649), 23, + ACTIONS(6248), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117312,6 +129132,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117326,10 +129148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [116137] = 3, + [123414] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5631), 16, + ACTIONS(6162), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117340,13 +129162,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5629), 23, + ACTIONS(6160), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117356,6 +129173,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117370,10 +129189,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [116184] = 3, + [123458] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5655), 16, + ACTIONS(6254), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117384,13 +129203,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5653), 23, + ACTIONS(6252), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117400,6 +129214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117414,10 +129230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [116231] = 3, + [123502] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5659), 16, + ACTIONS(6500), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117428,13 +129244,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5657), 23, + ACTIONS(6498), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117444,6 +129255,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117458,10 +129271,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [116278] = 3, + [123546] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5663), 16, + ACTIONS(6190), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117472,13 +129285,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5661), 23, + ACTIONS(6188), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117488,6 +129296,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117502,10 +129312,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [116325] = 3, + [123590] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5667), 16, + ACTIONS(6262), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117516,13 +129326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5665), 23, + ACTIONS(6260), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117532,6 +129337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117546,10 +129353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [116372] = 3, + [123634] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5671), 16, + ACTIONS(6266), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117560,13 +129367,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5669), 23, + ACTIONS(6264), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117576,6 +129378,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117590,10 +129394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [116419] = 3, + [123678] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5675), 16, + ACTIONS(6354), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117604,13 +129408,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5673), 23, + ACTIONS(6352), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117620,6 +129419,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117634,10 +129435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [116466] = 3, + [123722] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5679), 16, + ACTIONS(6270), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117648,13 +129449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5677), 23, + ACTIONS(6268), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117664,6 +129460,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117678,10 +129476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [116513] = 3, + [123766] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5683), 16, + ACTIONS(6210), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117692,13 +129490,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5681), 23, + ACTIONS(6208), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117708,6 +129501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117722,10 +129517,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [116560] = 3, + [123810] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5687), 16, + ACTIONS(6146), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117736,13 +129531,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5685), 23, + ACTIONS(6144), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117752,6 +129542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117766,10 +129558,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [116607] = 3, + [123854] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5691), 16, + ACTIONS(6484), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117780,13 +129572,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5689), 23, + ACTIONS(6482), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117796,6 +129583,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117810,10 +129599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [116654] = 3, + [123898] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5695), 16, + ACTIONS(6484), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117824,13 +129613,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5693), 23, + ACTIONS(6482), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117840,6 +129624,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117854,10 +129640,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [116701] = 3, + [123942] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5631), 16, + ACTIONS(6480), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117868,13 +129654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5629), 23, + ACTIONS(6478), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117884,6 +129665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117898,10 +129681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [116748] = 3, + [123986] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5699), 16, + ACTIONS(6278), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117912,13 +129695,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5697), 23, + ACTIONS(6276), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117928,6 +129706,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117942,10 +129722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [116795] = 3, + [124030] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5703), 16, + ACTIONS(6476), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117956,13 +129736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5701), 23, + ACTIONS(6474), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117972,6 +129747,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117986,10 +129763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [116842] = 3, + [124074] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5707), 16, + ACTIONS(6282), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118000,13 +129777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5705), 23, + ACTIONS(6280), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -118016,6 +129788,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -118030,10 +129804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [116889] = 3, + [124118] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5711), 16, + ACTIONS(6350), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118044,13 +129818,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5709), 23, + ACTIONS(6348), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -118060,6 +129829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -118074,10 +129845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [116936] = 3, + [124162] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5715), 16, + ACTIONS(6358), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118088,13 +129859,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5713), 23, + ACTIONS(6356), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -118104,6 +129870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -118118,10 +129886,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [116983] = 3, + [124206] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5719), 16, + ACTIONS(6286), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118132,13 +129900,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5717), 23, + ACTIONS(6284), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -118148,6 +129911,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -118162,10 +129927,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [117030] = 3, + [124250] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5723), 16, + ACTIONS(6484), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118176,13 +129941,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5721), 23, + ACTIONS(6482), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -118192,6 +129952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -118206,10 +129968,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [117077] = 3, + [124294] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5727), 16, + ACTIONS(6206), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118220,13 +129982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5725), 23, + ACTIONS(6204), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -118236,6 +129993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -118250,10 +130009,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [117124] = 3, + [124338] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5735), 16, + ACTIONS(6202), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118264,13 +130023,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5733), 23, + ACTIONS(6200), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -118280,6 +130034,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -118294,10 +130050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [117171] = 3, + [124382] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5739), 16, + ACTIONS(6198), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118308,13 +130064,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5737), 23, + ACTIONS(6196), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -118324,6 +130075,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -118338,10 +130091,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [117218] = 3, + [124426] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5743), 16, + ACTIONS(6194), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118352,13 +130105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5741), 23, + ACTIONS(6192), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -118368,6 +130116,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -118382,10 +130132,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [117265] = 3, + [124470] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5747), 16, + ACTIONS(6484), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118396,13 +130146,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5745), 23, + ACTIONS(6482), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -118412,6 +130157,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -118426,10 +130173,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [117312] = 3, + [124514] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5751), 16, + ACTIONS(6190), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118440,13 +130187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5749), 23, + ACTIONS(6188), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -118456,6 +130198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -118470,80 +130214,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [117359] = 3, + [124558] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5755), 16, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(7133), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5753), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(7135), 1, anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [117406] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5759), 16, + ACTIONS(6182), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5757), 23, + ACTIONS(6180), 25, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -118558,10 +130257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [117453] = 3, + [124606] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5763), 16, + ACTIONS(6186), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118572,13 +130271,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5761), 23, + ACTIONS(6184), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -118588,6 +130282,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -118602,10 +130298,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [117500] = 3, + [124650] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5767), 16, + ACTIONS(6182), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118616,13 +130312,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5765), 23, + ACTIONS(6180), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -118632,6 +130323,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -118646,10 +130339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [117547] = 3, + [124694] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5771), 16, + ACTIONS(6480), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118660,13 +130353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5769), 23, + ACTIONS(6478), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -118676,6 +130364,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -118690,10 +130380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [117594] = 3, + [124738] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5775), 16, + ACTIONS(6476), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118704,13 +130394,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5773), 23, + ACTIONS(6474), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -118720,6 +130405,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -118734,10 +130421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [117641] = 3, + [124782] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5779), 16, + ACTIONS(6178), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118748,13 +130435,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5777), 23, + ACTIONS(6176), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -118764,6 +130446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -118778,10 +130462,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [117688] = 3, + [124826] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5783), 16, + ACTIONS(6174), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118792,13 +130476,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5781), 23, + ACTIONS(6172), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -118808,6 +130487,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -118822,10 +130503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [117735] = 3, + [124870] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5787), 16, + ACTIONS(6170), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118836,13 +130517,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5785), 23, + ACTIONS(6168), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -118852,6 +130528,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -118866,10 +130544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [117782] = 3, + [124914] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5791), 16, + ACTIONS(6362), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118880,13 +130558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5789), 23, + ACTIONS(6360), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -118896,6 +130569,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124958] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7133), 1, + anon_sym_COLON, + ACTIONS(7135), 1, + anon_sym_COLON_COLON, + ACTIONS(6166), 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(6164), 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, @@ -118910,10 +130628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [117829] = 3, + [125006] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5795), 16, + ACTIONS(6366), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118924,13 +130642,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5793), 23, + ACTIONS(6364), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -118940,6 +130653,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -118954,10 +130669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [117876] = 3, + [125050] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5799), 16, + ACTIONS(6370), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118968,13 +130683,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5797), 23, + ACTIONS(6368), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -118984,6 +130694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -118998,10 +130710,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [117923] = 3, + [125094] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5625), 16, + ACTIONS(6342), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119012,13 +130724,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5623), 23, + ACTIONS(6340), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119028,6 +130735,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119042,10 +130751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [117970] = 3, + [125138] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5807), 16, + ACTIONS(6242), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119056,13 +130765,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5805), 23, + ACTIONS(6240), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119072,6 +130776,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119086,10 +130792,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118017] = 3, + [125182] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5811), 16, + ACTIONS(7133), 1, + anon_sym_COLON, + ACTIONS(7135), 1, + anon_sym_COLON_COLON, + ACTIONS(6154), 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(6152), 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, + [125230] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6374), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119100,13 +130849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5809), 23, + ACTIONS(6372), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119116,6 +130860,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119130,10 +130876,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118064] = 3, + [125274] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5815), 16, + ACTIONS(6378), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119144,13 +130890,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5813), 23, + ACTIONS(6376), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119160,6 +130901,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119174,10 +130917,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118111] = 3, + [125318] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5819), 16, + ACTIONS(6452), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119188,13 +130931,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5817), 23, + ACTIONS(6450), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119204,6 +130942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119218,10 +130958,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118158] = 3, + [125362] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 16, + ACTIONS(6150), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119232,13 +130972,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5917), 23, + ACTIONS(6148), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119248,6 +130983,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119262,10 +130999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118205] = 3, + [125406] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5823), 16, + ACTIONS(6472), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119276,13 +131013,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5821), 23, + ACTIONS(6470), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119292,6 +131024,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119306,10 +131040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118252] = 3, + [125450] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5827), 16, + ACTIONS(6246), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119320,13 +131054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5825), 23, + ACTIONS(6244), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119336,6 +131065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119350,10 +131081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118299] = 3, + [125494] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5831), 16, + ACTIONS(6464), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119364,13 +131095,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5829), 23, + ACTIONS(6462), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119380,6 +131106,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119394,10 +131122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118346] = 3, + [125538] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5835), 16, + ACTIONS(6290), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119408,13 +131136,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5833), 23, + ACTIONS(6288), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119424,6 +131147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119438,10 +131163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118393] = 3, + [125582] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5835), 16, + ACTIONS(6460), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119452,13 +131177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5833), 23, + ACTIONS(6458), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119468,6 +131188,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119482,10 +131204,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118440] = 3, + [125626] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5839), 16, + ACTIONS(6218), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119496,13 +131218,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5837), 23, + ACTIONS(6216), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119512,6 +131229,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119526,10 +131245,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118487] = 3, + [125670] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5843), 16, + ACTIONS(6146), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119540,13 +131259,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5841), 23, + ACTIONS(6144), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119556,6 +131270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119570,10 +131286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118534] = 3, + [125714] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5847), 16, + ACTIONS(6382), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119584,13 +131300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5845), 23, + ACTIONS(6380), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119600,6 +131311,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119614,10 +131327,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118581] = 3, + [125758] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5847), 16, + ACTIONS(6386), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119628,13 +131341,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5845), 23, + ACTIONS(6384), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119644,6 +131352,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119658,10 +131368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118628] = 3, + [125802] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5851), 16, + ACTIONS(6394), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119672,13 +131382,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5849), 23, + ACTIONS(6392), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119688,6 +131393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119702,10 +131409,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118675] = 3, + [125846] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5855), 16, + ACTIONS(6294), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119716,13 +131423,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5853), 23, + ACTIONS(6292), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119732,6 +131434,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119746,10 +131450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118722] = 3, + [125890] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5859), 16, + ACTIONS(6390), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119760,13 +131464,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5857), 23, + ACTIONS(6388), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119776,6 +131475,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119790,10 +131491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118769] = 3, + [125934] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5863), 16, + ACTIONS(6214), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119804,13 +131505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5861), 23, + ACTIONS(6212), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119820,6 +131516,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119834,10 +131532,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118816] = 3, + [125978] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5859), 16, + ACTIONS(6346), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119848,13 +131546,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5857), 23, + ACTIONS(6344), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119864,6 +131557,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119878,10 +131573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118863] = 3, + [126022] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5863), 16, + ACTIONS(6456), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119892,13 +131587,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5861), 23, + ACTIONS(6454), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119908,6 +131598,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119922,10 +131614,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118910] = 3, + [126066] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5867), 16, + ACTIONS(6298), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119936,13 +131628,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5865), 23, + ACTIONS(6296), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119952,6 +131639,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -119966,10 +131655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118957] = 3, + [126110] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5871), 16, + ACTIONS(6226), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119980,13 +131669,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5869), 23, + ACTIONS(6224), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -119996,6 +131680,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120010,10 +131696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119004] = 3, + [126154] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5875), 16, + ACTIONS(6452), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120024,13 +131710,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5873), 23, + ACTIONS(6450), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120040,6 +131721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120054,10 +131737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119051] = 3, + [126198] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5879), 16, + ACTIONS(6448), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120068,13 +131751,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5877), 23, + ACTIONS(6446), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120084,6 +131762,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120098,10 +131778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119098] = 3, + [126242] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5883), 16, + ACTIONS(6448), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120112,13 +131792,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5881), 23, + ACTIONS(6446), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120128,6 +131803,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120142,10 +131819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119145] = 3, + [126286] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5887), 16, + ACTIONS(6444), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120156,13 +131833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5885), 23, + ACTIONS(6442), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120172,6 +131844,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120186,10 +131860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119192] = 3, + [126330] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5887), 16, + ACTIONS(6302), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120200,13 +131874,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5885), 23, + ACTIONS(6300), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120216,6 +131885,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120230,10 +131901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119239] = 3, + [126374] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5891), 16, + ACTIONS(6528), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120244,13 +131915,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5889), 23, + ACTIONS(6526), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120260,6 +131926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120274,10 +131942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119286] = 3, + [126418] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5891), 16, + ACTIONS(6524), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120288,13 +131956,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5889), 23, + ACTIONS(6522), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120304,6 +131967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120318,10 +131983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119333] = 3, + [126462] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5895), 16, + ACTIONS(6520), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120332,13 +131997,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5893), 23, + ACTIONS(6518), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120348,6 +132008,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120362,10 +132024,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119380] = 3, + [126506] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5899), 16, + ACTIONS(6520), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120376,13 +132038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5897), 23, + ACTIONS(6518), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120392,6 +132049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120406,10 +132065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119427] = 3, + [126550] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5903), 16, + ACTIONS(6230), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120420,13 +132079,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5901), 23, + ACTIONS(6228), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120436,6 +132090,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120450,10 +132106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119474] = 3, + [126594] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5907), 16, + ACTIONS(6528), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120464,13 +132120,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5905), 23, + ACTIONS(6526), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120480,6 +132131,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120494,10 +132147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119521] = 3, + [126638] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5911), 16, + ACTIONS(6524), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120508,13 +132161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5909), 23, + ACTIONS(6522), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120524,6 +132172,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120538,10 +132188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119568] = 3, + [126682] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5915), 16, + ACTIONS(6520), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120552,13 +132202,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5913), 23, + ACTIONS(6518), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120568,6 +132213,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120582,10 +132229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119615] = 3, + [126726] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5803), 16, + ACTIONS(6520), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120596,13 +132243,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5801), 23, + ACTIONS(6518), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120612,6 +132254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120626,10 +132270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119662] = 3, + [126770] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5923), 16, + ACTIONS(6516), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120640,13 +132284,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5921), 23, + ACTIONS(6514), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120656,6 +132295,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120670,10 +132311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119709] = 3, + [126814] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5923), 16, + ACTIONS(6440), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120684,13 +132325,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5921), 23, + ACTIONS(6438), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120700,6 +132336,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120714,10 +132352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119756] = 3, + [126858] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5915), 16, + ACTIONS(6436), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120728,13 +132366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5913), 23, + ACTIONS(6434), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120744,6 +132377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120758,10 +132393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119803] = 3, + [126902] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 16, + ACTIONS(6401), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120772,13 +132407,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5917), 23, + ACTIONS(6399), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120788,6 +132418,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120802,10 +132434,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119850] = 3, + [126946] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5923), 16, + ACTIONS(6432), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120816,13 +132448,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5921), 23, + ACTIONS(6430), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120832,6 +132459,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120846,10 +132475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119897] = 3, + [126990] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5923), 16, + ACTIONS(6234), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120860,13 +132489,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5921), 23, + ACTIONS(6232), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120876,6 +132500,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120890,10 +132516,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119944] = 3, + [127034] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5927), 16, + ACTIONS(6274), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120904,13 +132530,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5925), 23, + ACTIONS(6272), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120920,6 +132541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120934,10 +132557,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119991] = 3, + [127078] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5931), 16, + ACTIONS(6428), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120948,13 +132571,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5929), 23, + ACTIONS(6426), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -120964,6 +132582,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120978,10 +132598,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120038] = 3, + [127122] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5935), 16, + ACTIONS(6162), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120992,13 +132612,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5933), 23, + ACTIONS(6160), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121008,6 +132623,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121022,10 +132639,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120085] = 3, + [127166] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5943), 16, + ACTIONS(6405), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121036,13 +132653,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5941), 23, + ACTIONS(6403), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121052,6 +132664,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121066,10 +132680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120132] = 3, + [127210] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5947), 16, + ACTIONS(6338), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121080,13 +132694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5945), 23, + ACTIONS(6336), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121096,6 +132705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121110,10 +132721,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120179] = 3, + [127254] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5943), 16, + ACTIONS(6424), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121124,13 +132735,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5941), 23, + ACTIONS(6422), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121140,6 +132746,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121154,10 +132762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120226] = 3, + [127298] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5947), 16, + ACTIONS(6334), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121168,13 +132776,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5945), 23, + ACTIONS(6332), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121184,6 +132787,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121198,10 +132803,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120273] = 3, + [127342] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 16, + ACTIONS(6420), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121212,13 +132817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5949), 23, + ACTIONS(6418), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121228,6 +132828,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121242,10 +132844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120320] = 3, + [127386] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5939), 16, + ACTIONS(6238), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121256,13 +132858,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5937), 23, + ACTIONS(6236), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121272,6 +132869,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121286,10 +132885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120367] = 3, + [127430] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5943), 16, + ACTIONS(6488), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121300,13 +132899,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5941), 23, + ACTIONS(6486), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121316,6 +132910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121330,10 +132926,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120414] = 3, + [127474] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5947), 16, + ACTIONS(6492), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121344,13 +132940,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5945), 23, + ACTIONS(6490), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121360,6 +132951,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121374,10 +132967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120461] = 3, + [127518] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5943), 16, + ACTIONS(6496), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121388,13 +132981,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5941), 23, + ACTIONS(6494), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121404,6 +132992,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121418,10 +133008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120508] = 3, + [127562] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5947), 16, + ACTIONS(6424), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121432,13 +133022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5945), 23, + ACTIONS(6422), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121448,6 +133033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121462,10 +133049,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120555] = 3, + [127606] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 16, + ACTIONS(6504), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121476,13 +133063,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5949), 23, + ACTIONS(6502), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121492,6 +133074,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121506,10 +133090,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120602] = 3, + [127650] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5955), 16, + ACTIONS(6508), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121520,13 +133104,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5953), 23, + ACTIONS(6506), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121536,6 +133115,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121550,10 +133131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120649] = 3, + [127694] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5589), 16, + ACTIONS(6306), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121564,13 +133145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5587), 23, + ACTIONS(6304), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121580,6 +133156,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121594,10 +133172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120696] = 3, + [127738] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5589), 16, + ACTIONS(6330), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121608,13 +133186,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5587), 23, + ACTIONS(6328), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121624,6 +133197,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121638,10 +133213,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120743] = 3, + [127782] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5593), 16, + ACTIONS(6504), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121652,13 +133227,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5591), 23, + ACTIONS(6502), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121668,6 +133238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121682,10 +133254,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120790] = 3, + [127826] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5593), 16, + ACTIONS(6508), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121696,13 +133268,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5591), 23, + ACTIONS(6506), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121712,6 +133279,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121726,10 +133295,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120837] = 3, + [127870] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 16, + ACTIONS(6420), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121740,13 +133309,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5961), 23, + ACTIONS(6418), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121756,6 +133320,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121770,10 +133336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120884] = 3, + [127914] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5959), 16, + ACTIONS(6512), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121784,13 +133350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5957), 23, + ACTIONS(6510), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121800,6 +133361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121814,10 +133377,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120931] = 3, + [127958] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5589), 16, + ACTIONS(6394), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121828,13 +133391,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5587), 23, + ACTIONS(6392), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121844,6 +133402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121858,10 +133418,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120978] = 3, + [128002] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5589), 16, + ACTIONS(6326), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121872,13 +133432,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5587), 23, + ACTIONS(6324), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121888,6 +133443,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121902,10 +133459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121025] = 3, + [128046] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 16, + ACTIONS(6500), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121916,13 +133473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5961), 23, + ACTIONS(6498), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121932,6 +133484,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121946,10 +133500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121072] = 3, + [128090] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5959), 16, + ACTIONS(6504), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121960,13 +133514,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(5957), 23, + ACTIONS(6502), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -121976,6 +133525,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -121990,1184 +133541,734 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121119] = 16, + [128134] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6492), 1, + ACTIONS(6508), 10, anon_sym_POUND, - ACTIONS(6494), 1, - aux_sym_num_lit_token1, - ACTIONS(6498), 1, - anon_sym_DQUOTE, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6504), 1, - anon_sym_COMMA, - ACTIONS(6510), 1, - anon_sym_SLASH, - STATE(1667), 1, - sym_format_prefix_parameters, - STATE(1945), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3314), 1, - sym_format_directive_type, - ACTIONS(6496), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(6506), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [121191] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6492), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6504), 1, - anon_sym_COMMA, - ACTIONS(6510), 1, - anon_sym_SLASH, - ACTIONS(6512), 1, - anon_sym_DQUOTE, - STATE(1667), 1, - sym_format_prefix_parameters, - STATE(1945), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3314), 1, - sym_format_directive_type, - ACTIONS(6496), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(6506), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [121263] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6492), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6504), 1, - anon_sym_COMMA, - ACTIONS(6510), 1, - anon_sym_SLASH, - ACTIONS(6514), 1, - anon_sym_DQUOTE, - STATE(1667), 1, - sym_format_prefix_parameters, - STATE(1945), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3314), 1, - sym_format_directive_type, - ACTIONS(6496), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(6506), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [121335] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6492), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6504), 1, - anon_sym_COMMA, - ACTIONS(6510), 1, - anon_sym_SLASH, - ACTIONS(6516), 1, - anon_sym_DQUOTE, - STATE(1667), 1, - sym_format_prefix_parameters, - STATE(1945), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3314), 1, - sym_format_directive_type, - ACTIONS(6496), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(6506), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [121407] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6492), 1, - anon_sym_POUND, - ACTIONS(6494), 1, + anon_sym_DOT, aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6504), 1, - anon_sym_COMMA, - ACTIONS(6510), 1, - anon_sym_SLASH, - ACTIONS(6518), 1, - anon_sym_DQUOTE, - STATE(1667), 1, - sym_format_prefix_parameters, - STATE(1945), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3314), 1, - sym_format_directive_type, - ACTIONS(6496), 2, anon_sym_COLON, - anon_sym_AT, - ACTIONS(6506), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [121479] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6492), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6504), 1, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, anon_sym_COMMA, - ACTIONS(6510), 1, - anon_sym_SLASH, - ACTIONS(6520), 1, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(6506), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, - STATE(1667), 1, - sym_format_prefix_parameters, - STATE(1945), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3314), 1, - sym_format_directive_type, - ACTIONS(6496), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(6506), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [121551] = 16, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [128178] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6492), 1, + ACTIONS(6322), 10, anon_sym_POUND, - ACTIONS(6494), 1, + anon_sym_DOT, aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6504), 1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, anon_sym_COMMA, - ACTIONS(6510), 1, - anon_sym_SLASH, - ACTIONS(6522), 1, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(6320), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, - STATE(1667), 1, - sym_format_prefix_parameters, - STATE(1945), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3314), 1, - sym_format_directive_type, - ACTIONS(6496), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(6506), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [121623] = 16, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [128222] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6492), 1, + ACTIONS(6318), 10, anon_sym_POUND, - ACTIONS(6494), 1, + anon_sym_DOT, aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6504), 1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, anon_sym_COMMA, - ACTIONS(6510), 1, - anon_sym_SLASH, - ACTIONS(6524), 1, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(6316), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, - STATE(1667), 1, - sym_format_prefix_parameters, - STATE(1945), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3314), 1, - sym_format_directive_type, - ACTIONS(6496), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(6506), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [121695] = 16, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [128266] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6492), 1, + ACTIONS(6512), 10, anon_sym_POUND, - ACTIONS(6494), 1, + anon_sym_DOT, aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6504), 1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, anon_sym_COMMA, - ACTIONS(6510), 1, - anon_sym_SLASH, - ACTIONS(6526), 1, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(6510), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, - STATE(1667), 1, - sym_format_prefix_parameters, - STATE(1945), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3314), 1, - sym_format_directive_type, - ACTIONS(6496), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(6506), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [121767] = 16, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [128310] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6492), 1, + ACTIONS(6310), 10, anon_sym_POUND, - ACTIONS(6494), 1, + anon_sym_DOT, aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6504), 1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, anon_sym_COMMA, - ACTIONS(6510), 1, - anon_sym_SLASH, - ACTIONS(6528), 1, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(6308), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, - STATE(1667), 1, - sym_format_prefix_parameters, - STATE(1945), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3314), 1, - sym_format_directive_type, - ACTIONS(6496), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(6506), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [121839] = 16, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [128354] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6492), 1, + ACTIONS(6504), 10, anon_sym_POUND, - ACTIONS(6494), 1, + anon_sym_DOT, aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6504), 1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, anon_sym_COMMA, - ACTIONS(6510), 1, - anon_sym_SLASH, - ACTIONS(6530), 1, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(6502), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, - STATE(1667), 1, - sym_format_prefix_parameters, - STATE(1945), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3314), 1, - sym_format_directive_type, - ACTIONS(6496), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(6506), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [121911] = 16, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [128398] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6492), 1, + ACTIONS(6258), 10, anon_sym_POUND, - ACTIONS(6494), 1, + anon_sym_DOT, aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6504), 1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, anon_sym_COMMA, - ACTIONS(6510), 1, - anon_sym_SLASH, - ACTIONS(6532), 1, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(6256), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, - STATE(1667), 1, - sym_format_prefix_parameters, - STATE(1945), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3314), 1, - sym_format_directive_type, - ACTIONS(6496), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(6506), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [121983] = 16, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [128442] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6492), 1, + ACTIONS(6508), 10, anon_sym_POUND, - ACTIONS(6494), 1, + anon_sym_DOT, aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6504), 1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, anon_sym_COMMA, - ACTIONS(6510), 1, - anon_sym_SLASH, - ACTIONS(6534), 1, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(6506), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, - STATE(1667), 1, - sym_format_prefix_parameters, - STATE(1945), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3314), 1, - sym_format_directive_type, - ACTIONS(6496), 2, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [128486] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6314), 10, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, anon_sym_COLON, - anon_sym_AT, - ACTIONS(6506), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [122055] = 16, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(6312), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [128530] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6492), 1, + ACTIONS(6416), 10, anon_sym_POUND, - ACTIONS(6494), 1, + anon_sym_DOT, aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6504), 1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, anon_sym_COMMA, - ACTIONS(6510), 1, - anon_sym_SLASH, - ACTIONS(6536), 1, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(6414), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, - STATE(1667), 1, - sym_format_prefix_parameters, - STATE(1945), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3314), 1, - sym_format_directive_type, - ACTIONS(6496), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(6506), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [122127] = 16, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [128574] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6492), 1, + ACTIONS(7140), 1, + anon_sym_POUND_, + ACTIONS(7137), 2, + sym__ws, + sym_comment, + STATE(1716), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(6100), 10, anon_sym_POUND, - ACTIONS(6494), 1, + anon_sym_DOT, aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6504), 1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, anon_sym_COMMA, - ACTIONS(6510), 1, - anon_sym_SLASH, - ACTIONS(6538), 1, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(6102), 19, + anon_sym_COLON_COLON, anon_sym_DQUOTE, - STATE(1667), 1, - sym_format_prefix_parameters, - STATE(1945), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3314), 1, - sym_format_directive_type, - ACTIONS(6496), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(6506), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [122199] = 16, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [128623] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6492), 1, + ACTIONS(7145), 10, anon_sym_POUND, - ACTIONS(6494), 1, + anon_sym_DOT, aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6504), 1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, anon_sym_COMMA, - ACTIONS(6510), 1, - anon_sym_SLASH, - ACTIONS(6540), 1, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(7143), 24, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, - STATE(1667), 1, - sym_format_prefix_parameters, - STATE(1945), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3314), 1, - sym_format_directive_type, - ACTIONS(6496), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(6506), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [122271] = 16, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [128665] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6492), 1, + ACTIONS(6420), 3, anon_sym_POUND, - ACTIONS(6494), 1, - aux_sym_num_lit_token1, - ACTIONS(6502), 1, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(6418), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - ACTIONS(6504), 1, - anon_sym_COMMA, - ACTIONS(6510), 1, - anon_sym_SLASH, - ACTIONS(6542), 1, - anon_sym_DQUOTE, - STATE(1667), 1, - sym_format_prefix_parameters, - STATE(1945), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3314), 1, - sym_format_directive_type, - ACTIONS(6496), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(6506), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [122343] = 16, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [128706] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6492), 1, + ACTIONS(6394), 3, anon_sym_POUND, - ACTIONS(6494), 1, - aux_sym_num_lit_token1, - ACTIONS(6502), 1, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(6392), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - ACTIONS(6504), 1, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [128747] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7135), 1, + anon_sym_COLON_COLON, + ACTIONS(7147), 1, + anon_sym_COLON, + ACTIONS(6154), 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, - ACTIONS(6510), 1, - anon_sym_SLASH, - ACTIONS(6544), 1, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(6152), 22, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_DQUOTE, - STATE(1667), 1, - sym_format_prefix_parameters, - STATE(1945), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3314), 1, - sym_format_directive_type, - ACTIONS(6496), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(6506), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [122415] = 16, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [128792] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6492), 1, + ACTIONS(7151), 10, anon_sym_POUND, - ACTIONS(6494), 1, + anon_sym_DOT, aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6504), 1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, anon_sym_COMMA, - ACTIONS(6510), 1, - anon_sym_SLASH, - ACTIONS(6546), 1, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(7149), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, - STATE(1667), 1, - sym_format_prefix_parameters, - STATE(1945), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3314), 1, - sym_format_directive_type, - ACTIONS(6496), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(6506), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [122487] = 16, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [128833] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6492), 1, + ACTIONS(7155), 10, anon_sym_POUND, - ACTIONS(6494), 1, + anon_sym_DOT, aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6504), 1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, anon_sym_COMMA, - ACTIONS(6510), 1, - anon_sym_SLASH, - ACTIONS(6548), 1, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(7153), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, - STATE(1667), 1, - sym_format_prefix_parameters, - STATE(1945), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3314), 1, - sym_format_directive_type, - ACTIONS(6496), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(6506), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [122559] = 15, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [128874] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6492), 1, + ACTIONS(7135), 1, + anon_sym_COLON_COLON, + ACTIONS(7157), 1, + anon_sym_COLON, + ACTIONS(6154), 9, anon_sym_POUND, - ACTIONS(6494), 1, + anon_sym_DOT, aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6504), 1, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, anon_sym_COMMA, - ACTIONS(6510), 1, - anon_sym_SLASH, - STATE(1667), 1, - sym_format_prefix_parameters, - STATE(1945), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3314), 1, - sym_format_directive_type, - ACTIONS(6496), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(6506), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [122628] = 3, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(6152), 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, + [128919] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5727), 10, + ACTIONS(7151), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123178,8 +134279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5725), 26, - ts_builtin_sym_end, + ACTIONS(7149), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123189,8 +134289,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -123205,10 +134303,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122672] = 3, + [128960] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5691), 10, + ACTIONS(7151), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123219,8 +134317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5689), 26, - ts_builtin_sym_end, + ACTIONS(7149), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123230,8 +134327,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -123246,10 +134341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122716] = 3, + [129001] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5891), 10, + ACTIONS(7161), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123260,8 +134355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5889), 26, - ts_builtin_sym_end, + ACTIONS(7159), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123271,8 +134365,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -123287,10 +134379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122760] = 3, + [129042] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5891), 10, + ACTIONS(7161), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123301,8 +134393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5889), 26, - ts_builtin_sym_end, + ACTIONS(7159), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123312,8 +134403,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -123328,10 +134417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122804] = 3, + [129083] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5931), 10, + ACTIONS(7161), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123342,8 +134431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5929), 26, - ts_builtin_sym_end, + ACTIONS(7159), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123353,8 +134441,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -123369,33 +134455,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122848] = 3, + [129124] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5887), 10, + ACTIONS(7135), 1, + anon_sym_COLON_COLON, + ACTIONS(7163), 1, + anon_sym_COLON, + ACTIONS(6154), 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(5885), 26, - ts_builtin_sym_end, + ACTIONS(6152), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -123410,33 +134495,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122892] = 3, + [129169] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5887), 10, + ACTIONS(7135), 1, + anon_sym_COLON_COLON, + ACTIONS(7165), 1, + anon_sym_COLON, + ACTIONS(6154), 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(5885), 26, - ts_builtin_sym_end, + ACTIONS(6152), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -123451,10 +134535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122936] = 3, + [129214] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5883), 10, + ACTIONS(7169), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123465,8 +134549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5881), 26, - ts_builtin_sym_end, + ACTIONS(7167), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123476,8 +134559,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -123492,10 +134573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122980] = 3, + [129255] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5879), 10, + ACTIONS(7161), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123506,8 +134587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5877), 26, - ts_builtin_sym_end, + ACTIONS(7159), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123517,8 +134597,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -123533,10 +134611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123024] = 3, + [129296] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5875), 10, + ACTIONS(7173), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123547,8 +134625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5873), 26, - ts_builtin_sym_end, + ACTIONS(7171), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123558,8 +134635,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -123574,10 +134649,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123068] = 3, + [129337] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5871), 10, + ACTIONS(7173), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123588,8 +134663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5869), 26, - ts_builtin_sym_end, + ACTIONS(7171), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123599,8 +134673,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -123615,10 +134687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123112] = 3, + [129378] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5867), 10, + ACTIONS(7173), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123629,8 +134701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5865), 26, - ts_builtin_sym_end, + ACTIONS(7171), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123640,8 +134711,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -123656,10 +134725,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123156] = 3, + [129419] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5863), 10, + ACTIONS(7173), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123670,8 +134739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5861), 26, - ts_builtin_sym_end, + ACTIONS(7171), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123681,8 +134749,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -123697,92 +134763,504 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123200] = 3, + [129460] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6146), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(6144), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [129501] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6146), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(6144), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [129542] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6528), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(6526), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [129583] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6524), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(6522), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [129624] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6520), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(6518), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [129665] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6520), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(6518), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [129706] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6528), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(6526), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [129747] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6524), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(6522), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [129788] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6520), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(6518), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [129829] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6520), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(6518), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [129870] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6516), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(6514), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [129911] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5859), 10, + ACTIONS(6512), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5857), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6510), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [123244] = 3, + [129952] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5863), 10, + ACTIONS(6508), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5861), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6506), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [123288] = 3, + [129993] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5859), 10, + ACTIONS(7177), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123793,8 +135271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5857), 26, - ts_builtin_sym_end, + ACTIONS(7175), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123804,8 +135281,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -123820,10 +135295,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123332] = 3, + [130034] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5855), 10, + ACTIONS(7177), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123834,8 +135309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5853), 26, - ts_builtin_sym_end, + ACTIONS(7175), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123845,8 +135319,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -123861,10 +135333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123376] = 3, + [130075] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5851), 10, + ACTIONS(7177), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123875,8 +135347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5849), 26, - ts_builtin_sym_end, + ACTIONS(7175), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123886,8 +135357,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -123902,10 +135371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123420] = 3, + [130116] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5847), 10, + ACTIONS(7177), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123916,8 +135385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5845), 26, - ts_builtin_sym_end, + ACTIONS(7175), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123927,8 +135395,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -123943,92 +135409,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123464] = 3, + [130157] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5831), 10, + ACTIONS(6504), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5829), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6502), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [123508] = 3, + [130198] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5847), 10, + ACTIONS(6508), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5845), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6506), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [123552] = 3, + [130239] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5843), 10, + ACTIONS(7169), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124039,8 +135499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5841), 26, - ts_builtin_sym_end, + ACTIONS(7167), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -124050,8 +135509,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -124066,953 +135523,884 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123596] = 3, + [130280] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5839), 10, + ACTIONS(6504), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5837), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6502), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [123640] = 3, + [130321] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5835), 10, + ACTIONS(6500), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5833), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6498), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [123684] = 3, + [130362] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5835), 10, + ACTIONS(6512), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5833), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6510), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [123728] = 3, + [130403] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5715), 10, + ACTIONS(6508), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5713), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6506), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [123772] = 3, + [130444] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5827), 10, + ACTIONS(6504), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5825), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6502), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [123816] = 3, + [130485] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5823), 10, + ACTIONS(6508), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5821), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6506), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [123860] = 3, + [130526] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5819), 10, + ACTIONS(6504), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5817), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6502), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [123904] = 3, + [130567] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5815), 10, + ACTIONS(6500), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5813), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6498), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [123948] = 3, + [130608] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5811), 10, + ACTIONS(6496), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5809), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6494), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [123992] = 3, + [130649] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5807), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5805), 26, - ts_builtin_sym_end, + ACTIONS(6492), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(6490), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [124036] = 3, + [130690] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5803), 10, + ACTIONS(6488), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5801), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6486), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [124080] = 3, + [130731] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5799), 10, + ACTIONS(6484), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5797), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6482), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [124124] = 3, + [130772] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5795), 10, + ACTIONS(6484), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5793), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6482), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [124168] = 3, + [130813] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5791), 10, + ACTIONS(6480), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5789), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6478), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [124212] = 3, + [130854] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5787), 10, + ACTIONS(6476), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5785), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6474), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [124256] = 3, + [130895] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5783), 10, + ACTIONS(6484), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5781), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6482), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [124300] = 3, + [130936] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5779), 10, + ACTIONS(6484), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5777), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6482), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [124344] = 3, + [130977] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5775), 10, + ACTIONS(6480), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5773), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6478), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [124388] = 3, + [131018] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5771), 10, + ACTIONS(6476), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5769), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6474), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [124432] = 3, + [131059] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5767), 10, + ACTIONS(6472), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5765), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6470), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [124476] = 3, + [131100] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5763), 10, + ACTIONS(6468), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5761), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6466), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [124520] = 3, + [131141] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5759), 10, + ACTIONS(6464), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5757), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6462), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [124564] = 3, + [131182] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5755), 10, + ACTIONS(6460), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5753), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6458), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [124608] = 3, + [131223] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5751), 10, + ACTIONS(7181), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125023,8 +136411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5749), 26, - ts_builtin_sym_end, + ACTIONS(7179), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -125034,8 +136421,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125050,10 +136435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124652] = 3, + [131264] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5747), 10, + ACTIONS(7181), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125064,8 +136449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5745), 26, - ts_builtin_sym_end, + ACTIONS(7179), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -125075,8 +136459,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125091,10 +136473,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124696] = 3, + [131305] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5743), 10, + ACTIONS(7181), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125105,8 +136487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5741), 26, - ts_builtin_sym_end, + ACTIONS(7179), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -125116,8 +136497,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125132,258 +136511,314 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124740] = 3, + [131346] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5739), 10, + ACTIONS(6452), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5737), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6450), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [124784] = 3, + [131387] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5735), 10, + ACTIONS(6452), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5733), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6450), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [124828] = 3, + [131428] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5731), 10, + ACTIONS(6448), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5729), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6446), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [124872] = 3, + [131469] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5927), 10, + ACTIONS(6448), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5925), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6446), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [124916] = 3, + [131510] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5723), 10, + ACTIONS(6444), 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(6442), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, - ACTIONS(5721), 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_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, + [131551] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6440), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(6438), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [124960] = 3, + [131592] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5719), 10, + ACTIONS(6436), 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(6434), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, - ACTIONS(5717), 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_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, + [131633] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6424), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(6422), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [125004] = 4, + [131674] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6550), 1, - aux_sym_num_lit_token2, - ACTIONS(5583), 10, + ACTIONS(7155), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125394,8 +136829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5581), 25, - ts_builtin_sym_end, + ACTIONS(7153), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -125405,7 +136839,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125420,92 +136853,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [125050] = 3, + [131715] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5899), 10, + ACTIONS(6424), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5897), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6422), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [125094] = 3, + [131756] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5593), 10, + ACTIONS(6420), 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(6418), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, - ACTIONS(5591), 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_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, + [131797] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6416), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(6414), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [125138] = 3, + [131838] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5711), 10, + ACTIONS(7181), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125516,8 +136981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5709), 26, - ts_builtin_sym_end, + ACTIONS(7179), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -125527,8 +136991,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125543,74 +137005,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [125182] = 3, + [131879] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5707), 10, + ACTIONS(6412), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5705), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6410), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [125226] = 3, + [131920] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5703), 10, + ACTIONS(7135), 1, + anon_sym_COLON_COLON, + ACTIONS(7183), 1, + anon_sym_COLON, + ACTIONS(6154), 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(5701), 26, - ts_builtin_sym_end, + ACTIONS(6152), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125625,33 +137083,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [125270] = 3, + [131965] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5699), 10, + ACTIONS(7135), 1, + anon_sym_COLON_COLON, + ACTIONS(7185), 1, + anon_sym_COLON, + ACTIONS(6154), 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(5697), 26, - ts_builtin_sym_end, + ACTIONS(6152), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125666,338 +137123,352 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [125314] = 3, + [132010] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5631), 10, + ACTIONS(6394), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5629), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6392), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [132051] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6390), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(6388), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [125358] = 3, + [132092] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5593), 10, + ACTIONS(6386), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5591), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6384), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [125402] = 3, + [132133] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5695), 10, + ACTIONS(6382), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5693), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6380), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [125446] = 3, + [132174] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5895), 10, + ACTIONS(6378), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5893), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6376), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [125490] = 3, + [132215] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5687), 10, + ACTIONS(6370), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5685), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6368), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [125534] = 3, + [132256] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5683), 10, + ACTIONS(6366), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5681), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6364), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [125578] = 3, + [132297] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5679), 10, + ACTIONS(6346), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5677), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6344), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [125622] = 3, + [132338] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5675), 10, + ACTIONS(6342), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5673), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6340), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [125666] = 3, + [132379] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5671), 10, + ACTIONS(7189), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126008,8 +137479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5669), 26, - ts_builtin_sym_end, + ACTIONS(7187), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -126019,8 +137489,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -126035,174 +137503,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [125710] = 3, + [132420] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5667), 10, + ACTIONS(6338), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5665), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6336), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [125754] = 3, + [132461] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5663), 10, + ACTIONS(6334), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5661), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6332), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [125798] = 3, + [132502] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5659), 10, + ACTIONS(6330), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5657), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6328), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [125842] = 3, + [132543] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5655), 10, + ACTIONS(6326), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5653), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6324), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [125886] = 3, + [132584] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5631), 10, + ACTIONS(7151), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126213,8 +137669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5629), 26, - ts_builtin_sym_end, + ACTIONS(7149), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -126224,8 +137679,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -126240,918 +137693,893 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [125930] = 3, + [132625] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 10, + ACTIONS(6318), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5961), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6316), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [125974] = 3, + [132666] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5651), 10, + ACTIONS(6314), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5649), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6312), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [126018] = 3, + [132707] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5903), 10, + ACTIONS(6310), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5901), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6308), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [126062] = 3, + [132748] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5647), 10, + ACTIONS(6306), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5645), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6304), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [126106] = 3, + [132789] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5643), 10, + ACTIONS(6302), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5641), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6300), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [126150] = 3, + [132830] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5639), 10, + ACTIONS(6298), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5637), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6296), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [126194] = 3, + [132871] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5635), 10, + ACTIONS(6294), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5633), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6292), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [126238] = 3, + [132912] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5631), 10, + ACTIONS(6290), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5629), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6288), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [126282] = 5, + [132953] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6552), 1, - anon_sym_COLON, - ACTIONS(6554), 1, - anon_sym_COLON_COLON, - ACTIONS(5597), 9, + ACTIONS(6266), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5595), 25, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6264), 30, 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_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126330] = 3, + [132994] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5967), 10, + ACTIONS(6262), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5965), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6260), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [126374] = 3, + [133035] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5597), 10, + ACTIONS(6258), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5595), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6256), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [126418] = 3, + [133076] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5601), 10, + ACTIONS(6190), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5599), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6188), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [126462] = 3, + [133117] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5605), 10, + ACTIONS(6250), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5603), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6248), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [126506] = 3, + [133158] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5609), 10, + ACTIONS(6246), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5607), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6244), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [126550] = 5, + [133199] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6552), 1, - anon_sym_COLON, - ACTIONS(6554), 1, - anon_sym_COLON_COLON, - ACTIONS(5613), 9, + ACTIONS(6242), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5611), 25, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6240), 30, 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_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126598] = 5, + [133240] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6552), 1, - anon_sym_COLON, - ACTIONS(6554), 1, - anon_sym_COLON_COLON, - ACTIONS(5621), 9, + ACTIONS(6238), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5619), 25, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6236), 30, 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_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126646] = 3, + [133281] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5625), 10, + ACTIONS(6234), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5623), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6232), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [126690] = 3, + [133322] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5907), 10, + ACTIONS(6230), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5905), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6228), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [126734] = 3, + [133363] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5911), 10, + ACTIONS(6226), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5909), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6224), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [126778] = 3, + [133404] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5915), 10, + ACTIONS(6222), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5913), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6220), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [126822] = 3, + [133445] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 10, + ACTIONS(6218), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5917), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6216), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [126866] = 3, + [133486] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5923), 10, + ACTIONS(6190), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5921), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6188), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [126910] = 3, + [133527] = 12, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7075), 1, + aux_sym_num_lit_token1, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7085), 1, + anon_sym_COMMA, + ACTIONS(7091), 1, + anon_sym_SLASH, + STATE(2239), 1, + sym_format_modifiers, + STATE(2454), 1, + sym__format_token, + STATE(2595), 1, + aux_sym_format_modifiers_repeat1, + STATE(3538), 1, + sym_format_directive_type, + ACTIONS(7077), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(7089), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(7081), 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, + [133586] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5923), 10, + ACTIONS(7193), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127162,8 +138590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5921), 26, - ts_builtin_sym_end, + ACTIONS(7191), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -127173,8 +138600,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -127189,92 +138614,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126954] = 3, + [133627] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5915), 10, + ACTIONS(6194), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5913), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6192), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [126998] = 3, + [133668] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5935), 10, + ACTIONS(6190), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5933), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6188), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [127042] = 3, + [133709] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5939), 10, + ACTIONS(7189), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127285,8 +138704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5937), 26, - ts_builtin_sym_end, + ACTIONS(7187), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -127296,8 +138714,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -127312,197 +138728,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127086] = 3, + [133750] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5943), 10, + ACTIONS(6186), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5941), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6184), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [127130] = 3, + [133791] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 10, + ACTIONS(6182), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5917), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6180), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [127174] = 3, + [133832] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5947), 10, + ACTIONS(6174), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5945), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6172), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [127218] = 3, + [133873] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5943), 10, + ACTIONS(6170), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5941), 26, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(6168), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_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_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, - [127262] = 3, + [133914] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5947), 10, + ACTIONS(7135), 1, + anon_sym_COLON_COLON, + ACTIONS(7195), 1, + anon_sym_COLON, + ACTIONS(6154), 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(5945), 26, - ts_builtin_sym_end, + ACTIONS(6152), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -127517,10 +138920,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127306] = 3, + [133959] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 10, + ACTIONS(7193), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127531,8 +138934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5949), 26, - ts_builtin_sym_end, + ACTIONS(7191), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -127542,8 +138944,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -127558,10 +138958,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127350] = 3, + [134000] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5923), 10, + ACTIONS(7199), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127572,8 +138972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5921), 26, - ts_builtin_sym_end, + ACTIONS(7197), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -127583,8 +138982,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -127599,10 +138996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127394] = 3, + [134041] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5939), 10, + ACTIONS(7193), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127613,8 +139010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5937), 26, - ts_builtin_sym_end, + ACTIONS(7191), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -127624,8 +139020,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -127640,10 +139034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127438] = 3, + [134082] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5943), 10, + ACTIONS(7203), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127654,8 +139048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5941), 26, - ts_builtin_sym_end, + ACTIONS(7201), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -127665,8 +139058,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -127681,10 +139072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127482] = 3, + [134123] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5947), 10, + ACTIONS(7203), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127695,8 +139086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5945), 26, - ts_builtin_sym_end, + ACTIONS(7201), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -127706,8 +139096,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -127722,10 +139110,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127526] = 3, + [134164] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5943), 10, + ACTIONS(7207), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127736,7 +139124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5941), 26, + ACTIONS(7205), 23, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127746,9 +139134,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -127763,33 +139148,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127570] = 3, + [134205] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5947), 10, + ACTIONS(7135), 1, + anon_sym_COLON_COLON, + ACTIONS(7209), 1, + anon_sym_COLON, + ACTIONS(6154), 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(5945), 26, - ts_builtin_sym_end, + ACTIONS(6152), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -127804,33 +139188,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127614] = 3, + [134250] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 10, + ACTIONS(7135), 1, + anon_sym_COLON_COLON, + ACTIONS(7211), 1, + anon_sym_COLON, + ACTIONS(6154), 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(5949), 26, - ts_builtin_sym_end, + ACTIONS(6152), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -127845,33 +139228,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127658] = 3, + [134295] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5923), 10, + ACTIONS(7135), 1, + anon_sym_COLON_COLON, + ACTIONS(7213), 1, + anon_sym_COLON, + ACTIONS(6154), 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(5921), 26, - ts_builtin_sym_end, + ACTIONS(6152), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -127886,10 +139268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127702] = 3, + [134340] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5955), 10, + ACTIONS(7217), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127900,8 +139282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5953), 26, - ts_builtin_sym_end, + ACTIONS(7215), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -127911,8 +139292,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -127927,10 +139306,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127746] = 3, + [134381] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5589), 10, + ACTIONS(7193), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127941,8 +139320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5587), 26, - ts_builtin_sym_end, + ACTIONS(7191), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -127952,8 +139330,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -127968,10 +139344,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127790] = 3, + [134422] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5589), 10, + ACTIONS(7221), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127982,8 +139358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5587), 26, - ts_builtin_sym_end, + ACTIONS(7219), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -127993,8 +139368,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128009,10 +139382,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127834] = 3, + [134463] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5959), 10, + ACTIONS(7221), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128023,8 +139396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5957), 26, - ts_builtin_sym_end, + ACTIONS(7219), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -128034,8 +139406,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128050,10 +139420,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127878] = 3, + [134504] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 10, + ACTIONS(7221), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128064,8 +139434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5961), 26, - ts_builtin_sym_end, + ACTIONS(7219), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -128075,8 +139444,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128091,10 +139458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127922] = 3, + [134545] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5589), 10, + ACTIONS(7221), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128105,8 +139472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5587), 26, - ts_builtin_sym_end, + ACTIONS(7219), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -128116,8 +139482,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128132,10 +139496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127966] = 3, + [134586] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5589), 10, + ACTIONS(7225), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128146,8 +139510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5587), 26, - ts_builtin_sym_end, + ACTIONS(7223), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -128157,8 +139520,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128173,10 +139534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128010] = 3, + [134627] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5959), 10, + ACTIONS(7225), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128187,8 +139548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5957), 26, - ts_builtin_sym_end, + ACTIONS(7223), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -128198,8 +139558,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128214,19 +139572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128054] = 6, + [134668] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6559), 1, - anon_sym_POUND_, - ACTIONS(6556), 2, - sym__ws, - sym_comment, - STATE(1652), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(131), 10, + ACTIONS(7225), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128237,12 +139586,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5545), 19, + ACTIONS(7223), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128257,10 +139610,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128103] = 3, + [134709] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6564), 10, + ACTIONS(7225), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128271,7 +139624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(6562), 24, + ACTIONS(7223), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -128281,7 +139634,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128296,48 +139648,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128145] = 3, + [134750] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5735), 3, + ACTIONS(7229), 10, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5733), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(7227), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128186] = 3, + [134790] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6568), 10, + ACTIONS(7233), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128348,7 +139699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(6566), 23, + ACTIONS(7231), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -128357,7 +139708,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, @@ -128372,32 +139722,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128227] = 5, + [134830] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6554), 1, - anon_sym_COLON_COLON, - ACTIONS(6570), 1, - anon_sym_COLON, - ACTIONS(5621), 9, + ACTIONS(7237), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5619), 22, + ACTIONS(7235), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128412,32 +139759,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128272] = 5, + [134870] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6554), 1, - anon_sym_COLON_COLON, - ACTIONS(6572), 1, - anon_sym_COLON, - ACTIONS(5621), 9, + ACTIONS(7241), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5619), 22, + ACTIONS(7239), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128452,32 +139796,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128317] = 5, + [134910] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6554), 1, - anon_sym_COLON_COLON, - ACTIONS(6574), 1, - anon_sym_COLON, - ACTIONS(5621), 9, + ACTIONS(7245), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5619), 22, + ACTIONS(7243), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128492,32 +139833,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128362] = 5, + [134950] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6554), 1, - anon_sym_COLON_COLON, - ACTIONS(6576), 1, - anon_sym_COLON, - ACTIONS(5621), 9, + ACTIONS(7249), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5619), 22, + ACTIONS(7247), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128532,5619 +139870,5877 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128407] = 5, + [134990] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6554), 1, + ACTIONS(6150), 1, + anon_sym_COLON, + ACTIONS(6148), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON_COLON, - ACTIONS(6578), 1, + 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, + [135029] = 7, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7254), 1, + anon_sym_POUND_, + ACTIONS(7259), 1, + anon_sym_cl, + ACTIONS(7262), 1, + anon_sym_into, + ACTIONS(7251), 2, + sym__ws, + sym_comment, + STATE(2930), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7257), 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, + [135076] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7264), 1, anon_sym_COLON, - ACTIONS(5621), 9, - anon_sym_POUND, - anon_sym_DOT, + ACTIONS(7266), 1, + anon_sym_COLON_COLON, + ACTIONS(6152), 29, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_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, + [135117] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7264), 1, + anon_sym_COLON, + ACTIONS(7266), 1, + anon_sym_COLON_COLON, + ACTIONS(6164), 29, + sym__ws, + sym_comment, + anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_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, + [135158] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7264), 1, + anon_sym_COLON, + ACTIONS(7266), 1, + anon_sym_COLON_COLON, + ACTIONS(6180), 29, + sym__ws, + sym_comment, + anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_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, + [135199] = 7, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7271), 1, + anon_sym_POUND_, + ACTIONS(7276), 1, + anon_sym_cl, + ACTIONS(7279), 1, + anon_sym_into, + ACTIONS(7268), 2, + sym__ws, + sym_comment, + STATE(2885), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7274), 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, + [135246] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7284), 1, + anon_sym_POUND_, + ACTIONS(7281), 2, + sym__ws, + sym_comment, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7287), 24, + 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, + [135288] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7292), 1, + anon_sym_POUND_, + ACTIONS(7289), 2, + sym__ws, + sym_comment, + STATE(1894), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7295), 24, + 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, + [135330] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7300), 1, + anon_sym_POUND_, + ACTIONS(7297), 2, + sym__ws, + sym_comment, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7303), 24, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(5619), 22, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [135372] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7308), 1, + anon_sym_POUND_, + ACTIONS(7305), 2, + sym__ws, + sym_comment, + STATE(1996), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7311), 24, + 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, + [135414] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7316), 1, + anon_sym_POUND_, + ACTIONS(7313), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, + STATE(1934), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7319), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [128452] = 5, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [135456] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6554), 1, - anon_sym_COLON_COLON, - ACTIONS(6580), 1, - anon_sym_COLON, - ACTIONS(5621), 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(5619), 22, + ACTIONS(7324), 1, + anon_sym_POUND_, + ACTIONS(7321), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7327), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [128497] = 5, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [135498] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6554), 1, - anon_sym_COLON_COLON, - ACTIONS(6582), 1, - anon_sym_COLON, - ACTIONS(5621), 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(5619), 22, + ACTIONS(7332), 1, + anon_sym_POUND_, + ACTIONS(7329), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, + STATE(1924), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7335), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [128542] = 5, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [135540] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6554), 1, - anon_sym_COLON_COLON, - ACTIONS(6584), 1, - anon_sym_COLON, - ACTIONS(5621), 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(5619), 22, + ACTIONS(7340), 1, + anon_sym_POUND_, + ACTIONS(7337), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, + STATE(1930), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7343), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [128587] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [135582] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6588), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6586), 23, - ts_builtin_sym_end, + ACTIONS(7348), 1, + anon_sym_POUND_, + ACTIONS(7345), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7351), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [128628] = 5, + anon_sym_RPAREN, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [135624] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6554), 1, - anon_sym_COLON_COLON, - ACTIONS(6590), 1, - anon_sym_COLON, - ACTIONS(5621), 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(5619), 22, + ACTIONS(7356), 1, + anon_sym_POUND_, + ACTIONS(7353), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7359), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [128673] = 5, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [135666] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6554), 1, - anon_sym_COLON_COLON, - ACTIONS(6592), 1, - anon_sym_COLON, - ACTIONS(5621), 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(5619), 22, + ACTIONS(7364), 1, + anon_sym_POUND_, + ACTIONS(7361), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7367), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [128718] = 12, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [135708] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6494), 1, - aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6504), 1, - anon_sym_COMMA, - ACTIONS(6510), 1, - anon_sym_SLASH, - STATE(1946), 1, - sym_format_modifiers, - STATE(2201), 1, - sym__format_token, - STATE(2357), 1, - aux_sym_format_modifiers_repeat1, - STATE(3316), 1, - sym_format_directive_type, - ACTIONS(6496), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(6508), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(6500), 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, - [128777] = 3, + ACTIONS(7372), 1, + anon_sym_POUND_, + ACTIONS(7369), 2, + sym__ws, + sym_comment, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7375), 24, + 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, + [135750] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6596), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6594), 23, + ACTIONS(7364), 1, + anon_sym_POUND_, + ACTIONS(7361), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7367), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [128818] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [135792] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5959), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5957), 30, + ACTIONS(7380), 1, + anon_sym_POUND_, + ACTIONS(7377), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1879), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7383), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [128859] = 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, + [135834] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5589), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5587), 30, + ACTIONS(7388), 1, + anon_sym_POUND_, + ACTIONS(7385), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2116), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7391), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [128900] = 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, + [135876] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5589), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5587), 30, + ACTIONS(7396), 1, + anon_sym_POUND_, + ACTIONS(7393), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7399), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [128941] = 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, + [135918] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5961), 30, + ACTIONS(7404), 1, + anon_sym_POUND_, + ACTIONS(7401), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7407), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [128982] = 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, + [135960] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5959), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5957), 30, + ACTIONS(7356), 1, + anon_sym_POUND_, + ACTIONS(7353), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7359), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129023] = 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, + [136002] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5589), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5587), 30, + ACTIONS(7412), 1, + anon_sym_POUND_, + ACTIONS(7409), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7415), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129064] = 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, + [136044] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5589), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5587), 30, + ACTIONS(7420), 1, + anon_sym_POUND_, + ACTIONS(7417), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2073), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7423), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129105] = 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, + [136086] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5955), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5953), 30, + ACTIONS(7308), 1, + anon_sym_POUND_, + ACTIONS(7425), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2013), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7311), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129146] = 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, + [136128] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5949), 30, + ACTIONS(7431), 1, + anon_sym_POUND_, + ACTIONS(7428), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7434), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129187] = 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, + [136170] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6600), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6598), 23, + ACTIONS(7439), 1, + anon_sym_POUND_, + ACTIONS(7436), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(6102), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129228] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [136212] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6604), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6602), 23, + ACTIONS(7445), 1, + anon_sym_POUND_, + ACTIONS(7442), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7448), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129269] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [136254] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6604), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6602), 23, + ACTIONS(7372), 1, + anon_sym_POUND_, + ACTIONS(7369), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7375), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129310] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [136296] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5947), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5945), 30, + ACTIONS(7453), 1, + anon_sym_POUND_, + ACTIONS(7450), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2002), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7456), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129351] = 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, + [136338] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5943), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5941), 30, + ACTIONS(7461), 1, + anon_sym_POUND_, + ACTIONS(7458), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1995), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7464), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129392] = 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, + [136380] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5947), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5945), 30, + ACTIONS(7461), 1, + anon_sym_POUND_, + ACTIONS(7466), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2020), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7464), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129433] = 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, + [136422] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5943), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5941), 30, + ACTIONS(7431), 1, + anon_sym_POUND_, + ACTIONS(7428), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7434), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129474] = 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, + [136464] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5939), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5937), 30, + ACTIONS(7472), 1, + anon_sym_POUND_, + ACTIONS(7469), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2035), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7475), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129515] = 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, + [136506] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5949), 30, + ACTIONS(7480), 1, + anon_sym_POUND_, + ACTIONS(7477), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7483), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129556] = 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, + [136548] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5947), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5945), 30, + ACTIONS(6454), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129597] = 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_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [136584] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5609), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5607), 30, + ACTIONS(7488), 1, + anon_sym_POUND_, + ACTIONS(7485), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7491), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129638] = 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, + [136626] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5605), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5603), 30, + ACTIONS(7496), 1, + anon_sym_POUND_, + ACTIONS(7493), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2038), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7499), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129679] = 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, + [136668] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5943), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5941), 30, + ACTIONS(7504), 1, + anon_sym_POUND_, + ACTIONS(7501), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7507), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129720] = 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, + [136710] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5947), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5945), 30, + ACTIONS(7496), 1, + anon_sym_POUND_, + ACTIONS(7509), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2048), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7499), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129761] = 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, + [136752] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5597), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5595), 30, + ACTIONS(7453), 1, + anon_sym_POUND_, + ACTIONS(7512), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1892), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7456), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129802] = 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, + [136794] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5967), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5965), 30, + ACTIONS(7480), 1, + anon_sym_POUND_, + ACTIONS(7477), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7483), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129843] = 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, + [136836] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6608), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6606), 23, + ACTIONS(7518), 1, + anon_sym_POUND_, + ACTIONS(7515), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7521), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129884] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [136878] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5631), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5629), 30, + ACTIONS(6430), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129925] = 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_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [136914] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5635), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5633), 30, + ACTIONS(6426), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [129966] = 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_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [136950] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6608), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6606), 23, + ACTIONS(7316), 1, + anon_sym_POUND_, + ACTIONS(7523), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1990), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7319), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130007] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [136992] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6608), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6606), 23, + ACTIONS(7529), 1, + anon_sym_POUND_, + ACTIONS(7526), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1957), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7532), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130048] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [137034] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6612), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6610), 23, + ACTIONS(7537), 1, + anon_sym_POUND_, + ACTIONS(7534), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2079), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7540), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130089] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [137076] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6612), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6610), 23, + ACTIONS(7545), 1, + anon_sym_POUND_, + ACTIONS(7542), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2054), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7548), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130130] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [137118] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5631), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5629), 30, + ACTIONS(7553), 1, + anon_sym_POUND_, + ACTIONS(7550), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7556), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130171] = 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, + [137160] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6616), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6614), 23, + ACTIONS(7545), 1, + anon_sym_POUND_, + ACTIONS(7558), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2056), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7548), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130212] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [137202] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5659), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5657), 30, + ACTIONS(7564), 1, + anon_sym_POUND_, + ACTIONS(7561), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7567), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130253] = 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, + [137244] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5663), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5661), 30, + ACTIONS(7572), 1, + anon_sym_POUND_, + ACTIONS(7569), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1960), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7575), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130294] = 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, + [137286] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6616), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6614), 23, + ACTIONS(7580), 1, + anon_sym_POUND_, + ACTIONS(7577), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7583), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130335] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [137328] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5667), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5665), 30, + ACTIONS(7588), 1, + anon_sym_POUND_, + ACTIONS(7585), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1877), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7591), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130376] = 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, + [137370] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5943), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5941), 30, + ACTIONS(7580), 1, + anon_sym_POUND_, + ACTIONS(7577), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7583), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130417] = 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, + [137412] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5671), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5669), 30, + ACTIONS(7537), 1, + anon_sym_POUND_, + ACTIONS(7593), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2099), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7540), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130458] = 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, + [137454] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5939), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5937), 30, + ACTIONS(7599), 1, + anon_sym_POUND_, + ACTIONS(7596), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7602), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130499] = 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, + [137496] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5675), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5673), 30, + ACTIONS(7518), 1, + anon_sym_POUND_, + ACTIONS(7515), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7521), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130540] = 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, + [137538] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5935), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5933), 30, + ACTIONS(7420), 1, + anon_sym_POUND_, + ACTIONS(7604), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2101), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7423), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130581] = 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, + [137580] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5679), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5677), 30, + ACTIONS(7504), 1, + anon_sym_POUND_, + ACTIONS(7501), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7507), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130622] = 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, + [137622] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6608), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6606), 23, + ACTIONS(7610), 1, + anon_sym_POUND_, + ACTIONS(7607), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7613), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130663] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [137664] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5683), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5681), 30, + ACTIONS(7618), 1, + anon_sym_POUND_, + ACTIONS(7615), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1889), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7621), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130704] = 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, + [137706] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6620), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6618), 23, + ACTIONS(7388), 1, + anon_sym_POUND_, + ACTIONS(7623), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2001), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7391), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130745] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [137748] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6620), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6618), 23, + ACTIONS(7629), 1, + anon_sym_POUND_, + ACTIONS(7626), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2098), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7632), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130786] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [137790] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6620), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6618), 23, + ACTIONS(7637), 1, + anon_sym_POUND_, + ACTIONS(7634), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2057), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7640), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130827] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [137832] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6620), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6618), 23, + ACTIONS(7488), 1, + anon_sym_POUND_, + ACTIONS(7485), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7491), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130868] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [137874] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5687), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5685), 30, + ACTIONS(7618), 1, + anon_sym_POUND_, + ACTIONS(7642), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1887), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7621), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130909] = 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, + [137916] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5691), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5689), 30, + ACTIONS(7648), 1, + anon_sym_POUND_, + ACTIONS(7645), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2104), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7651), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130950] = 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, + [137958] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6624), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6622), 23, + ACTIONS(7656), 1, + anon_sym_POUND_, + ACTIONS(7653), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7659), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [130991] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [138000] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6624), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6622), 23, + ACTIONS(7664), 1, + anon_sym_POUND_, + ACTIONS(7661), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7667), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131032] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [138042] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5631), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5629), 30, + ACTIONS(7672), 1, + anon_sym_POUND_, + ACTIONS(7669), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2109), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7675), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131073] = 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, + [138084] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5699), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5697), 30, + ACTIONS(7680), 1, + anon_sym_POUND_, + ACTIONS(7677), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7683), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131114] = 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, + [138126] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5703), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5701), 30, + ACTIONS(7672), 1, + anon_sym_POUND_, + ACTIONS(7685), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2111), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7675), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131155] = 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, + [138168] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5707), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5705), 30, + ACTIONS(7691), 1, + anon_sym_POUND_, + ACTIONS(7688), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2064), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7694), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131196] = 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, + [138210] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6624), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6622), 23, + ACTIONS(7664), 1, + anon_sym_POUND_, + ACTIONS(7661), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7667), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131237] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [138252] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6624), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6622), 23, + ACTIONS(6160), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131278] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6628), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, anon_sym_COMMA, - sym_fancy_literal, anon_sym_cl, - ACTIONS(6626), 23, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [138288] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7699), 1, + anon_sym_POUND_, + ACTIONS(7696), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7702), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131319] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [138330] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6628), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6626), 23, + ACTIONS(6160), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131360] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6628), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, anon_sym_COMMA, - sym_fancy_literal, anon_sym_cl, - ACTIONS(6626), 23, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [138366] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7707), 1, + anon_sym_POUND_, + ACTIONS(7704), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2114), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7710), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131401] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [138408] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5731), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5729), 30, + ACTIONS(6403), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131442] = 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_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [138444] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6628), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6626), 23, + ACTIONS(7715), 1, + anon_sym_POUND_, + ACTIONS(7712), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2096), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7718), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131483] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [138486] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5739), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5737), 30, + ACTIONS(7691), 1, + anon_sym_POUND_, + ACTIONS(7720), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2087), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7694), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131524] = 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, + [138528] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5743), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5741), 30, + ACTIONS(6399), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131565] = 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_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [138564] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5747), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5745), 30, + ACTIONS(7553), 1, + anon_sym_POUND_, + ACTIONS(7550), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7556), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131606] = 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, + [138606] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5751), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5749), 30, + ACTIONS(7726), 1, + anon_sym_POUND_, + ACTIONS(7723), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1982), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7729), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131647] = 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, + [138648] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5755), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5753), 30, + ACTIONS(7734), 1, + anon_sym_POUND_, + ACTIONS(7731), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2078), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7737), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131688] = 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, + [138690] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5759), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5757), 30, + ACTIONS(7742), 1, + anon_sym_POUND_, + ACTIONS(7739), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7745), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131729] = 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, + [138732] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6568), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6566), 23, + ACTIONS(7680), 1, + anon_sym_POUND_, + ACTIONS(7677), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7683), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131770] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [138774] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5961), 30, + ACTIONS(7750), 1, + anon_sym_POUND_, + ACTIONS(7747), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7753), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131811] = 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, + [138816] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5931), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5929), 30, + ACTIONS(7758), 1, + anon_sym_POUND_, + ACTIONS(7755), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7761), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131852] = 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, + [138858] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5767), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5765), 30, + ACTIONS(7758), 1, + anon_sym_POUND_, + ACTIONS(7755), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7761), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131893] = 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, + [138900] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5771), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5769), 30, + ACTIONS(7715), 1, + anon_sym_POUND_, + ACTIONS(7763), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2086), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7718), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131934] = 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, + [138942] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5927), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5925), 30, + ACTIONS(7707), 1, + anon_sym_POUND_, + ACTIONS(7766), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2083), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7710), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [131975] = 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, + [138984] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5775), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5773), 30, + ACTIONS(7772), 1, + anon_sym_POUND_, + ACTIONS(7769), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2092), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7775), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132016] = 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, + [139026] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6632), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6630), 23, + ACTIONS(7780), 1, + anon_sym_POUND_, + ACTIONS(7777), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7783), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132057] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [139068] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5779), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5777), 30, + ACTIONS(7780), 1, + anon_sym_POUND_, + ACTIONS(7777), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7783), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132098] = 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, + [139110] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6632), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_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(7788), 1, + anon_sym_POUND_, + ACTIONS(7785), 2, + sym__ws, + sym_comment, + STATE(2106), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7791), 24, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(6630), 23, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [139152] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7796), 1, + anon_sym_POUND_, + ACTIONS(7793), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7799), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132139] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [139194] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6632), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6630), 23, + ACTIONS(7699), 1, + anon_sym_POUND_, + ACTIONS(7696), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7702), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132180] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [139236] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6632), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6630), 23, + ACTIONS(7804), 1, + anon_sym_POUND_, + ACTIONS(7801), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2082), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7807), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132221] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [139278] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5783), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5781), 30, + ACTIONS(7812), 1, + anon_sym_POUND_, + ACTIONS(7809), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7815), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132262] = 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, + [139320] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5787), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5785), 30, + ACTIONS(7812), 1, + anon_sym_POUND_, + ACTIONS(7809), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7815), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132303] = 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, + [139362] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6636), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6634), 23, + ACTIONS(6252), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132344] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6636), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, anon_sym_COMMA, - sym_fancy_literal, anon_sym_cl, - ACTIONS(6634), 23, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [139398] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7804), 1, + anon_sym_POUND_, + ACTIONS(7817), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1987), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7807), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132385] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [139440] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6636), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6634), 23, + ACTIONS(7823), 1, + anon_sym_POUND_, + ACTIONS(7820), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1985), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7826), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132426] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [139482] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6640), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6638), 23, + ACTIONS(7831), 1, + anon_sym_POUND_, + ACTIONS(7828), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7834), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132467] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [139524] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5807), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5805), 30, + ACTIONS(7796), 1, + anon_sym_POUND_, + ACTIONS(7793), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7799), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132508] = 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, + [139566] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5811), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5809), 30, + ACTIONS(7839), 1, + anon_sym_POUND_, + ACTIONS(7836), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7842), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132549] = 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, + [139608] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6640), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6638), 23, + ACTIONS(7847), 1, + anon_sym_POUND_, + ACTIONS(7844), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7850), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132590] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [139650] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6640), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6638), 23, + ACTIONS(7855), 1, + anon_sym_POUND_, + ACTIONS(7852), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2085), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7858), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132631] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [139692] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5819), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5817), 30, + ACTIONS(7529), 1, + anon_sym_POUND_, + ACTIONS(7860), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1922), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7532), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132672] = 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, + [139734] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5823), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5821), 30, + ACTIONS(7866), 1, + anon_sym_POUND_, + ACTIONS(7863), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7869), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132713] = 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, + [139776] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5827), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5825), 30, + ACTIONS(7839), 1, + anon_sym_POUND_, + ACTIONS(7836), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7842), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132754] = 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, + [139818] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5831), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5829), 30, + ACTIONS(7874), 1, + anon_sym_POUND_, + ACTIONS(7871), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7877), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132795] = 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, + [139860] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5835), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5833), 30, + ACTIONS(7831), 1, + anon_sym_POUND_, + ACTIONS(7828), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7834), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132836] = 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, + [139902] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6640), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6638), 23, + ACTIONS(6276), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132877] = 3, + anon_sym_COMMA, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [139938] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5923), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5921), 30, + ACTIONS(7610), 1, + anon_sym_POUND_, + ACTIONS(7607), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7613), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132918] = 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, + [139980] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5835), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5833), 30, + ACTIONS(7882), 1, + anon_sym_POUND_, + ACTIONS(7879), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1888), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7885), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132959] = 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, + [140022] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5923), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5921), 30, + ACTIONS(7890), 1, + anon_sym_POUND_, + ACTIONS(7887), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1882), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7893), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133000] = 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, + [140064] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5917), 30, + ACTIONS(7898), 1, + anon_sym_POUND_, + ACTIONS(7895), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2113), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7901), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133041] = 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, + [140106] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5915), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5913), 30, + ACTIONS(7882), 1, + anon_sym_POUND_, + ACTIONS(7903), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1901), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7885), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133082] = 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, + [140148] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5923), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5921), 30, + ACTIONS(7909), 1, + anon_sym_POUND_, + ACTIONS(7906), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7912), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133123] = 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, + [140190] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6644), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6642), 23, + ACTIONS(7917), 1, + anon_sym_POUND_, + ACTIONS(7914), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7920), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133164] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [140232] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6644), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6642), 23, + ACTIONS(7925), 1, + anon_sym_POUND_, + ACTIONS(7922), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1907), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7928), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133205] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [140274] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5851), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5849), 30, + ACTIONS(7933), 1, + anon_sym_POUND_, + ACTIONS(7930), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7936), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133246] = 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, + [140316] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5855), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5853), 30, + ACTIONS(7941), 1, + anon_sym_POUND_, + ACTIONS(7938), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2074), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7944), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133287] = 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, + [140358] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5859), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5857), 30, + ACTIONS(7949), 1, + anon_sym_POUND_, + ACTIONS(7946), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1909), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7952), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133328] = 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, + [140400] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5863), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5861), 30, + ACTIONS(7957), 1, + anon_sym_POUND_, + ACTIONS(7954), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7960), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133369] = 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, + [140442] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6644), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6642), 23, + ACTIONS(7396), 1, + anon_sym_POUND_, + ACTIONS(7393), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7399), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133410] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [140484] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5859), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5857), 30, + ACTIONS(7941), 1, + anon_sym_POUND_, + ACTIONS(7962), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2071), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7944), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133451] = 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, + [140526] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5863), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5861), 30, + ACTIONS(7284), 1, + anon_sym_POUND_, + ACTIONS(7281), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7287), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133492] = 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, + [140568] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6644), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6642), 23, + ACTIONS(7968), 1, + anon_sym_POUND_, + ACTIONS(7965), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7971), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133533] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [140610] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6636), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6634), 23, + ACTIONS(7742), 1, + anon_sym_POUND_, + ACTIONS(7739), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7745), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133574] = 3, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [140652] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5593), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5591), 30, + ACTIONS(7656), 1, + anon_sym_POUND_, + ACTIONS(7653), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7659), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133615] = 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, + [140694] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5875), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5873), 30, + ACTIONS(7976), 1, + anon_sym_POUND_, + ACTIONS(7973), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1980), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7979), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133656] = 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, + [140736] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5879), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5877), 30, + ACTIONS(7292), 1, + anon_sym_POUND_, + ACTIONS(7981), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1886), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7295), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133697] = 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, + [140778] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5883), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5881), 30, + ACTIONS(7734), 1, + anon_sym_POUND_, + ACTIONS(7984), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2068), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7737), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133738] = 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, + [140820] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5887), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5885), 30, + ACTIONS(7949), 1, + anon_sym_POUND_, + ACTIONS(7987), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1939), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7952), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133779] = 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, + [140862] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5887), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5885), 30, + ACTIONS(7925), 1, + anon_sym_POUND_, + ACTIONS(7990), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1914), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7928), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133820] = 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, + [140904] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5891), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5889), 30, + ACTIONS(7917), 1, + anon_sym_POUND_, + ACTIONS(7914), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7920), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133861] = 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, + [140946] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5891), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5889), 30, + ACTIONS(7996), 1, + anon_sym_POUND_, + ACTIONS(7993), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1915), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7999), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133902] = 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, + [140988] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5593), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5591), 30, + ACTIONS(8004), 1, + anon_sym_POUND_, + ACTIONS(8001), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1962), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8007), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133943] = 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, + [141030] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5899), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5897), 30, + ACTIONS(7898), 1, + anon_sym_POUND_, + ACTIONS(8009), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1885), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7901), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [133984] = 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, + [141072] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5903), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5901), 30, + ACTIONS(8015), 1, + anon_sym_POUND_, + ACTIONS(8012), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1898), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8018), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [134025] = 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, + [141114] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5907), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5905), 30, + ACTIONS(8023), 1, + anon_sym_POUND_, + ACTIONS(8020), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2067), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8026), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [134066] = 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, + [141156] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5911), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5909), 30, + ACTIONS(8031), 1, + anon_sym_POUND_, + ACTIONS(8028), 2, sym__ws, sym_comment, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8034), 24, + 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, + [141198] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7909), 1, anon_sym_POUND_, + ACTIONS(7906), 2, + sym__ws, + sym_comment, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7912), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [134107] = 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, + [141240] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5915), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5913), 30, + ACTIONS(8039), 1, + anon_sym_POUND_, + ACTIONS(8036), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8042), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [134148] = 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, + [141282] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5917), 30, + ACTIONS(8015), 1, + anon_sym_POUND_, + ACTIONS(8044), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1905), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8018), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [134189] = 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, + [141324] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5923), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(5921), 30, + ACTIONS(6360), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [134230] = 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_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [141360] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6648), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6646), 22, + ACTIONS(7996), 1, + anon_sym_POUND_, + ACTIONS(8047), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1931), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7999), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [134270] = 3, + anon_sym_RPAREN, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [141402] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6652), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6650), 22, + ACTIONS(8053), 1, + anon_sym_POUND_, + ACTIONS(8050), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1900), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8056), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [134310] = 3, + anon_sym_RPAREN, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [141444] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6656), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6654), 22, + ACTIONS(8061), 1, + anon_sym_POUND_, + ACTIONS(8058), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1911), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8064), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [134350] = 3, + anon_sym_RPAREN, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [141486] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6660), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6658), 22, + ACTIONS(8069), 1, + anon_sym_POUND_, + ACTIONS(8066), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8072), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [134390] = 3, + anon_sym_RPAREN, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [141528] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6664), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6662), 22, + ACTIONS(8077), 1, + anon_sym_POUND_, + ACTIONS(8074), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8080), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [134430] = 3, + anon_sym_RPAREN, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [141570] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6668), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(6666), 22, + ACTIONS(8085), 1, + anon_sym_POUND_, + ACTIONS(8082), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(1926), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8088), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [134470] = 4, + anon_sym_RPAREN, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [141612] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6670), 1, - anon_sym_COLON, - ACTIONS(6672), 1, - anon_sym_COLON_COLON, - ACTIONS(5611), 29, + ACTIONS(8085), 1, + anon_sym_POUND_, + ACTIONS(8090), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1928), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8088), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -134166,22 +145762,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, - [134511] = 4, + [141654] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6670), 1, - anon_sym_COLON, - ACTIONS(6672), 1, - anon_sym_COLON_COLON, - ACTIONS(5595), 29, + ACTIONS(8077), 1, + anon_sym_POUND_, + ACTIONS(8074), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8080), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -134203,31 +145799,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, - [134552] = 7, + [141696] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6677), 1, + ACTIONS(8069), 1, anon_sym_POUND_, - ACTIONS(6682), 1, - anon_sym_cl, - ACTIONS(6685), 1, - anon_sym_into, - ACTIONS(6674), 2, + ACTIONS(8066), 2, sym__ws, sym_comment, - STATE(2679), 3, + STATE(1899), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(6680), 23, + ACTIONS(8072), 24, 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, @@ -134247,17 +145839,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [134599] = 3, + [141738] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5625), 1, - anon_sym_COLON, - ACTIONS(5623), 30, + ACTIONS(7588), 1, + anon_sym_POUND_, + ACTIONS(8093), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, - anon_sym_COLON_COLON, + STATE(2004), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7591), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -134279,22 +145873,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, - [134638] = 4, + [141780] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6670), 1, - anon_sym_COLON, - ACTIONS(6672), 1, - anon_sym_COLON_COLON, - ACTIONS(5619), 29, + ACTIONS(8061), 1, + anon_sym_POUND_, + ACTIONS(8096), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1933), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8064), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -134316,63 +145910,26 @@ 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, - [134679] = 7, + [141822] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6690), 1, + ACTIONS(8102), 1, anon_sym_POUND_, - ACTIONS(6695), 1, - anon_sym_cl, - ACTIONS(6698), 1, - anon_sym_into, - ACTIONS(6687), 2, + ACTIONS(8099), 2, sym__ws, sym_comment, - STATE(2712), 3, + STATE(1899), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(6693), 23, + ACTIONS(8105), 24, 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, - [134726] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5797), 30, - sym__ws, - sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -134390,57 +145947,26 @@ 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, - [134762] = 2, + [141864] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5721), 30, - sym__ws, - sym_comment, + ACTIONS(8110), 1, anon_sym_POUND_, - aux_sym_num_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_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, - [134798] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5793), 30, + ACTIONS(8107), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1998), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8113), 24, 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, @@ -134458,57 +145984,26 @@ 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, - [134834] = 2, + [141906] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5801), 30, - sym__ws, - sym_comment, + ACTIONS(8118), 1, anon_sym_POUND_, - aux_sym_num_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_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, - [134870] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5841), 30, + ACTIONS(8115), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1943), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8121), 24, 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, @@ -134526,57 +146021,26 @@ 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, - [134906] = 2, + [141948] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5845), 30, - sym__ws, - sym_comment, + ACTIONS(8126), 1, anon_sym_POUND_, - aux_sym_num_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_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, - [134942] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5845), 30, + ACTIONS(8123), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8129), 24, 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, @@ -134594,23 +146058,26 @@ 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, - [134978] = 2, + [141990] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5837), 30, + ACTIONS(8134), 1, + anon_sym_POUND_, + ACTIONS(8131), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8137), 24, 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, @@ -134628,23 +146095,26 @@ 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, - [135014] = 2, + [142032] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5865), 30, + ACTIONS(8118), 1, + anon_sym_POUND_, + ACTIONS(8139), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1948), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8121), 24, 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, @@ -134662,23 +146132,26 @@ 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, - [135050] = 2, + [142074] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5869), 30, + ACTIONS(8145), 1, + anon_sym_POUND_, + ACTIONS(8142), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1950), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8148), 24, 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, @@ -134696,23 +146169,26 @@ 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, - [135086] = 2, + [142116] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 30, + ACTIONS(8023), 1, + anon_sym_POUND_, + ACTIONS(8150), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2063), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8026), 24, 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, @@ -134730,23 +146206,26 @@ 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, - [135122] = 2, + [142158] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5599), 30, + ACTIONS(8156), 1, + anon_sym_POUND_, + ACTIONS(8153), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8159), 24, 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, @@ -134764,23 +146243,26 @@ 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, - [135158] = 2, + [142200] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5717), 30, + ACTIONS(8164), 1, + anon_sym_POUND_, + ACTIONS(8161), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2061), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8167), 24, 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, @@ -134798,23 +146280,26 @@ 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, - [135194] = 2, + [142242] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5713), 30, + ACTIONS(8172), 1, + anon_sym_POUND_, + ACTIONS(8169), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8175), 24, 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, @@ -134832,23 +146317,26 @@ 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, - [135230] = 2, + [142284] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5693), 30, + ACTIONS(8180), 1, + anon_sym_POUND_, + ACTIONS(8177), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2060), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8183), 24, 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, @@ -134866,23 +146354,26 @@ 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, - [135266] = 2, + [142326] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5649), 30, + ACTIONS(8188), 1, + anon_sym_POUND_, + ACTIONS(8185), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8191), 24, 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, @@ -134900,18 +146391,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, - [135302] = 2, + [142368] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5813), 29, + ACTIONS(8126), 1, + anon_sym_POUND_, + ACTIONS(8123), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8129), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -134933,18 +146428,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, - [135337] = 2, + [142410] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5653), 29, + ACTIONS(8196), 1, + anon_sym_POUND_, + ACTIONS(8193), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8199), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -134966,18 +146465,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, - [135372] = 2, + [142452] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5591), 29, + ACTIONS(8204), 1, + anon_sym_POUND_, + ACTIONS(8201), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1895), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8207), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -134999,18 +146502,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, - [135407] = 2, + [142494] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5961), 29, + ACTIONS(8180), 1, + anon_sym_POUND_, + ACTIONS(8209), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2047), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8183), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135032,18 +146539,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, - [135442] = 2, + [142536] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5957), 29, + ACTIONS(8215), 1, + anon_sym_POUND_, + ACTIONS(8212), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1963), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8218), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135065,21 +146576,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, - [135477] = 4, + [142578] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6672), 1, - anon_sym_COLON_COLON, - ACTIONS(6700), 1, - anon_sym_COLON, - ACTIONS(5619), 27, + ACTIONS(8164), 1, + anon_sym_POUND_, + ACTIONS(8220), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2045), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8167), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135104,17 +146616,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [135516] = 4, + [142620] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6672), 1, - anon_sym_COLON_COLON, - ACTIONS(6702), 1, - anon_sym_COLON, - ACTIONS(5619), 27, + ACTIONS(8226), 1, + anon_sym_POUND_, + ACTIONS(8223), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8229), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135139,14 +146653,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [135555] = 2, + [142662] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5587), 29, + ACTIONS(8234), 1, + anon_sym_POUND_, + ACTIONS(8231), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2039), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8237), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135168,18 +146687,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, - [135590] = 2, + [142704] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5587), 29, + ACTIONS(8226), 1, + anon_sym_POUND_, + ACTIONS(8223), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8229), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135201,18 +146724,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, - [135625] = 2, + [142746] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5961), 29, + ACTIONS(8242), 1, + anon_sym_POUND_, + ACTIONS(8239), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8245), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135234,18 +146761,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, - [135660] = 2, + [142788] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5957), 29, + ACTIONS(8215), 1, + anon_sym_POUND_, + ACTIONS(8247), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1964), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8218), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135267,18 +146798,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, - [135695] = 2, + [142830] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5587), 29, + ACTIONS(8253), 1, + anon_sym_POUND_, + ACTIONS(8250), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1893), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8256), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135300,18 +146835,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, - [135730] = 2, + [142872] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5587), 29, + ACTIONS(8188), 1, + anon_sym_POUND_, + ACTIONS(8185), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8191), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135333,18 +146872,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, - [135765] = 2, + [142914] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5953), 29, + ACTIONS(8172), 1, + anon_sym_POUND_, + ACTIONS(8169), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8175), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135366,21 +146909,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, - [135800] = 4, + [142956] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6672), 1, - anon_sym_COLON_COLON, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(5619), 27, + ACTIONS(8145), 1, + anon_sym_POUND_, + ACTIONS(8258), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1972), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8148), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135405,14 +146949,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [135839] = 2, + [142998] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5949), 29, + ACTIONS(8264), 1, + anon_sym_POUND_, + ACTIONS(8261), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8267), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135434,21 +146983,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, - [135874] = 4, + [143040] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6672), 1, - anon_sym_COLON_COLON, - ACTIONS(6706), 1, - anon_sym_COLON, - ACTIONS(5619), 27, + ACTIONS(8272), 1, + anon_sym_POUND_, + ACTIONS(8269), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8275), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135473,14 +147023,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [135913] = 2, + [143082] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5945), 29, + ACTIONS(8280), 1, + anon_sym_POUND_, + ACTIONS(8277), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1974), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8283), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135502,18 +147057,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, - [135948] = 2, + [143124] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5941), 29, + ACTIONS(8280), 1, + anon_sym_POUND_, + ACTIONS(8285), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1975), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8283), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135535,18 +147094,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, - [135983] = 2, + [143166] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5945), 29, + ACTIONS(8264), 1, + anon_sym_POUND_, + ACTIONS(8261), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8267), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135568,18 +147131,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, - [136018] = 2, + [143208] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5941), 29, + ACTIONS(8291), 1, + anon_sym_POUND_, + ACTIONS(8288), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8294), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135601,18 +147168,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, - [136053] = 2, + [143250] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5749), 29, + ACTIONS(8299), 1, + anon_sym_POUND_, + ACTIONS(8296), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1979), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8302), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135634,18 +147205,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, - [136088] = 2, + [143292] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5637), 29, + ACTIONS(8307), 1, + anon_sym_POUND_, + ACTIONS(8304), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1981), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8310), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135667,18 +147242,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, - [136123] = 2, + [143334] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5607), 29, + ACTIONS(8315), 1, + anon_sym_POUND_, + ACTIONS(8312), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8318), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135700,14 +147279,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [136158] = 2, + [143376] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5603), 29, + ACTIONS(6356), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -135716,6 +147294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -135737,14 +147316,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [136193] = 2, + [143412] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5937), 29, + ACTIONS(8323), 1, + anon_sym_POUND_, + ACTIONS(8320), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8326), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135766,18 +147350,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, - [136228] = 2, + [143454] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5595), 29, + ACTIONS(8315), 1, + anon_sym_POUND_, + ACTIONS(8312), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8318), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135799,18 +147387,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, - [136263] = 2, + [143496] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5965), 29, + ACTIONS(8307), 1, + anon_sym_POUND_, + ACTIONS(8328), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1986), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8310), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135832,14 +147424,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [136298] = 2, + [143538] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5949), 29, + ACTIONS(6352), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -135848,6 +147439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -135869,14 +147461,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [136333] = 2, + [143574] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5629), 29, + ACTIONS(8299), 1, + anon_sym_POUND_, + ACTIONS(8331), 2, sym__ws, sym_comment, + STATE(1988), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8302), 24, + 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, + [143616] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8291), 1, anon_sym_POUND_, - aux_sym_num_lit_token1, + ACTIONS(8288), 2, + sym__ws, + sym_comment, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8294), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135898,18 +147532,59 @@ 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, - [136368] = 2, + [143658] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5633), 29, + ACTIONS(8337), 1, + anon_sym_POUND_, + ACTIONS(8334), 2, sym__ws, sym_comment, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8340), 24, + 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, + [143700] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8345), 1, anon_sym_POUND_, - aux_sym_num_lit_token1, + ACTIONS(8342), 2, + sym__ws, + sym_comment, + STATE(2007), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8348), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135931,18 +147606,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, - [136403] = 2, + [143742] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5945), 29, + ACTIONS(7976), 1, + anon_sym_POUND_, + ACTIONS(8350), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1971), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7979), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135964,18 +147643,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, - [136438] = 2, + [143784] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5629), 29, + ACTIONS(7874), 1, + anon_sym_POUND_, + ACTIONS(7871), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7877), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135997,18 +147680,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, - [136473] = 2, + [143826] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5657), 29, + ACTIONS(8356), 1, + anon_sym_POUND_, + ACTIONS(8353), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8359), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136030,18 +147717,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, - [136508] = 2, + [143868] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5941), 29, + ACTIONS(8364), 1, + anon_sym_POUND_, + ACTIONS(8361), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2005), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8367), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136063,18 +147754,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, - [136543] = 2, + [143910] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5945), 29, + ACTIONS(8372), 1, + anon_sym_POUND_, + ACTIONS(8369), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8375), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136096,18 +147791,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, - [136578] = 2, + [143952] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5941), 29, + ACTIONS(8380), 1, + anon_sym_POUND_, + ACTIONS(8377), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8383), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136129,18 +147828,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, - [136613] = 2, + [143994] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5937), 29, + ACTIONS(8272), 1, + anon_sym_POUND_, + ACTIONS(8269), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8275), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136162,18 +147865,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, - [136648] = 2, + [144036] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5933), 29, + ACTIONS(8388), 1, + anon_sym_POUND_, + ACTIONS(8385), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1969), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8391), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136195,14 +147902,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [136683] = 2, + [144078] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5929), 29, + ACTIONS(6176), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136211,6 +147917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -136232,14 +147939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [136718] = 2, + [144114] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5925), 29, + ACTIONS(8345), 1, + anon_sym_POUND_, + ACTIONS(8393), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1942), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8348), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136261,18 +147973,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, - [136753] = 2, + [144156] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5921), 29, + ACTIONS(7572), 1, + anon_sym_POUND_, + ACTIONS(8396), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2006), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7575), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136294,18 +148010,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, - [136788] = 2, + [144198] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5789), 29, + ACTIONS(8402), 1, + anon_sym_POUND_, + ACTIONS(8399), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8405), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136327,18 +148047,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, - [136823] = 2, + [144240] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5921), 29, + ACTIONS(8410), 1, + anon_sym_POUND_, + ACTIONS(8407), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2021), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8413), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136360,18 +148084,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, - [136858] = 2, + [144282] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5917), 29, + ACTIONS(8388), 1, + anon_sym_POUND_, + ACTIONS(8415), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1968), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8391), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136393,14 +148121,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [136893] = 2, + [144324] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 29, + ACTIONS(6208), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136409,6 +148136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -136430,14 +148158,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [136928] = 2, + [144360] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5661), 29, + ACTIONS(8380), 1, + anon_sym_POUND_, + ACTIONS(8377), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8383), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136459,18 +148192,59 @@ 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, - [136963] = 2, + [144402] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5921), 29, + ACTIONS(8421), 1, + anon_sym_POUND_, + ACTIONS(8418), 2, sym__ws, sym_comment, + STATE(2043), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8424), 24, + 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, + [144444] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8429), 1, anon_sym_POUND_, - aux_sym_num_lit_token1, + ACTIONS(8426), 2, + sym__ws, + sym_comment, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8432), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136492,18 +148266,59 @@ 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, - [136998] = 2, + [144486] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5921), 29, + ACTIONS(8337), 1, + anon_sym_POUND_, + ACTIONS(8334), 2, sym__ws, sym_comment, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8340), 24, + 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, + [144528] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8437), 1, anon_sym_POUND_, - aux_sym_num_lit_token1, + ACTIONS(8434), 2, + sym__ws, + sym_comment, + STATE(2032), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8440), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136525,18 +148340,59 @@ 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, - [137033] = 2, + [144570] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5917), 29, + ACTIONS(8323), 1, + anon_sym_POUND_, + ACTIONS(8320), 2, sym__ws, sym_comment, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8326), 24, + 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, + [144612] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8445), 1, anon_sym_POUND_, - aux_sym_num_lit_token1, + ACTIONS(8442), 2, + sym__ws, + sym_comment, + STATE(2031), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8448), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136558,18 +148414,59 @@ 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, - [137068] = 2, + [144654] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 29, + ACTIONS(8453), 1, + anon_sym_POUND_, + ACTIONS(8450), 2, sym__ws, sym_comment, + STATE(1945), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8456), 24, + 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, + [144696] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8461), 1, anon_sym_POUND_, - aux_sym_num_lit_token1, + ACTIONS(8458), 2, + sym__ws, + sym_comment, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8464), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136591,21 +148488,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, - [137103] = 4, + [144738] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6672), 1, - anon_sym_COLON_COLON, - ACTIONS(6708), 1, - anon_sym_COLON, - ACTIONS(5619), 27, + ACTIONS(8469), 1, + anon_sym_POUND_, + ACTIONS(8466), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2049), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8472), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136630,14 +148528,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [137142] = 2, + [144780] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5909), 29, + ACTIONS(8477), 1, + anon_sym_POUND_, + ACTIONS(8474), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8480), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136659,18 +148562,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, - [137177] = 2, + [144822] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5665), 29, + ACTIONS(8445), 1, + anon_sym_POUND_, + ACTIONS(8482), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2028), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8448), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136692,55 +148599,59 @@ 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, - [137212] = 3, + [144864] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6712), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(6710), 27, - aux_sym_num_lit_token1, - anon_sym_TILDE, - anon_sym_SQUOTE, - anon_sym_COMMA, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - aux_sym_format_directive_type_token1, - aux_sym_format_directive_type_token2, - anon_sym_LF, - anon_sym_CR, - aux_sym_format_directive_type_token3, - aux_sym_format_directive_type_token4, - aux_sym_format_directive_type_token5, - aux_sym_format_directive_type_token6, - anon_sym__, - aux_sym_format_directive_type_token7, - aux_sym_format_directive_type_token8, - aux_sym_format_directive_type_token9, - aux_sym_format_directive_type_token10, - anon_sym_SEMI, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_Newline, - aux_sym_format_directive_type_token11, - [137249] = 4, + ACTIONS(8437), 1, + anon_sym_POUND_, + ACTIONS(8485), 2, + sym__ws, + sym_comment, + STATE(2027), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8440), 24, + 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, + [144906] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6672), 1, - anon_sym_COLON_COLON, - ACTIONS(6714), 1, - anon_sym_COLON, - ACTIONS(5619), 27, + ACTIONS(8491), 1, + anon_sym_POUND_, + ACTIONS(8488), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8494), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136765,14 +148676,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [137288] = 2, + [144948] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5905), 29, + ACTIONS(8499), 1, + anon_sym_POUND_, + ACTIONS(8496), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2019), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8502), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136794,18 +148710,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, - [137323] = 2, + [144990] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5901), 29, + ACTIONS(8491), 1, + anon_sym_POUND_, + ACTIONS(8488), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8494), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136827,18 +148747,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, - [137358] = 2, + [145032] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5897), 29, + ACTIONS(8453), 1, + anon_sym_POUND_, + ACTIONS(8504), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1961), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8456), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136860,18 +148784,59 @@ 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, - [137393] = 2, + [145074] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5889), 29, + ACTIONS(7348), 1, + anon_sym_POUND_, + ACTIONS(7345), 2, sym__ws, sym_comment, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7351), 24, + 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, + [145116] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8356), 1, anon_sym_POUND_, - aux_sym_num_lit_token1, + ACTIONS(8353), 2, + sym__ws, + sym_comment, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8359), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136893,14 +148858,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [137428] = 2, + [145158] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5889), 29, + ACTIONS(6280), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136909,6 +148873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -136930,14 +148895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [137463] = 2, + [145194] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5885), 29, + ACTIONS(7957), 1, + anon_sym_POUND_, + ACTIONS(7954), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(1899), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7960), 24, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136959,14 +148929,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [137498] = 2, + [145236] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5885), 29, + ACTIONS(6272), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136975,6 +148944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, aux_sym_accumulation_verb_token1, anon_sym_for, @@ -136996,10 +148966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [137533] = 2, + [145272] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5881), 29, + ACTIONS(6506), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -137029,17 +148999,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [137568] = 4, + [145307] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6672), 1, - anon_sym_COLON_COLON, - ACTIONS(6716), 1, - anon_sym_COLON, - ACTIONS(5619), 27, + ACTIONS(6506), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -137061,13 +149028,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, - [137607] = 2, + [145342] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5877), 29, + ACTIONS(6264), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -137097,10 +149065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [137642] = 2, + [145377] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5873), 29, + ACTIONS(6260), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -137130,10 +149098,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [137677] = 2, + [145412] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5669), 29, + ACTIONS(6256), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -137163,14 +149131,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [137712] = 2, + [145447] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5673), 29, + ACTIONS(7266), 1, + anon_sym_COLON_COLON, + ACTIONS(8507), 1, + anon_sym_COLON, + ACTIONS(6152), 27, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -137192,14 +149163,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [137747] = 2, + [145486] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5677), 29, + ACTIONS(6188), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -137229,14 +149199,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [137782] = 2, + [145521] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5681), 29, + ACTIONS(7266), 1, + anon_sym_COLON_COLON, + ACTIONS(8509), 1, + anon_sym_COLON, + ACTIONS(6152), 27, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -137258,14 +149231,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [137817] = 2, + [145560] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5685), 29, + ACTIONS(6248), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -137295,10 +149267,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [137852] = 2, + [145595] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5689), 29, + ACTIONS(6244), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -137328,10 +149300,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [137887] = 2, + [145630] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5861), 29, + ACTIONS(6296), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -137361,14 +149333,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [137922] = 2, + [145665] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5761), 29, + ACTIONS(7266), 1, + anon_sym_COLON_COLON, + ACTIONS(8511), 1, + anon_sym_COLON, + ACTIONS(6152), 27, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -137390,18 +149365,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [137957] = 2, + [145704] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5857), 29, + ACTIONS(8513), 1, + aux_sym_num_lit_token2, + ACTIONS(6138), 28, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -137427,10 +149402,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [137992] = 2, + [145741] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5629), 29, + ACTIONS(6288), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -137460,14 +149435,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138027] = 2, + [145776] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5861), 29, + ACTIONS(7266), 1, + anon_sym_COLON_COLON, + ACTIONS(8515), 1, + anon_sym_COLON, + ACTIONS(6152), 27, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -137489,18 +149467,20 @@ 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, - [138062] = 2, + [145815] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5857), 29, + ACTIONS(7266), 1, + anon_sym_COLON_COLON, + ACTIONS(8517), 1, + anon_sym_COLON, + ACTIONS(6152), 27, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -137522,18 +149502,20 @@ 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, - [138097] = 2, + [145854] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5725), 29, + ACTIONS(7266), 1, + anon_sym_COLON_COLON, + ACTIONS(8519), 1, + anon_sym_COLON, + ACTIONS(6152), 27, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -137555,14 +149537,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [138132] = 2, + [145893] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5853), 29, + ACTIONS(6240), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -137592,14 +149573,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138167] = 2, + [145928] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5849), 29, + ACTIONS(7266), 1, + anon_sym_COLON_COLON, + ACTIONS(8521), 1, + anon_sym_COLON, + ACTIONS(6152), 27, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -137621,18 +149605,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [138202] = 4, + [145967] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6672), 1, + ACTIONS(7266), 1, anon_sym_COLON_COLON, - ACTIONS(6718), 1, + ACTIONS(8523), 1, anon_sym_COLON, - ACTIONS(5619), 27, + ACTIONS(6152), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -137660,10 +149643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138241] = 2, + [146006] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5709), 29, + ACTIONS(6292), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -137693,14 +149676,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138276] = 2, + [146041] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5833), 29, + ACTIONS(7266), 1, + anon_sym_COLON_COLON, + ACTIONS(8525), 1, + anon_sym_COLON, + ACTIONS(6152), 27, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -137722,14 +149708,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [138311] = 2, + [146080] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5833), 29, + ACTIONS(6236), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -137759,14 +149744,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138346] = 4, + [146115] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6672), 1, + ACTIONS(7266), 1, anon_sym_COLON_COLON, - ACTIONS(6720), 1, + ACTIONS(8527), 1, anon_sym_COLON, - ACTIONS(5619), 27, + ACTIONS(6152), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -137794,10 +149779,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138385] = 2, + [146154] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5829), 29, + ACTIONS(6392), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -137827,14 +149812,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138420] = 2, + [146189] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5697), 29, + ACTIONS(7266), 1, + anon_sym_COLON_COLON, + ACTIONS(8529), 1, + anon_sym_COLON, + ACTIONS(6152), 27, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -137856,14 +149844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [138455] = 2, + [146228] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5701), 29, + ACTIONS(6300), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -137893,10 +149880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138490] = 2, + [146263] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5825), 29, + ACTIONS(6232), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -137926,10 +149913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138525] = 2, + [146298] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5821), 29, + ACTIONS(6392), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -137959,14 +149946,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138560] = 4, + [146333] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6672), 1, + ACTIONS(7266), 1, anon_sym_COLON_COLON, - ACTIONS(6722), 1, + ACTIONS(8531), 1, anon_sym_COLON, - ACTIONS(5619), 27, + ACTIONS(6152), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -137994,10 +149981,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138599] = 2, + [146372] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5817), 29, + ACTIONS(6228), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -138027,17 +150014,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138634] = 4, + [146407] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6672), 1, - anon_sym_COLON_COLON, - ACTIONS(6724), 1, - anon_sym_COLON, - ACTIONS(5619), 27, + ACTIONS(6304), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -138059,13 +150043,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, - [138673] = 2, + [146442] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5809), 29, + ACTIONS(6224), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -138095,10 +150080,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138708] = 2, + [146477] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5805), 29, + ACTIONS(6308), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -138128,10 +150113,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138743] = 2, + [146512] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5785), 29, + ACTIONS(6312), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -138157,14 +150142,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, + anon_sym_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [146547] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7266), 1, + anon_sym_COLON_COLON, + ACTIONS(8533), 1, + anon_sym_COLON, + ACTIONS(6152), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, anon_sym_finally, anon_sym_return, anon_sym_initially, - [138778] = 2, + [146586] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5781), 29, + ACTIONS(6220), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -138194,10 +150214,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138813] = 2, + [146621] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5777), 29, + ACTIONS(6216), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -138227,10 +150247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138848] = 2, + [146656] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5773), 29, + ACTIONS(6188), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -138260,10 +150280,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138883] = 2, + [146691] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5769), 29, + ACTIONS(6316), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -138293,10 +150313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138918] = 2, + [146726] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5765), 29, + ACTIONS(6192), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -138326,17 +150346,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138953] = 4, + [146761] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6672), 1, - anon_sym_COLON_COLON, - ACTIONS(6726), 1, - anon_sym_COLON, - ACTIONS(5619), 27, + ACTIONS(6188), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -138358,13 +150375,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, - [138992] = 2, + [146796] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5705), 29, + ACTIONS(6144), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -138394,10 +150412,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139027] = 2, + [146831] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5757), 29, + ACTIONS(6324), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -138427,14 +150445,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139062] = 2, + [146866] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5753), 29, + ACTIONS(7266), 1, + anon_sym_COLON_COLON, + ACTIONS(8535), 1, + anon_sym_COLON, + ACTIONS(6152), 27, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -138456,14 +150477,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [139097] = 2, + [146905] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5645), 29, + ACTIONS(6144), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -138493,10 +150513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139132] = 2, + [146940] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5729), 29, + ACTIONS(6184), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -138526,10 +150546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139167] = 2, + [146975] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5733), 29, + ACTIONS(6180), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -138559,10 +150579,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139202] = 2, + [147010] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5737), 29, + ACTIONS(6526), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -138592,10 +150612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139237] = 2, + [147045] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5741), 29, + ACTIONS(6522), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -138625,10 +150645,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139272] = 2, + [147080] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5641), 29, + ACTIONS(6172), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -138658,10 +150678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139307] = 2, + [147115] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5591), 29, + ACTIONS(6168), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -138691,15 +150711,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139342] = 3, + [147150] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6728), 1, - aux_sym_num_lit_token2, - ACTIONS(5581), 28, + ACTIONS(6328), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -138725,10 +150744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139379] = 2, + [147185] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5745), 29, + ACTIONS(6332), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -138758,91 +150777,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139414] = 9, + [147220] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6494), 1, - aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6510), 1, - anon_sym_SLASH, - ACTIONS(6730), 1, - anon_sym_COMMA, - STATE(2201), 1, - sym__format_token, - STATE(3269), 1, - aux_sym_format_modifiers_repeat1, - STATE(3316), 1, - sym_format_directive_type, - ACTIONS(6500), 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, - [139462] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6494), 1, + ACTIONS(6336), 29, + sym__ws, + sym_comment, + anon_sym_POUND_, aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(6510), 1, - anon_sym_SLASH, - ACTIONS(6730), 1, - anon_sym_COMMA, - STATE(2201), 1, - sym__format_token, - STATE(3269), 1, - aux_sym_format_modifiers_repeat1, - STATE(3313), 1, - sym_format_directive_type, - ACTIONS(6500), 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, - [139510] = 2, + 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, + [147255] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6732), 27, + ACTIONS(6340), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -138864,16 +150839,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [139543] = 2, + [147290] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6734), 27, + ACTIONS(6344), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -138895,16 +150872,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [139576] = 2, + [147325] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6736), 27, + ACTIONS(6518), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -138926,16 +150905,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [139609] = 2, + [147360] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6738), 27, + ACTIONS(6518), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -138957,16 +150938,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [139642] = 2, + [147395] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6740), 27, + ACTIONS(6526), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -138988,16 +150971,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [139675] = 2, + [147430] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6743), 27, + ACTIONS(6522), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139019,16 +151004,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [139708] = 2, + [147465] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6746), 27, + ACTIONS(6364), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139050,16 +151037,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [139741] = 2, + [147500] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6748), 27, + ACTIONS(6518), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139081,16 +151070,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [139774] = 2, + [147535] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6738), 27, + ACTIONS(6518), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139112,16 +151103,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [139807] = 2, + [147570] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6750), 27, + ACTIONS(6514), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139143,16 +151136,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [139840] = 2, + [147605] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6752), 27, + ACTIONS(6510), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139174,16 +151169,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [139873] = 2, + [147640] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6754), 27, + ACTIONS(6368), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139205,16 +151202,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [139906] = 2, + [147675] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6756), 27, + ACTIONS(6376), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139236,16 +151235,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [139939] = 2, + [147710] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6758), 27, + ACTIONS(6372), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139267,16 +151268,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [139972] = 2, + [147745] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6760), 27, + ACTIONS(6380), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139298,13 +151301,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140005] = 2, + [147780] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6763), 27, + ACTIONS(7266), 1, + anon_sym_COLON_COLON, + ACTIONS(8537), 1, + anon_sym_COLON, + ACTIONS(6152), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -139332,13 +151340,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140038] = 2, + [147819] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6766), 27, + ACTIONS(6502), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139360,16 +151369,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140071] = 2, + [147854] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6769), 27, + ACTIONS(6502), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139391,16 +151402,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140104] = 2, + [147889] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6771), 27, + ACTIONS(6348), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139422,16 +151435,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140137] = 2, + [147924] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6773), 27, + ACTIONS(6384), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139453,16 +151468,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140170] = 2, + [147959] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6775), 27, + ACTIONS(6388), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139484,16 +151501,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140203] = 2, + [147994] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6777), 27, + ACTIONS(6320), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139515,16 +151534,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140236] = 2, + [148029] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6779), 27, + ACTIONS(6446), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139546,16 +151567,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140269] = 2, + [148064] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6781), 27, + ACTIONS(6284), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139577,16 +151600,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140302] = 2, + [148099] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6783), 27, + ACTIONS(6498), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139608,16 +151633,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140335] = 2, + [148134] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6785), 27, + ACTIONS(6510), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139639,16 +151666,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140368] = 2, + [148169] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6766), 27, + ACTIONS(6506), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139670,16 +151699,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140401] = 2, + [148204] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6787), 27, + ACTIONS(6268), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139701,16 +151732,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140434] = 2, + [148239] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6789), 27, + ACTIONS(6502), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139732,16 +151765,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140467] = 2, + [148274] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6775), 27, + ACTIONS(6506), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139763,16 +151798,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140500] = 2, + [148309] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6792), 27, + ACTIONS(6502), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139794,16 +151831,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140533] = 2, + [148344] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6794), 27, + ACTIONS(6410), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139825,16 +151864,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140566] = 2, + [148379] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6796), 27, + ACTIONS(6498), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139856,16 +151897,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140599] = 2, + [148414] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6798), 27, + ACTIONS(6494), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139887,16 +151930,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140632] = 2, + [148449] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6800), 27, + ACTIONS(6212), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139918,16 +151963,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140665] = 2, + [148484] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6802), 27, + ACTIONS(6490), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139949,16 +151996,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140698] = 2, + [148519] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6802), 27, + ACTIONS(6486), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -139980,16 +152029,52 @@ 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, - [140731] = 2, + [148554] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8541), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8539), 27, + aux_sym_num_lit_token1, + anon_sym_TILDE, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + aux_sym_format_directive_type_token1, + aux_sym_format_directive_type_token2, + anon_sym_LF, + anon_sym_CR, + aux_sym_format_directive_type_token3, + aux_sym_format_directive_type_token4, + aux_sym_format_directive_type_token5, + aux_sym_format_directive_type_token6, + anon_sym__, + aux_sym_format_directive_type_token7, + aux_sym_format_directive_type_token8, + aux_sym_format_directive_type_token9, + aux_sym_format_directive_type_token10, + anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_Newline, + aux_sym_format_directive_type_token11, + [148591] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6804), 27, + ACTIONS(6482), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140011,16 +152096,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140764] = 2, + [148626] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6807), 27, + ACTIONS(6482), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140042,16 +152129,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140797] = 2, + [148661] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6809), 27, + ACTIONS(6478), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140073,16 +152162,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140830] = 2, + [148696] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6811), 27, + ACTIONS(6474), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140104,16 +152195,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140863] = 2, + [148731] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6814), 27, + ACTIONS(6482), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140135,16 +152228,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140896] = 2, + [148766] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6816), 27, + ACTIONS(6482), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140166,16 +152261,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140929] = 2, + [148801] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6818), 27, + ACTIONS(6204), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140197,16 +152294,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140962] = 2, + [148836] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6820), 27, + ACTIONS(6200), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140228,16 +152327,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [140995] = 2, + [148871] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6822), 27, + ACTIONS(6478), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140259,16 +152360,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141028] = 2, + [148906] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6824), 27, + ACTIONS(6474), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140290,16 +152393,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141061] = 2, + [148941] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6748), 27, + ACTIONS(6470), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140321,16 +152426,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141094] = 2, + [148976] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6826), 27, + ACTIONS(6466), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140352,16 +152459,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141127] = 2, + [149011] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6828), 27, + ACTIONS(6196), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140383,13 +152492,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141160] = 2, + [149046] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6830), 27, + ACTIONS(7266), 1, + anon_sym_COLON_COLON, + ACTIONS(8543), 1, + anon_sym_COLON, + ACTIONS(6152), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140417,13 +152531,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141193] = 2, + [149085] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6833), 27, + ACTIONS(6462), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140445,16 +152560,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141226] = 2, + [149120] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6833), 27, + ACTIONS(6458), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140476,16 +152593,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141259] = 2, + [149155] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6835), 27, + ACTIONS(6450), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140507,16 +152626,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141292] = 2, + [149190] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6838), 27, + ACTIONS(6450), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140538,16 +152659,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141325] = 2, + [149225] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6830), 27, + ACTIONS(6446), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140569,16 +152692,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141358] = 2, + [149260] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6840), 27, + ACTIONS(6414), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140600,16 +152725,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141391] = 2, + [149295] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6842), 27, + ACTIONS(6418), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140631,16 +152758,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141424] = 2, + [149330] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6826), 27, + ACTIONS(6442), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140662,16 +152791,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141457] = 2, + [149365] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6845), 27, + ACTIONS(6422), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140693,16 +152824,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141490] = 2, + [149400] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6848), 27, + ACTIONS(6418), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140724,16 +152857,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141523] = 2, + [149435] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6850), 27, + ACTIONS(6438), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140755,16 +152890,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141556] = 2, + [149470] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6852), 27, + ACTIONS(6434), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140786,16 +152923,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [141589] = 2, + [149505] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6854), 27, + ACTIONS(6422), 29, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140817,13 +152956,92 @@ 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, - [141622] = 2, + [149540] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6857), 27, + ACTIONS(7075), 1, + aux_sym_num_lit_token1, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7091), 1, + anon_sym_SLASH, + ACTIONS(8545), 1, + anon_sym_COMMA, + STATE(2454), 1, + sym__format_token, + STATE(3521), 1, + aux_sym_format_modifiers_repeat1, + STATE(3538), 1, + sym_format_directive_type, + ACTIONS(7081), 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, + [149588] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7075), 1, + aux_sym_num_lit_token1, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(7091), 1, + anon_sym_SLASH, + ACTIONS(8545), 1, + anon_sym_COMMA, + STATE(2454), 1, + sym__format_token, + STATE(3521), 1, + aux_sym_format_modifiers_repeat1, + STATE(3544), 1, + sym_format_directive_type, + ACTIONS(7081), 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, + [149636] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8547), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140851,10 +153069,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141655] = 2, + [149669] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6859), 27, + ACTIONS(8549), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140882,10 +153100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141688] = 2, + [149702] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6771), 27, + ACTIONS(8551), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140913,10 +153131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141721] = 2, + [149735] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6861), 27, + ACTIONS(8551), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140944,10 +153162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141754] = 2, + [149768] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6863), 27, + ACTIONS(8553), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140975,10 +153193,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141787] = 2, + [149801] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6865), 27, + ACTIONS(8555), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141006,10 +153224,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141820] = 2, + [149834] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6867), 27, + ACTIONS(8557), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141037,10 +153255,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141853] = 2, + [149867] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6870), 27, + ACTIONS(8559), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141068,10 +153286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141886] = 2, + [149900] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6872), 27, + ACTIONS(8561), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141099,10 +153317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141919] = 2, + [149933] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6874), 27, + ACTIONS(8563), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141130,10 +153348,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141952] = 2, + [149966] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6876), 27, + ACTIONS(8565), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141161,10 +153379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141985] = 2, + [149999] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6878), 27, + ACTIONS(8555), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141192,10 +153410,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142018] = 2, + [150032] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6880), 27, + ACTIONS(8567), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141223,10 +153441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142051] = 2, + [150065] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6874), 27, + ACTIONS(8569), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141254,10 +153472,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142084] = 2, + [150098] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6882), 27, + ACTIONS(8571), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141285,10 +153503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142117] = 2, + [150131] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6884), 27, + ACTIONS(8573), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141316,10 +153534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142150] = 2, + [150164] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6887), 27, + ACTIONS(8575), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141347,10 +153565,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142183] = 2, + [150197] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6887), 27, + ACTIONS(8577), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141378,10 +153596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142216] = 2, + [150230] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6890), 27, + ACTIONS(8579), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141409,10 +153627,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142249] = 2, + [150263] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6892), 27, + ACTIONS(8581), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141440,10 +153658,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142282] = 2, + [150296] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6895), 27, + ACTIONS(8563), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141471,10 +153689,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142315] = 2, + [150329] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6895), 27, + ACTIONS(8583), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141502,10 +153720,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142348] = 2, + [150362] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6897), 27, + ACTIONS(8585), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141533,10 +153751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142381] = 2, + [150395] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6899), 27, + ACTIONS(8585), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141564,10 +153782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142414] = 2, + [150428] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6902), 27, + ACTIONS(8587), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141595,10 +153813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142447] = 2, + [150461] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6904), 27, + ACTIONS(8587), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141626,10 +153844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142480] = 2, + [150494] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6906), 27, + ACTIONS(8589), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141657,10 +153875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142513] = 2, + [150527] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6908), 27, + ACTIONS(8577), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141688,10 +153906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142546] = 2, + [150560] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6911), 27, + ACTIONS(8591), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141719,10 +153937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142579] = 2, + [150593] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6913), 27, + ACTIONS(8593), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141750,10 +153968,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142612] = 2, + [150626] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6915), 27, + ACTIONS(8595), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141781,10 +153999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142645] = 2, + [150659] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6917), 27, + ACTIONS(8597), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141812,10 +154030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142678] = 2, + [150692] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6920), 27, + ACTIONS(8599), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141843,10 +154061,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142711] = 2, + [150725] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6763), 27, + ACTIONS(8601), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141874,10 +154092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142744] = 2, + [150758] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6769), 27, + ACTIONS(8603), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141905,29 +154123,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142777] = 10, + [150791] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2359), 1, + ACTIONS(2948), 1, anon_sym_being, - ACTIONS(6924), 1, + ACTIONS(8607), 1, anon_sym_POUND_, - ACTIONS(6926), 1, + ACTIONS(8609), 1, anon_sym_cl, STATE(293), 1, sym_for_clause_word, - STATE(1041), 1, + STATE(1107), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(6922), 2, + ACTIONS(8605), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 15, + ACTIONS(2950), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -141943,29 +154161,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [142825] = 10, + [150839] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2359), 1, + ACTIONS(2948), 1, anon_sym_being, - ACTIONS(6924), 1, + ACTIONS(8607), 1, anon_sym_POUND_, - ACTIONS(6926), 1, + ACTIONS(8609), 1, anon_sym_cl, STATE(293), 1, sym_for_clause_word, - STATE(1042), 1, + STATE(1099), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(6922), 2, + ACTIONS(8605), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 15, + ACTIONS(2950), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -141981,29 +154199,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [142873] = 10, + [150887] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2359), 1, + ACTIONS(2948), 1, anon_sym_being, - ACTIONS(6924), 1, + ACTIONS(8607), 1, anon_sym_POUND_, - ACTIONS(6926), 1, + ACTIONS(8609), 1, anon_sym_cl, STATE(293), 1, sym_for_clause_word, - STATE(1043), 1, + STATE(1108), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(6922), 2, + ACTIONS(8605), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 15, + ACTIONS(2950), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -142019,29 +154237,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [142921] = 10, + [150935] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2359), 1, + ACTIONS(2948), 1, anon_sym_being, - ACTIONS(6924), 1, + ACTIONS(8607), 1, anon_sym_POUND_, - ACTIONS(6926), 1, + ACTIONS(8609), 1, anon_sym_cl, STATE(293), 1, sym_for_clause_word, - STATE(1039), 1, + STATE(1090), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(6922), 2, + ACTIONS(8605), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 15, + ACTIONS(2950), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -142057,29 +154275,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [142969] = 10, + [150983] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2359), 1, + ACTIONS(2948), 1, anon_sym_being, - ACTIONS(6924), 1, + ACTIONS(8607), 1, anon_sym_POUND_, - ACTIONS(6926), 1, + ACTIONS(8609), 1, anon_sym_cl, STATE(293), 1, sym_for_clause_word, - STATE(1044), 1, + STATE(1103), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(6922), 2, + ACTIONS(8605), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 15, + ACTIONS(2950), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -142095,29 +154313,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [143017] = 10, + [151031] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2359), 1, + ACTIONS(2948), 1, anon_sym_being, - ACTIONS(6924), 1, + ACTIONS(8607), 1, anon_sym_POUND_, - ACTIONS(6926), 1, + ACTIONS(8609), 1, anon_sym_cl, STATE(293), 1, sym_for_clause_word, - STATE(1038), 1, + STATE(1109), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(6922), 2, + ACTIONS(8605), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 15, + ACTIONS(2950), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -142133,29 +154351,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [143065] = 10, + [151079] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2359), 1, + ACTIONS(2948), 1, anon_sym_being, - ACTIONS(6924), 1, + ACTIONS(8607), 1, anon_sym_POUND_, - ACTIONS(6926), 1, + ACTIONS(8609), 1, anon_sym_cl, STATE(293), 1, sym_for_clause_word, - STATE(1036), 1, + STATE(1095), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(6922), 2, + ACTIONS(8605), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 15, + ACTIONS(2950), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -142171,29 +154389,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [143113] = 10, + [151127] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2359), 1, + ACTIONS(2948), 1, anon_sym_being, - ACTIONS(6924), 1, + ACTIONS(8607), 1, anon_sym_POUND_, - ACTIONS(6926), 1, + ACTIONS(8609), 1, anon_sym_cl, STATE(293), 1, sym_for_clause_word, - STATE(1035), 1, + STATE(1100), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(6922), 2, + ACTIONS(8605), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 15, + ACTIONS(2950), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -142209,29 +154427,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [143161] = 10, + [151175] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2359), 1, + ACTIONS(2948), 1, anon_sym_being, - ACTIONS(6924), 1, + ACTIONS(8607), 1, anon_sym_POUND_, - ACTIONS(6926), 1, + ACTIONS(8609), 1, anon_sym_cl, STATE(293), 1, sym_for_clause_word, - STATE(1026), 1, + STATE(1091), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(6922), 2, + ACTIONS(8605), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 15, + ACTIONS(2950), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -142247,29 +154465,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [143209] = 10, + [151223] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2359), 1, + ACTIONS(2948), 1, anon_sym_being, - ACTIONS(6924), 1, + ACTIONS(8607), 1, anon_sym_POUND_, - ACTIONS(6926), 1, + ACTIONS(8609), 1, anon_sym_cl, STATE(293), 1, sym_for_clause_word, - STATE(1033), 1, + STATE(1096), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(6922), 2, + ACTIONS(8605), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 15, + ACTIONS(2950), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -142285,29 +154503,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [143257] = 10, + [151271] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2359), 1, + ACTIONS(2948), 1, anon_sym_being, - ACTIONS(6924), 1, + ACTIONS(8607), 1, anon_sym_POUND_, - ACTIONS(6926), 1, + ACTIONS(8609), 1, anon_sym_cl, STATE(293), 1, sym_for_clause_word, - STATE(1040), 1, + STATE(1092), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(6922), 2, + ACTIONS(8605), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 15, + ACTIONS(2950), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -142323,29 +154541,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [143305] = 10, + [151319] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2359), 1, + ACTIONS(2948), 1, anon_sym_being, - ACTIONS(6924), 1, + ACTIONS(8607), 1, anon_sym_POUND_, - ACTIONS(6926), 1, + ACTIONS(8609), 1, anon_sym_cl, STATE(293), 1, sym_for_clause_word, - STATE(1029), 1, + STATE(1093), 1, aux_sym_for_clause_repeat1, - STATE(1307), 1, + STATE(1322), 1, sym__for_part, - ACTIONS(6922), 2, + ACTIONS(8605), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2361), 15, + ACTIONS(2950), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -142361,10 +154579,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [143353] = 2, + [151367] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6928), 25, + ACTIONS(8611), 25, aux_sym_num_lit_token1, anon_sym_TILDE, anon_sym_SQUOTE, @@ -142390,10 +154608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [143384] = 2, + [151398] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6930), 25, + ACTIONS(8613), 25, aux_sym_num_lit_token1, anon_sym_TILDE, anon_sym_SQUOTE, @@ -142419,143 +154637,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [143415] = 20, + [151429] = 20, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6934), 1, + ACTIONS(8617), 1, anon_sym_POUND_, - ACTIONS(6936), 1, + ACTIONS(8619), 1, aux_sym_sym_lit_token1, - ACTIONS(6938), 1, + ACTIONS(8621), 1, anon_sym_COMMA, - STATE(1702), 1, + STATE(1808), 1, sym_list_lit, - STATE(1705), 1, + STATE(1840), 1, sym_unquoting_lit, - STATE(2164), 1, + STATE(2395), 1, sym_sym_lit, - STATE(2167), 1, + STATE(2396), 1, sym_kwd_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2362), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, aux_sym_list_lit_repeat1, - ACTIONS(6932), 2, + ACTIONS(8615), 2, sym__ws, sym_comment, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2068), 3, + STATE(2430), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [151495] = 8, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(2948), 1, + anon_sym_being, + ACTIONS(8607), 1, + anon_sym_POUND_, + ACTIONS(8609), 1, + anon_sym_cl, + STATE(383), 1, + sym_for_clause_word, + ACTIONS(8623), 2, + sym__ws, + sym_comment, + STATE(2302), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [143481] = 20, + ACTIONS(2950), 15, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [151537] = 20, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6934), 1, + ACTIONS(8617), 1, anon_sym_POUND_, - ACTIONS(6936), 1, + ACTIONS(8619), 1, aux_sym_sym_lit_token1, - ACTIONS(6938), 1, + ACTIONS(8621), 1, anon_sym_COMMA, - STATE(1679), 1, + STATE(1849), 1, sym_list_lit, - STATE(1680), 1, + STATE(1850), 1, sym_unquoting_lit, - STATE(2159), 1, - sym_kwd_lit, - STATE(2160), 1, + STATE(2383), 1, sym_sym_lit, - STATE(2197), 1, + STATE(2387), 1, + sym_kwd_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2362), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, aux_sym_list_lit_repeat1, - ACTIONS(6940), 2, + ACTIONS(8625), 2, sym__ws, sym_comment, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2069), 3, + STATE(2289), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [143547] = 18, - ACTIONS(17), 1, + [151603] = 18, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6944), 1, + ACTIONS(8629), 1, anon_sym_POUND_, - ACTIONS(6946), 1, + ACTIONS(8631), 1, aux_sym_sym_lit_token1, - ACTIONS(6948), 1, + ACTIONS(8633), 1, anon_sym_LBRACE, - ACTIONS(6950), 1, + ACTIONS(8635), 1, anon_sym_POUND_QMARK, - STATE(2175), 1, + STATE(2407), 1, sym__bare_map_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2401), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2628), 1, aux_sym_list_lit_repeat1, - ACTIONS(6942), 2, + ACTIONS(8627), 2, sym__ws, sym_comment, - STATE(2067), 3, + STATE(2298), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2173), 5, + STATE(2409), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [143609] = 18, + [151665] = 18, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -142564,130 +154816,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6944), 1, + ACTIONS(8629), 1, anon_sym_POUND_, - ACTIONS(6946), 1, - aux_sym_sym_lit_token1, - ACTIONS(6948), 1, + ACTIONS(8633), 1, anon_sym_LBRACE, - ACTIONS(6950), 1, + ACTIONS(8639), 1, + aux_sym_sym_lit_token1, + ACTIONS(8641), 1, anon_sym_POUND_QMARK, - STATE(2175), 1, + STATE(2407), 1, sym__bare_map_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2401), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2630), 1, aux_sym_list_lit_repeat1, - ACTIONS(6952), 2, + ACTIONS(8637), 2, sym__ws, sym_comment, - STATE(2198), 3, + STATE(2425), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2182), 5, + STATE(2408), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [143671] = 18, + [151727] = 18, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6944), 1, + ACTIONS(8629), 1, anon_sym_POUND_, - ACTIONS(6948), 1, - anon_sym_LBRACE, - ACTIONS(6954), 1, + ACTIONS(8631), 1, aux_sym_sym_lit_token1, - ACTIONS(6956), 1, + ACTIONS(8633), 1, + anon_sym_LBRACE, + ACTIONS(8635), 1, anon_sym_POUND_QMARK, - STATE(2175), 1, + STATE(2407), 1, sym__bare_map_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2400), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2628), 1, aux_sym_list_lit_repeat1, - ACTIONS(6952), 2, + ACTIONS(8637), 2, sym__ws, sym_comment, - STATE(2198), 3, + STATE(2425), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2182), 5, + STATE(2408), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [143733] = 18, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3145), 1, + [151789] = 18, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(6160), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6944), 1, + ACTIONS(8629), 1, anon_sym_POUND_, - ACTIONS(6948), 1, + ACTIONS(8633), 1, anon_sym_LBRACE, - ACTIONS(6954), 1, + ACTIONS(8639), 1, aux_sym_sym_lit_token1, - ACTIONS(6956), 1, + ACTIONS(8641), 1, anon_sym_POUND_QMARK, - STATE(2175), 1, + STATE(2407), 1, sym__bare_map_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2400), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2630), 1, aux_sym_list_lit_repeat1, - ACTIONS(6952), 2, + ACTIONS(8637), 2, sym__ws, sym_comment, - STATE(2198), 3, + STATE(2425), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2180), 5, + STATE(2405), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [143795] = 18, + [151851] = 18, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -142696,42 +154948,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6944), 1, + ACTIONS(8629), 1, anon_sym_POUND_, - ACTIONS(6946), 1, - aux_sym_sym_lit_token1, - ACTIONS(6948), 1, + ACTIONS(8633), 1, anon_sym_LBRACE, - ACTIONS(6950), 1, + ACTIONS(8639), 1, + aux_sym_sym_lit_token1, + ACTIONS(8641), 1, anon_sym_POUND_QMARK, - STATE(2175), 1, + STATE(2407), 1, sym__bare_map_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2401), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2630), 1, aux_sym_list_lit_repeat1, - ACTIONS(6958), 2, + ACTIONS(8643), 2, sym__ws, sym_comment, - STATE(2063), 3, + STATE(2295), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2176), 5, + STATE(2409), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [143857] = 18, + [151913] = 18, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -142740,270 +154992,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6944), 1, + ACTIONS(8629), 1, anon_sym_POUND_, - ACTIONS(6946), 1, - aux_sym_sym_lit_token1, - ACTIONS(6948), 1, + ACTIONS(8633), 1, anon_sym_LBRACE, - ACTIONS(6950), 1, + ACTIONS(8639), 1, + aux_sym_sym_lit_token1, + ACTIONS(8641), 1, anon_sym_POUND_QMARK, - STATE(2175), 1, + STATE(2407), 1, sym__bare_map_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2401), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2630), 1, aux_sym_list_lit_repeat1, - ACTIONS(6952), 2, + ACTIONS(8645), 2, sym__ws, sym_comment, - STATE(2198), 3, + STATE(2293), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2180), 5, + STATE(2404), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [143919] = 20, - ACTIONS(29), 1, - anon_sym_LPAREN, + [151975] = 18, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(6160), 1, + ACTIONS(3848), 1, + anon_sym_DQUOTE, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6934), 1, + ACTIONS(8629), 1, anon_sym_POUND_, - ACTIONS(6936), 1, + ACTIONS(8631), 1, aux_sym_sym_lit_token1, - ACTIONS(6938), 1, - anon_sym_COMMA, - STATE(1655), 1, - sym_unquoting_lit, - STATE(1740), 1, - sym_list_lit, - STATE(2161), 1, - sym_sym_lit, - STATE(2168), 1, - sym_kwd_lit, - STATE(2197), 1, + ACTIONS(8633), 1, + anon_sym_LBRACE, + ACTIONS(8635), 1, + anon_sym_POUND_QMARK, + STATE(2407), 1, + sym__bare_map_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2362), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2628), 1, aux_sym_list_lit_repeat1, - ACTIONS(6960), 2, + ACTIONS(8637), 2, sym__ws, sym_comment, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2264), 3, + STATE(2425), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [143985] = 20, + STATE(2405), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [152037] = 20, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2991), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6934), 1, + ACTIONS(8617), 1, anon_sym_POUND_, - ACTIONS(6936), 1, + ACTIONS(8619), 1, aux_sym_sym_lit_token1, - ACTIONS(6938), 1, + ACTIONS(8621), 1, anon_sym_COMMA, - STATE(1699), 1, - sym_list_lit, - STATE(1700), 1, + STATE(1722), 1, sym_unquoting_lit, - STATE(2155), 1, + STATE(1791), 1, + sym_list_lit, + STATE(2393), 1, sym_sym_lit, - STATE(2165), 1, + STATE(2394), 1, sym_kwd_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2362), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, aux_sym_list_lit_repeat1, - ACTIONS(6960), 2, + ACTIONS(8647), 2, sym__ws, sym_comment, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2264), 3, + STATE(2300), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [144051] = 18, + [152103] = 20, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(4548), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(4550), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, - anon_sym_DQUOTE, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6944), 1, + ACTIONS(8617), 1, anon_sym_POUND_, - ACTIONS(6948), 1, - anon_sym_LBRACE, - ACTIONS(6954), 1, + ACTIONS(8619), 1, aux_sym_sym_lit_token1, - ACTIONS(6956), 1, - anon_sym_POUND_QMARK, - STATE(2175), 1, - sym__bare_map_lit, - STATE(2197), 1, + ACTIONS(8621), 1, + anon_sym_COMMA, + STATE(1731), 1, + sym_unquoting_lit, + STATE(1756), 1, + sym_list_lit, + STATE(2374), 1, + sym_sym_lit, + STATE(2377), 1, + sym_kwd_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2400), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, aux_sym_list_lit_repeat1, - ACTIONS(6962), 2, + ACTIONS(8615), 2, sym__ws, sym_comment, - STATE(2064), 3, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2430), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2176), 5, - sym_kwd_lit, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [144113] = 18, + [152169] = 18, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(3846), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(3848), 1, anon_sym_DQUOTE, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6944), 1, + ACTIONS(8629), 1, anon_sym_POUND_, - ACTIONS(6948), 1, - anon_sym_LBRACE, - ACTIONS(6954), 1, + ACTIONS(8631), 1, aux_sym_sym_lit_token1, - ACTIONS(6956), 1, + ACTIONS(8633), 1, + anon_sym_LBRACE, + ACTIONS(8635), 1, anon_sym_POUND_QMARK, - STATE(2175), 1, + STATE(2407), 1, sym__bare_map_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2400), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2628), 1, aux_sym_list_lit_repeat1, - ACTIONS(6964), 2, + ACTIONS(8649), 2, sym__ws, sym_comment, - STATE(2065), 3, + STATE(2294), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2173), 5, + STATE(2404), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [144175] = 8, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2359), 1, - anon_sym_being, - ACTIONS(6924), 1, - anon_sym_POUND_, - ACTIONS(6926), 1, - anon_sym_cl, - STATE(383), 1, - sym_for_clause_word, - ACTIONS(6966), 2, - sym__ws, - sym_comment, - STATE(2073), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(2361), 15, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [144217] = 6, + [152231] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(131), 1, + ACTIONS(6100), 1, anon_sym_being, - ACTIONS(6971), 1, + ACTIONS(8654), 1, anon_sym_POUND_, - ACTIONS(6968), 2, + ACTIONS(8651), 2, sym__ws, sym_comment, - STATE(2073), 3, + STATE(2302), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(5545), 16, + ACTIONS(6102), 16, anon_sym_cl, anon_sym_in, anon_sym_across, @@ -143020,17 +155238,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [144254] = 3, + [152268] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5625), 2, - anon_sym_COLON, + ACTIONS(6182), 1, anon_sym_being, - ACTIONS(5623), 20, + ACTIONS(8657), 1, + anon_sym_COLON, + ACTIONS(8659), 1, + anon_sym_COLON_COLON, + ACTIONS(6180), 19, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_cl, anon_sym_in, anon_sym_across, @@ -143047,16 +155267,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [144284] = 5, + [152302] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5621), 1, + ACTIONS(6166), 1, anon_sym_being, - ACTIONS(6974), 1, + ACTIONS(8657), 1, anon_sym_COLON, - ACTIONS(6976), 1, + ACTIONS(8659), 1, anon_sym_COLON_COLON, - ACTIONS(5619), 19, + ACTIONS(6164), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -143076,16 +155296,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [144318] = 5, + [152336] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5613), 1, + ACTIONS(6154), 1, anon_sym_being, - ACTIONS(6974), 1, - anon_sym_COLON, - ACTIONS(6976), 1, + ACTIONS(8659), 1, anon_sym_COLON_COLON, - ACTIONS(5611), 19, + ACTIONS(8661), 1, + anon_sym_COLON, + ACTIONS(6152), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -143105,16 +155325,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [144352] = 5, + [152370] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5621), 1, + ACTIONS(6154), 1, anon_sym_being, - ACTIONS(6976), 1, - anon_sym_COLON_COLON, - ACTIONS(6978), 1, + ACTIONS(8657), 1, anon_sym_COLON, - ACTIONS(5619), 19, + ACTIONS(8659), 1, + anon_sym_COLON_COLON, + ACTIONS(6152), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -143134,19 +155354,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [144386] = 5, + [152404] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5597), 1, - anon_sym_being, - ACTIONS(6974), 1, + ACTIONS(6150), 2, anon_sym_COLON, - ACTIONS(6976), 1, - anon_sym_COLON_COLON, - ACTIONS(5595), 19, + anon_sym_being, + ACTIONS(6148), 20, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_cl, anon_sym_in, anon_sym_across, @@ -143163,14 +155381,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [144420] = 3, + [152434] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(2928), 1, + anon_sym_LPAREN, + ACTIONS(8663), 1, + anon_sym_POUND, + ACTIONS(8665), 1, + anon_sym_POUND_QMARK, + ACTIONS(8667), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(8669), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(8671), 1, + anon_sym_SQUOTE, + ACTIONS(8673), 1, + anon_sym_COMMA_AT, + ACTIONS(8675), 1, + anon_sym_POUND_PLUS, + ACTIONS(8677), 1, + anon_sym_POUND_DASH, + ACTIONS(8679), 1, + anon_sym_POUNDC, + ACTIONS(8681), 1, + anon_sym_POUNDc, + STATE(1826), 1, + sym__bare_set_lit, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2406), 1, + aux_sym_list_lit_repeat1, + STATE(2426), 1, + sym__metadata_lit, + STATE(1827), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [152497] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5847), 3, + ACTIONS(6198), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5845), 18, + ACTIONS(6196), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -143189,14 +155450,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [144449] = 3, + [152526] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5601), 3, + ACTIONS(6358), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5599), 18, + ACTIONS(6356), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -143215,100 +155476,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [144478] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + [152555] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(6980), 1, + ACTIONS(6140), 1, + anon_sym_being, + ACTIONS(8683), 1, + aux_sym_num_lit_token2, + ACTIONS(6138), 19, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [152586] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6354), 3, anon_sym_POUND, - ACTIONS(6982), 1, + anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(6984), 1, + ACTIONS(6352), 18, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_POUND_QMARK_AT, - ACTIONS(6986), 1, anon_sym_POUND_SQUOTE, - ACTIONS(6988), 1, anon_sym_SQUOTE, - ACTIONS(6990), 1, anon_sym_COMMA_AT, - ACTIONS(6992), 1, anon_sym_POUND_PLUS, - ACTIONS(6994), 1, anon_sym_POUND_DASH, - ACTIONS(6996), 1, anon_sym_POUNDC, - ACTIONS(6998), 1, anon_sym_POUNDc, - STATE(807), 1, - sym__bare_set_lit, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2177), 1, - aux_sym_list_lit_repeat1, - STATE(2197), 1, - sym__metadata_lit, - STATE(806), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [144541] = 20, + [152615] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3153), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(7000), 1, + ACTIONS(8663), 1, anon_sym_POUND, - ACTIONS(7002), 1, + ACTIONS(8679), 1, + anon_sym_POUNDC, + ACTIONS(8681), 1, + anon_sym_POUNDc, + ACTIONS(8685), 1, anon_sym_POUND_QMARK, - ACTIONS(7004), 1, + ACTIONS(8687), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(7006), 1, + ACTIONS(8689), 1, anon_sym_POUND_SQUOTE, - ACTIONS(7008), 1, + ACTIONS(8691), 1, anon_sym_SQUOTE, - ACTIONS(7010), 1, + ACTIONS(8693), 1, anon_sym_COMMA_AT, - ACTIONS(7012), 1, + ACTIONS(8695), 1, anon_sym_POUND_PLUS, - ACTIONS(7014), 1, + ACTIONS(8697), 1, anon_sym_POUND_DASH, - ACTIONS(7016), 1, - anon_sym_POUNDC, - ACTIONS(7018), 1, - anon_sym_POUNDc, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(1826), 1, + sym__bare_set_lit, + STATE(2384), 1, sym_old_meta_lit, - STATE(2177), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2406), 1, aux_sym_list_lit_repeat1, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2287), 1, - sym__bare_set_lit, - STATE(2295), 3, + STATE(1827), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [144604] = 3, + [152678] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5695), 3, + ACTIONS(6350), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5693), 18, + ACTIONS(6348), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -143327,14 +155598,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [144633] = 3, + [152707] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5711), 3, + ACTIONS(6374), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5709), 18, + ACTIONS(6372), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -143353,40 +155624,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [144662] = 3, + [152736] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5715), 3, + ACTIONS(5052), 1, + anon_sym_LPAREN, + ACTIONS(8699), 1, anon_sym_POUND, - anon_sym_COLON, + ACTIONS(8701), 1, anon_sym_POUND_QMARK, - ACTIONS(5713), 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(8703), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(8705), 1, anon_sym_POUND_SQUOTE, + ACTIONS(8707), 1, anon_sym_SQUOTE, + ACTIONS(8709), 1, anon_sym_COMMA_AT, + ACTIONS(8711), 1, anon_sym_POUND_PLUS, + ACTIONS(8713), 1, anon_sym_POUND_DASH, + ACTIONS(8715), 1, anon_sym_POUNDC, + ACTIONS(8717), 1, anon_sym_POUNDc, - [144691] = 3, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2406), 1, + aux_sym_list_lit_repeat1, + STATE(2426), 1, + sym__metadata_lit, + STATE(2431), 1, + sym__bare_set_lit, + STATE(2529), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [152799] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5719), 3, + ACTIONS(6322), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5717), 18, + ACTIONS(6320), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -143405,109 +155693,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [144720] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5723), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(5721), 18, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, + [152828] = 20, + ACTIONS(25), 1, anon_sym_CARET, + ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, 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, - [144749] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5727), 3, + ACTIONS(8719), 1, anon_sym_POUND, - anon_sym_COLON, + ACTIONS(8721), 1, anon_sym_POUND_QMARK, - ACTIONS(5725), 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(8723), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(8725), 1, anon_sym_POUND_SQUOTE, + ACTIONS(8727), 1, anon_sym_SQUOTE, + ACTIONS(8729), 1, anon_sym_COMMA_AT, + ACTIONS(8731), 1, anon_sym_POUND_PLUS, + ACTIONS(8733), 1, anon_sym_POUND_DASH, + ACTIONS(8735), 1, anon_sym_POUNDC, + ACTIONS(8737), 1, anon_sym_POUNDc, - [144778] = 20, + STATE(1598), 1, + sym__bare_set_lit, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2406), 1, + aux_sym_list_lit_repeat1, + STATE(2426), 1, + sym__metadata_lit, + STATE(1645), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [152891] = 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(7020), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(8699), 1, anon_sym_POUND, - ACTIONS(7022), 1, + ACTIONS(8715), 1, + anon_sym_POUNDC, + ACTIONS(8717), 1, + anon_sym_POUNDc, + ACTIONS(8739), 1, anon_sym_POUND_QMARK, - ACTIONS(7024), 1, + ACTIONS(8741), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(7026), 1, + ACTIONS(8743), 1, anon_sym_POUND_SQUOTE, - ACTIONS(7028), 1, + ACTIONS(8745), 1, anon_sym_SQUOTE, - ACTIONS(7030), 1, + ACTIONS(8747), 1, anon_sym_COMMA_AT, - ACTIONS(7032), 1, + ACTIONS(8749), 1, anon_sym_POUND_PLUS, - ACTIONS(7034), 1, + ACTIONS(8751), 1, anon_sym_POUND_DASH, - ACTIONS(7036), 1, - anon_sym_POUNDC, - ACTIONS(7038), 1, - anon_sym_POUNDc, - STATE(1530), 1, - sym__bare_set_lit, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2177), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2406), 1, aux_sym_list_lit_repeat1, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(1594), 3, + STATE(2431), 1, + sym__bare_set_lit, + STATE(2529), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [144841] = 3, + [152954] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5763), 3, + ACTIONS(6286), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5761), 18, + ACTIONS(6284), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -143526,127 +155805,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [144870] = 4, + [152983] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5583), 1, - anon_sym_being, - ACTIONS(7040), 1, - aux_sym_num_lit_token2, - ACTIONS(5581), 19, + ACTIONS(6282), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(6280), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [144901] = 20, - ACTIONS(25), 1, + 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(3495), 1, anon_sym_LPAREN, - ACTIONS(7000), 1, - anon_sym_POUND, - ACTIONS(7016), 1, - anon_sym_POUNDC, - ACTIONS(7018), 1, - anon_sym_POUNDc, - ACTIONS(7042), 1, - anon_sym_POUND_QMARK, - ACTIONS(7044), 1, + anon_sym_LBRACE, anon_sym_POUND_QMARK_AT, - ACTIONS(7046), 1, anon_sym_POUND_SQUOTE, - ACTIONS(7048), 1, anon_sym_SQUOTE, - ACTIONS(7050), 1, anon_sym_COMMA_AT, - ACTIONS(7052), 1, anon_sym_POUND_PLUS, - ACTIONS(7054), 1, anon_sym_POUND_DASH, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2177), 1, - aux_sym_list_lit_repeat1, - STATE(2197), 1, - sym__metadata_lit, - STATE(2287), 1, - sym__bare_set_lit, - STATE(2295), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [144964] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, + anon_sym_POUNDC, + anon_sym_POUNDc, + [153012] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7020), 1, + ACTIONS(6278), 3, anon_sym_POUND, - ACTIONS(7022), 1, + anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7024), 1, + ACTIONS(6276), 18, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_POUND_QMARK_AT, - ACTIONS(7036), 1, - anon_sym_POUNDC, - ACTIONS(7038), 1, - anon_sym_POUNDc, - ACTIONS(7056), 1, anon_sym_POUND_SQUOTE, - ACTIONS(7058), 1, anon_sym_SQUOTE, - ACTIONS(7060), 1, anon_sym_COMMA_AT, - ACTIONS(7062), 1, anon_sym_POUND_PLUS, - ACTIONS(7064), 1, anon_sym_POUND_DASH, - STATE(1530), 1, - sym__bare_set_lit, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2177), 1, - aux_sym_list_lit_repeat1, - STATE(2197), 1, - sym__metadata_lit, - STATE(1594), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [145027] = 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + [153041] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5655), 3, + ACTIONS(6401), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5653), 18, + ACTIONS(6399), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -143665,14 +155883,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [145056] = 3, + [153070] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5651), 3, + ACTIONS(6274), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5649), 18, + ACTIONS(6272), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -143691,14 +155909,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [145085] = 3, + [153099] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3852), 1, + anon_sym_LPAREN, + ACTIONS(8685), 1, + anon_sym_POUND_QMARK, + ACTIONS(8699), 1, + anon_sym_POUND, + ACTIONS(8715), 1, + anon_sym_POUNDC, + ACTIONS(8717), 1, + anon_sym_POUNDc, + ACTIONS(8753), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(8755), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(8757), 1, + anon_sym_SQUOTE, + ACTIONS(8759), 1, + anon_sym_COMMA_AT, + ACTIONS(8761), 1, + anon_sym_POUND_PLUS, + ACTIONS(8763), 1, + anon_sym_POUND_DASH, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2406), 1, + aux_sym_list_lit_repeat1, + STATE(2426), 1, + sym__metadata_lit, + STATE(2431), 1, + sym__bare_set_lit, + STATE(2529), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [153162] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5647), 3, + ACTIONS(6362), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5645), 18, + ACTIONS(6360), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -143717,14 +155978,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [145114] = 3, + [153191] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5791), 3, + ACTIONS(6270), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5789), 18, + ACTIONS(6268), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -143743,83 +156004,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [145143] = 20, + [153220] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3127), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(7066), 1, + ACTIONS(8765), 1, anon_sym_POUND, - ACTIONS(7068), 1, + ACTIONS(8767), 1, anon_sym_POUND_QMARK, - ACTIONS(7070), 1, + ACTIONS(8769), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(7072), 1, + ACTIONS(8771), 1, anon_sym_POUND_SQUOTE, - ACTIONS(7074), 1, + ACTIONS(8773), 1, anon_sym_SQUOTE, - ACTIONS(7076), 1, + ACTIONS(8775), 1, anon_sym_COMMA_AT, - ACTIONS(7078), 1, + ACTIONS(8777), 1, anon_sym_POUND_PLUS, - ACTIONS(7080), 1, + ACTIONS(8779), 1, anon_sym_POUND_DASH, - ACTIONS(7082), 1, + ACTIONS(8781), 1, anon_sym_POUNDC, - ACTIONS(7084), 1, + ACTIONS(8783), 1, anon_sym_POUNDc, - STATE(1243), 1, + STATE(2126), 1, sym__bare_set_lit, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2177), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2406), 1, aux_sym_list_lit_repeat1, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(1076), 3, + STATE(2127), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [145206] = 3, + [153283] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5643), 3, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(8765), 1, anon_sym_POUND, - anon_sym_COLON, + ACTIONS(8767), 1, anon_sym_POUND_QMARK, - ACTIONS(5641), 18, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, + ACTIONS(8769), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(8781), 1, + anon_sym_POUNDC, + ACTIONS(8783), 1, + anon_sym_POUNDc, + ACTIONS(8785), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(8787), 1, + anon_sym_SQUOTE, + ACTIONS(8789), 1, + anon_sym_COMMA_AT, + ACTIONS(8791), 1, + anon_sym_POUND_PLUS, + ACTIONS(8793), 1, + anon_sym_POUND_DASH, + STATE(2126), 1, + sym__bare_set_lit, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2406), 1, + aux_sym_list_lit_repeat1, + STATE(2426), 1, + sym__metadata_lit, + STATE(2127), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [153346] = 20, + ACTIONS(25), 1, anon_sym_CARET, + ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8719), 1, + anon_sym_POUND, + ACTIONS(8721), 1, + anon_sym_POUND_QMARK, + ACTIONS(8723), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(8735), 1, + anon_sym_POUNDC, + ACTIONS(8737), 1, + anon_sym_POUNDc, + ACTIONS(8795), 1, anon_sym_POUND_SQUOTE, + ACTIONS(8797), 1, anon_sym_SQUOTE, + ACTIONS(8799), 1, anon_sym_COMMA_AT, + ACTIONS(8801), 1, anon_sym_POUND_PLUS, + ACTIONS(8803), 1, anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [145235] = 3, + STATE(1598), 1, + sym__bare_set_lit, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2406), 1, + aux_sym_list_lit_repeat1, + STATE(2426), 1, + sym__metadata_lit, + STATE(1645), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [153409] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5895), 3, + ACTIONS(6254), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5893), 18, + ACTIONS(6252), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -143838,186 +156159,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [145264] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + [153438] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2799), 1, - anon_sym_LPAREN, - ACTIONS(7086), 1, + ACTIONS(6150), 3, anon_sym_POUND, - ACTIONS(7088), 1, + anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7090), 1, + ACTIONS(6148), 18, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_POUND_QMARK_AT, - ACTIONS(7092), 1, anon_sym_POUND_SQUOTE, - ACTIONS(7094), 1, anon_sym_SQUOTE, - ACTIONS(7096), 1, anon_sym_COMMA_AT, - ACTIONS(7098), 1, anon_sym_POUND_PLUS, - ACTIONS(7100), 1, anon_sym_POUND_DASH, - ACTIONS(7102), 1, anon_sym_POUNDC, - ACTIONS(7104), 1, anon_sym_POUNDc, - STATE(985), 1, - sym__bare_set_lit, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2177), 1, - aux_sym_list_lit_repeat1, - STATE(2197), 1, - sym__metadata_lit, - STATE(986), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [145327] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + [153467] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(7106), 1, + ACTIONS(6405), 3, anon_sym_POUND, - ACTIONS(7108), 1, + anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7110), 1, + ACTIONS(6403), 18, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_POUND_QMARK_AT, - ACTIONS(7112), 1, anon_sym_POUND_SQUOTE, - ACTIONS(7114), 1, anon_sym_SQUOTE, - ACTIONS(7116), 1, anon_sym_COMMA_AT, - ACTIONS(7118), 1, anon_sym_POUND_PLUS, - ACTIONS(7120), 1, anon_sym_POUND_DASH, - ACTIONS(7122), 1, anon_sym_POUNDC, - ACTIONS(7124), 1, anon_sym_POUNDc, - STATE(1901), 1, - sym__bare_set_lit, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2177), 1, - aux_sym_list_lit_repeat1, - STATE(2197), 1, - sym__metadata_lit, - STATE(1900), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [145390] = 20, + [153496] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(7000), 1, + ACTIONS(8805), 1, anon_sym_POUND, - ACTIONS(7016), 1, - anon_sym_POUNDC, - ACTIONS(7018), 1, - anon_sym_POUNDc, - ACTIONS(7126), 1, + ACTIONS(8807), 1, anon_sym_POUND_QMARK, - ACTIONS(7128), 1, + ACTIONS(8809), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(7130), 1, + ACTIONS(8811), 1, anon_sym_POUND_SQUOTE, - ACTIONS(7132), 1, + ACTIONS(8813), 1, anon_sym_SQUOTE, - ACTIONS(7134), 1, + ACTIONS(8815), 1, anon_sym_COMMA_AT, - ACTIONS(7136), 1, + ACTIONS(8817), 1, anon_sym_POUND_PLUS, - ACTIONS(7138), 1, + ACTIONS(8819), 1, anon_sym_POUND_DASH, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + ACTIONS(8821), 1, + anon_sym_POUNDC, + ACTIONS(8823), 1, + anon_sym_POUNDc, + STATE(1203), 1, + sym__bare_set_lit, + STATE(2384), 1, sym_old_meta_lit, - STATE(2177), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2406), 1, aux_sym_list_lit_repeat1, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2287), 1, - sym__bare_set_lit, - STATE(2295), 3, + STATE(1204), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [145453] = 20, + [153559] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3758), 1, anon_sym_LPAREN, - ACTIONS(7106), 1, + ACTIONS(8825), 1, anon_sym_POUND, - ACTIONS(7108), 1, + ACTIONS(8827), 1, anon_sym_POUND_QMARK, - ACTIONS(7110), 1, + ACTIONS(8829), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(7122), 1, - anon_sym_POUNDC, - ACTIONS(7124), 1, - anon_sym_POUNDc, - ACTIONS(7140), 1, + ACTIONS(8831), 1, anon_sym_POUND_SQUOTE, - ACTIONS(7142), 1, + ACTIONS(8833), 1, anon_sym_SQUOTE, - ACTIONS(7144), 1, + ACTIONS(8835), 1, anon_sym_COMMA_AT, - ACTIONS(7146), 1, + ACTIONS(8837), 1, anon_sym_POUND_PLUS, - ACTIONS(7148), 1, + ACTIONS(8839), 1, anon_sym_POUND_DASH, - STATE(1901), 1, + ACTIONS(8841), 1, + anon_sym_POUNDC, + ACTIONS(8843), 1, + anon_sym_POUNDc, + STATE(863), 1, sym__bare_set_lit, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2177), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2406), 1, aux_sym_list_lit_repeat1, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(1900), 3, + STATE(862), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [145516] = 3, + [153622] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5639), 3, + ACTIONS(6456), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5637), 18, + ACTIONS(6454), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -144036,57 +156323,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [145545] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(7150), 1, - anon_sym_POUND, - ACTIONS(7152), 1, - anon_sym_POUND_QMARK, - ACTIONS(7154), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(7156), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(7158), 1, - anon_sym_SQUOTE, - ACTIONS(7160), 1, - anon_sym_COMMA_AT, - ACTIONS(7162), 1, - anon_sym_POUND_PLUS, - ACTIONS(7164), 1, - anon_sym_POUND_DASH, - ACTIONS(7166), 1, - anon_sym_POUNDC, - ACTIONS(7168), 1, - anon_sym_POUNDc, - STATE(1412), 1, - sym__bare_set_lit, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2177), 1, - aux_sym_list_lit_repeat1, - STATE(2197), 1, - sym__metadata_lit, - STATE(1411), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [145608] = 3, + [153651] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5871), 3, + ACTIONS(6432), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5869), 18, + ACTIONS(6430), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -144105,14 +156349,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [145637] = 3, + [153680] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5867), 3, + ACTIONS(6162), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5865), 18, + ACTIONS(6160), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -144131,100 +156375,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [145666] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + [153709] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2339), 1, - anon_sym_LPAREN, - ACTIONS(7170), 1, + ACTIONS(6178), 3, anon_sym_POUND, - ACTIONS(7172), 1, + anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7174), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(7176), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(7178), 1, - anon_sym_SQUOTE, - ACTIONS(7180), 1, - anon_sym_COMMA_AT, - ACTIONS(7182), 1, - anon_sym_POUND_PLUS, - ACTIONS(7184), 1, - anon_sym_POUND_DASH, - ACTIONS(7186), 1, - anon_sym_POUNDC, - ACTIONS(7188), 1, - anon_sym_POUNDc, - STATE(1720), 1, - sym__bare_set_lit, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2177), 1, - aux_sym_list_lit_repeat1, - STATE(2197), 1, - sym__metadata_lit, - STATE(1719), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [145729] = 20, - ACTIONS(25), 1, + ACTIONS(6176), 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(3375), 1, anon_sym_LPAREN, - ACTIONS(7190), 1, - anon_sym_POUND, - ACTIONS(7192), 1, - anon_sym_POUND_QMARK, - ACTIONS(7194), 1, + anon_sym_LBRACE, anon_sym_POUND_QMARK_AT, - ACTIONS(7196), 1, anon_sym_POUND_SQUOTE, - ACTIONS(7198), 1, anon_sym_SQUOTE, - ACTIONS(7200), 1, anon_sym_COMMA_AT, - ACTIONS(7202), 1, anon_sym_POUND_PLUS, - ACTIONS(7204), 1, anon_sym_POUND_DASH, - ACTIONS(7206), 1, anon_sym_POUNDC, - ACTIONS(7208), 1, anon_sym_POUNDc, - STATE(1268), 1, - sym__bare_set_lit, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, - sym_old_meta_lit, - STATE(2177), 1, - aux_sym_list_lit_repeat1, - STATE(2197), 1, - sym__metadata_lit, - STATE(1267), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [145792] = 3, + [153738] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5847), 3, + ACTIONS(6428), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5845), 18, + ACTIONS(6426), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -144243,14 +156427,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [145821] = 3, + [153767] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5843), 3, + ACTIONS(6162), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5841), 18, + ACTIONS(6160), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -144269,14 +156453,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [145850] = 3, + [153796] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5839), 3, + ACTIONS(6202), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5837), 18, + ACTIONS(6200), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -144295,14 +156479,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [145879] = 3, + [153825] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5815), 3, + ACTIONS(6206), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5813), 18, + ACTIONS(6204), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -144321,14 +156505,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [145908] = 3, + [153854] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5803), 3, + ACTIONS(6210), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5801), 18, + ACTIONS(6208), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -144347,40 +156531,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [145937] = 3, + [153883] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5799), 3, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(8845), 1, anon_sym_POUND, - anon_sym_COLON, + ACTIONS(8847), 1, anon_sym_POUND_QMARK, - ACTIONS(5797), 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(8849), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(8851), 1, anon_sym_POUND_SQUOTE, + ACTIONS(8853), 1, anon_sym_SQUOTE, + ACTIONS(8855), 1, anon_sym_COMMA_AT, + ACTIONS(8857), 1, anon_sym_POUND_PLUS, + ACTIONS(8859), 1, anon_sym_POUND_DASH, + ACTIONS(8861), 1, anon_sym_POUNDC, + ACTIONS(8863), 1, anon_sym_POUNDc, - [145966] = 3, + STATE(1513), 1, + sym__bare_set_lit, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2406), 1, + aux_sym_list_lit_repeat1, + STATE(2426), 1, + sym__metadata_lit, + STATE(1514), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [153946] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5795), 3, + ACTIONS(6214), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5793), 18, + ACTIONS(6212), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -144399,81 +156600,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [145995] = 20, + [153975] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3153), 1, + ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(7002), 1, - anon_sym_POUND_QMARK, - ACTIONS(7170), 1, + ACTIONS(8865), 1, anon_sym_POUND, - ACTIONS(7186), 1, - anon_sym_POUNDC, - ACTIONS(7188), 1, - anon_sym_POUNDc, - ACTIONS(7210), 1, + ACTIONS(8867), 1, + anon_sym_POUND_QMARK, + ACTIONS(8869), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(7212), 1, + ACTIONS(8871), 1, anon_sym_POUND_SQUOTE, - ACTIONS(7214), 1, + ACTIONS(8873), 1, anon_sym_SQUOTE, - ACTIONS(7216), 1, + ACTIONS(8875), 1, anon_sym_COMMA_AT, - ACTIONS(7218), 1, + ACTIONS(8877), 1, anon_sym_POUND_PLUS, - ACTIONS(7220), 1, + ACTIONS(8879), 1, anon_sym_POUND_DASH, - STATE(1720), 1, + ACTIONS(8881), 1, + anon_sym_POUNDC, + ACTIONS(8883), 1, + anon_sym_POUNDc, + STATE(1027), 1, sym__bare_set_lit, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2177), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2406), 1, aux_sym_list_lit_repeat1, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(1719), 3, + STATE(1026), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [146058] = 3, + [154038] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5625), 3, + ACTIONS(3588), 1, + anon_sym_LPAREN, + ACTIONS(8885), 1, anon_sym_POUND, - anon_sym_COLON, + ACTIONS(8887), 1, anon_sym_POUND_QMARK, - ACTIONS(5623), 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(8889), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(8891), 1, anon_sym_POUND_SQUOTE, + ACTIONS(8893), 1, anon_sym_SQUOTE, + ACTIONS(8895), 1, anon_sym_COMMA_AT, + ACTIONS(8897), 1, anon_sym_POUND_PLUS, + ACTIONS(8899), 1, anon_sym_POUND_DASH, + ACTIONS(8901), 1, anon_sym_POUNDC, + ACTIONS(8903), 1, anon_sym_POUNDc, - [146087] = 3, + STATE(1354), 1, + sym__bare_set_lit, + STATE(2384), 1, + sym_old_meta_lit, + STATE(2386), 1, + sym_meta_lit, + STATE(2406), 1, + aux_sym_list_lit_repeat1, + STATE(2426), 1, + sym__metadata_lit, + STATE(1355), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [154101] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5727), 1, + ACTIONS(6210), 1, anon_sym_being, - ACTIONS(5725), 19, + ACTIONS(6208), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -144493,12 +156711,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146115] = 3, + [154129] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5601), 1, + ACTIONS(6358), 1, anon_sym_being, - ACTIONS(5599), 19, + ACTIONS(6356), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -144518,12 +156736,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146143] = 3, + [154157] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5719), 1, + ACTIONS(6350), 1, anon_sym_being, - ACTIONS(5717), 19, + ACTIONS(6348), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -144543,12 +156761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146171] = 3, + [154185] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5715), 1, + ACTIONS(6254), 1, anon_sym_being, - ACTIONS(5713), 19, + ACTIONS(6252), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -144568,12 +156786,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146199] = 3, + [154213] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5695), 1, + ACTIONS(6274), 1, anon_sym_being, - ACTIONS(5693), 19, + ACTIONS(6272), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -144593,12 +156811,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146227] = 3, + [154241] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5651), 1, + ACTIONS(6322), 1, anon_sym_being, - ACTIONS(5649), 19, + ACTIONS(6320), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -144618,12 +156836,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146255] = 3, + [154269] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5815), 1, + ACTIONS(6278), 1, anon_sym_being, - ACTIONS(5813), 19, + ACTIONS(6276), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -144643,12 +156861,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146283] = 3, + [154297] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5791), 1, + ACTIONS(6374), 1, anon_sym_being, - ACTIONS(5789), 19, + ACTIONS(6372), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -144668,12 +156886,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146311] = 3, + [154325] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5763), 1, + ACTIONS(6214), 1, anon_sym_being, - ACTIONS(5761), 19, + ACTIONS(6212), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -144693,12 +156911,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146339] = 3, + [154353] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5795), 1, + ACTIONS(6270), 1, anon_sym_being, - ACTIONS(5793), 19, + ACTIONS(6268), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -144718,12 +156936,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146367] = 3, + [154381] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5711), 1, + ACTIONS(6206), 1, anon_sym_being, - ACTIONS(5709), 19, + ACTIONS(6204), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -144743,12 +156961,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146395] = 3, + [154409] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5655), 1, + ACTIONS(6202), 1, anon_sym_being, - ACTIONS(5653), 19, + ACTIONS(6200), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -144768,12 +156986,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146423] = 3, + [154437] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5799), 1, + ACTIONS(6198), 1, anon_sym_being, - ACTIONS(5797), 19, + ACTIONS(6196), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -144793,12 +157011,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146451] = 3, + [154465] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5803), 1, + ACTIONS(6354), 1, anon_sym_being, - ACTIONS(5801), 19, + ACTIONS(6352), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -144818,12 +157036,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146479] = 3, + [154493] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5723), 1, + ACTIONS(6456), 1, anon_sym_being, - ACTIONS(5721), 19, + ACTIONS(6454), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -144843,12 +157061,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146507] = 3, + [154521] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5647), 1, + ACTIONS(6432), 1, anon_sym_being, - ACTIONS(5645), 19, + ACTIONS(6430), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -144868,12 +157086,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146535] = 3, + [154549] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5839), 1, + ACTIONS(6178), 1, anon_sym_being, - ACTIONS(5837), 19, + ACTIONS(6176), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -144893,12 +157111,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146563] = 3, + [154577] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5843), 1, + ACTIONS(6428), 1, anon_sym_being, - ACTIONS(5841), 19, + ACTIONS(6426), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -144918,12 +157136,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146591] = 3, + [154605] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5847), 1, + ACTIONS(6162), 1, anon_sym_being, - ACTIONS(5845), 19, + ACTIONS(6160), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -144943,12 +157161,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146619] = 3, + [154633] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5643), 1, + ACTIONS(6162), 1, anon_sym_being, - ACTIONS(5641), 19, + ACTIONS(6160), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -144968,12 +157186,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146647] = 3, + [154661] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5639), 1, + ACTIONS(6405), 1, anon_sym_being, - ACTIONS(5637), 19, + ACTIONS(6403), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -144993,12 +157211,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146675] = 3, + [154689] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5847), 1, + ACTIONS(6401), 1, anon_sym_being, - ACTIONS(5845), 19, + ACTIONS(6399), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -145018,12 +157236,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146703] = 3, + [154717] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5867), 1, + ACTIONS(6362), 1, anon_sym_being, - ACTIONS(5865), 19, + ACTIONS(6360), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -145043,12 +157261,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146731] = 3, + [154745] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5871), 1, + ACTIONS(6282), 1, anon_sym_being, - ACTIONS(5869), 19, + ACTIONS(6280), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -145068,12 +157286,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146759] = 3, + [154773] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5895), 1, + ACTIONS(6286), 1, anon_sym_being, - ACTIONS(5893), 19, + ACTIONS(6284), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -145093,35 +157311,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [146787] = 15, + [154801] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6938), 1, + ACTIONS(8621), 1, anon_sym_COMMA, - ACTIONS(7224), 1, + ACTIONS(8907), 1, anon_sym_POUND_, - STATE(1780), 1, + STATE(1735), 1, + sym_list_lit, + STATE(1736), 1, sym_unquoting_lit, - STATE(1783), 1, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8905), 2, + sym__ws, + sym_comment, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2381), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [154852] = 15, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(8621), 1, + anon_sym_COMMA, + ACTIONS(8907), 1, + anon_sym_POUND_, + STATE(1726), 1, sym_list_lit, - STATE(2197), 1, + STATE(1727), 1, + sym_unquoting_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, sym_old_meta_lit, - STATE(2281), 1, + STATE(2591), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8909), 2, + sym__ws, + sym_comment, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2594), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [154903] = 15, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(8621), 1, + anon_sym_COMMA, + ACTIONS(8907), 1, + anon_sym_POUND_, + STATE(1728), 1, + sym_list_lit, + STATE(1732), 1, + sym_unquoting_lit, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, sym_meta_lit, - STATE(2362), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, aux_sym_list_lit_repeat1, - ACTIONS(7222), 2, + ACTIONS(8909), 2, sym__ws, sym_comment, - STATE(1617), 3, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2594), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [154954] = 15, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(8621), 1, + anon_sym_COMMA, + ACTIONS(8907), 1, + anon_sym_POUND_, + STATE(1733), 1, + sym_list_lit, + STATE(1734), 1, + sym_unquoting_lit, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8911), 2, + sym__ws, + sym_comment, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -145129,179 +157455,224 @@ static const uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [146838] = 11, + [155005] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7226), 1, + ACTIONS(8913), 1, aux_sym_accumulation_verb_token1, - ACTIONS(7230), 1, + ACTIONS(8917), 1, anon_sym_and, - ACTIONS(7232), 1, + ACTIONS(8919), 1, anon_sym_with, - ACTIONS(7234), 1, + ACTIONS(8921), 1, anon_sym_do, - ACTIONS(7238), 1, + ACTIONS(8925), 1, anon_sym_repeat, - ACTIONS(7242), 1, + ACTIONS(8929), 1, anon_sym_else, - ACTIONS(7228), 2, + ACTIONS(8915), 2, anon_sym_for, anon_sym_as, - ACTIONS(7236), 2, + ACTIONS(8923), 2, anon_sym_while, anon_sym_until, - ACTIONS(7244), 3, + ACTIONS(8931), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - ACTIONS(7240), 6, + ACTIONS(8927), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - [146881] = 6, + [155048] = 15, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7248), 1, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(8621), 1, + anon_sym_COMMA, + ACTIONS(8907), 1, anon_sym_POUND_, - ACTIONS(7246), 2, + STATE(1752), 1, + sym_unquoting_lit, + STATE(1753), 1, + sym_list_lit, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8909), 2, sym__ws, sym_comment, - ACTIONS(7250), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - STATE(2151), 3, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2594), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(7252), 11, - anon_sym_CARET, - anon_sym_POUND_CARET, + [155099] = 14, + ACTIONS(29), 1, anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [146914] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7248), 1, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(8621), 1, + anon_sym_COMMA, + ACTIONS(8907), 1, anon_sym_POUND_, - ACTIONS(7254), 2, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8933), 2, sym__ws, sym_comment, - ACTIONS(7256), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - STATE(2147), 3, + STATE(1855), 2, + sym_list_lit, + sym_unquoting_lit, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2388), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(7258), 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, - [146947] = 14, + [155148] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6938), 1, + ACTIONS(8621), 1, anon_sym_COMMA, - ACTIONS(7224), 1, + ACTIONS(8907), 1, anon_sym_POUND_, - STATE(2197), 1, + STATE(1750), 1, + sym_unquoting_lit, + STATE(1751), 1, + sym_list_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2362), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, aux_sym_list_lit_repeat1, - ACTIONS(7260), 2, + ACTIONS(8909), 2, sym__ws, sym_comment, - STATE(1668), 2, - sym_list_lit, - sym_unquoting_lit, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2154), 3, + STATE(2594), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [155199] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8938), 1, + anon_sym_POUND_, + ACTIONS(6100), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(8935), 2, + sym__ws, + sym_comment, + STATE(2382), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [146996] = 15, + ACTIONS(6102), 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, + [155232] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6938), 1, + ACTIONS(8621), 1, anon_sym_COMMA, - ACTIONS(7224), 1, + ACTIONS(8907), 1, anon_sym_POUND_, - STATE(1747), 1, + STATE(1782), 1, sym_list_lit, - STATE(1749), 1, + STATE(1795), 1, sym_unquoting_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2362), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, aux_sym_list_lit_repeat1, - ACTIONS(7222), 2, + ACTIONS(8941), 2, sym__ws, sym_comment, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2379), 3, + STATE(2397), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [147047] = 6, + [155283] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7265), 1, + ACTIONS(8945), 1, anon_sym_POUND_, - ACTIONS(131), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(7262), 2, + ACTIONS(8943), 2, sym__ws, sym_comment, - STATE(2151), 3, + ACTIONS(8947), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(2392), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(5545), 11, + ACTIONS(8949), 11, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -145313,22 +157684,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [147080] = 6, + [155316] = 15, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7248), 1, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(8621), 1, + anon_sym_COMMA, + ACTIONS(8907), 1, anon_sym_POUND_, - ACTIONS(7268), 2, + STATE(1857), 1, + sym_list_lit, + STATE(1858), 1, + sym_unquoting_lit, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8909), 2, + sym__ws, + sym_comment, + STATE(1632), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2594), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [155367] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8945), 1, + anon_sym_POUND_, + ACTIONS(8951), 2, sym__ws, sym_comment, - ACTIONS(7270), 2, + ACTIONS(8953), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - STATE(2158), 3, + STATE(2391), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(7272), 11, + ACTIONS(8955), 11, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -145340,201 +157747,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [147113] = 15, + [155400] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6938), 1, + ACTIONS(8621), 1, anon_sym_COMMA, - ACTIONS(7224), 1, + ACTIONS(8907), 1, anon_sym_POUND_, - STATE(1756), 1, - sym_unquoting_lit, - STATE(1784), 1, + STATE(1780), 1, sym_list_lit, - STATE(2197), 1, + STATE(1781), 1, + sym_unquoting_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2362), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, aux_sym_list_lit_repeat1, - ACTIONS(7222), 2, + ACTIONS(8957), 2, sym__ws, sym_comment, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2379), 3, + STATE(2385), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [147164] = 14, + [155451] = 14, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6938), 1, + ACTIONS(8621), 1, anon_sym_COMMA, - ACTIONS(7224), 1, + ACTIONS(8907), 1, anon_sym_POUND_, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2362), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, aux_sym_list_lit_repeat1, - ACTIONS(7222), 2, + ACTIONS(8909), 2, sym__ws, sym_comment, - STATE(1678), 2, + STATE(1847), 2, sym_list_lit, sym_unquoting_lit, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2379), 3, + STATE(2594), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [147213] = 15, + [155500] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6938), 1, + ACTIONS(8621), 1, anon_sym_COMMA, - ACTIONS(7224), 1, + ACTIONS(8907), 1, anon_sym_POUND_, - STATE(1727), 1, + STATE(1724), 1, sym_list_lit, - STATE(1728), 1, + STATE(1725), 1, sym_unquoting_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2362), 1, - aux_sym_list_lit_repeat1, - ACTIONS(7274), 2, - sym__ws, - sym_comment, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2156), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [147264] = 15, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6938), 1, - anon_sym_COMMA, - ACTIONS(7224), 1, - anon_sym_POUND_, - STATE(1750), 1, - sym_list_lit, - STATE(1751), 1, - sym_unquoting_lit, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, + STATE(2515), 1, sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2362), 1, + STATE(2591), 1, aux_sym_list_lit_repeat1, - ACTIONS(7222), 2, + ACTIONS(8909), 2, sym__ws, sym_comment, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2379), 3, + STATE(2594), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [147315] = 15, + [155551] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6938), 1, + ACTIONS(8621), 1, anon_sym_COMMA, - ACTIONS(7224), 1, + ACTIONS(8907), 1, anon_sym_POUND_, - STATE(1774), 1, + STATE(1721), 1, sym_unquoting_lit, - STATE(1775), 1, + STATE(1813), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2362), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, aux_sym_list_lit_repeat1, - ACTIONS(7222), 2, + ACTIONS(8909), 2, sym__ws, sym_comment, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2379), 3, + STATE(2594), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [147366] = 6, + [155602] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7248), 1, + ACTIONS(8945), 1, anon_sym_POUND_, - ACTIONS(7246), 2, + ACTIONS(8959), 2, sym__ws, sym_comment, - ACTIONS(7276), 2, + ACTIONS(8961), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - STATE(2151), 3, + STATE(2382), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(7278), 11, + ACTIONS(8963), 11, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -145546,377 +157917,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [147399] = 15, - ACTIONS(29), 1, - anon_sym_LPAREN, + [155635] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6938), 1, - anon_sym_COMMA, - ACTIONS(7224), 1, + ACTIONS(8945), 1, anon_sym_POUND_, - STATE(1694), 1, - sym_list_lit, - STATE(1713), 1, - sym_unquoting_lit, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2362), 1, - aux_sym_list_lit_repeat1, - ACTIONS(7280), 2, + ACTIONS(8959), 2, sym__ws, sym_comment, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2162), 3, + ACTIONS(8965), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(2382), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [147450] = 15, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(8967), 11, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - ACTIONS(6938), 1, - anon_sym_COMMA, - ACTIONS(7224), 1, - anon_sym_POUND_, - STATE(1697), 1, - sym_list_lit, - STATE(1698), 1, - sym_unquoting_lit, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2362), 1, - aux_sym_list_lit_repeat1, - ACTIONS(7282), 2, - sym__ws, - sym_comment, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2163), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [147501] = 15, - ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6938), 1, - anon_sym_COMMA, - ACTIONS(7224), 1, - anon_sym_POUND_, - STATE(1761), 1, - sym_list_lit, - STATE(1767), 1, - sym_unquoting_lit, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2362), 1, - aux_sym_list_lit_repeat1, - ACTIONS(7284), 2, - sym__ws, - sym_comment, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2157), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [147552] = 15, + 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, + [155668] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6938), 1, + ACTIONS(8621), 1, anon_sym_COMMA, - ACTIONS(7224), 1, + ACTIONS(8907), 1, anon_sym_POUND_, - STATE(1715), 1, - sym_list_lit, - STATE(1716), 1, + STATE(1837), 1, sym_unquoting_lit, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2362), 1, - aux_sym_list_lit_repeat1, - ACTIONS(7222), 2, - sym__ws, - sym_comment, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2379), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [147603] = 15, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6938), 1, - anon_sym_COMMA, - ACTIONS(7224), 1, - anon_sym_POUND_, - STATE(1717), 1, + STATE(1846), 1, sym_list_lit, - STATE(1718), 1, - sym_unquoting_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2362), 1, - aux_sym_list_lit_repeat1, - ACTIONS(7222), 2, - sym__ws, - sym_comment, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2379), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [147654] = 15, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6938), 1, - anon_sym_COMMA, - ACTIONS(7224), 1, - anon_sym_POUND_, - STATE(1731), 1, - sym_list_lit, - STATE(1733), 1, - sym_unquoting_lit, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, + STATE(2515), 1, sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2362), 1, + STATE(2591), 1, aux_sym_list_lit_repeat1, - ACTIONS(7286), 2, + ACTIONS(8969), 2, sym__ws, sym_comment, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2153), 3, + STATE(2376), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [147705] = 15, + [155719] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6938), 1, + ACTIONS(8621), 1, anon_sym_COMMA, - ACTIONS(7224), 1, + ACTIONS(8907), 1, anon_sym_POUND_, - STATE(1721), 1, - sym_list_lit, - STATE(1722), 1, + STATE(1848), 1, sym_unquoting_lit, - STATE(2197), 1, + STATE(1856), 1, + sym_list_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2362), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, aux_sym_list_lit_repeat1, - ACTIONS(7288), 2, + ACTIONS(8971), 2, sym__ws, sym_comment, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2150), 3, + STATE(2375), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [147756] = 15, + [155770] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6938), 1, + ACTIONS(8621), 1, anon_sym_COMMA, - ACTIONS(7224), 1, + ACTIONS(8907), 1, anon_sym_POUND_, - STATE(1754), 1, + STATE(1863), 1, sym_list_lit, - STATE(1755), 1, + STATE(1864), 1, sym_unquoting_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2362), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, aux_sym_list_lit_repeat1, - ACTIONS(7222), 2, + ACTIONS(8973), 2, sym__ws, sym_comment, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2379), 3, + STATE(2389), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [147807] = 15, + [155821] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6938), 1, + ACTIONS(8621), 1, anon_sym_COMMA, - ACTIONS(7224), 1, + ACTIONS(8907), 1, anon_sym_POUND_, - STATE(1729), 1, + STATE(1861), 1, sym_list_lit, - STATE(1730), 1, + STATE(1862), 1, sym_unquoting_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2362), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, aux_sym_list_lit_repeat1, - ACTIONS(7290), 2, + ACTIONS(8975), 2, sym__ws, sym_comment, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2166), 3, + STATE(2390), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [147858] = 15, + [155872] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6938), 1, + ACTIONS(8621), 1, anon_sym_COMMA, - ACTIONS(7224), 1, + ACTIONS(8907), 1, anon_sym_POUND_, - STATE(1757), 1, + STATE(1859), 1, sym_list_lit, - STATE(1760), 1, + STATE(1860), 1, sym_unquoting_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2362), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, aux_sym_list_lit_repeat1, - ACTIONS(7292), 2, + ACTIONS(8909), 2, sym__ws, sym_comment, - STATE(1617), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2145), 3, + STATE(2594), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [147909] = 5, + [155923] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7294), 1, + ACTIONS(8977), 1, anon_sym_COLON, - ACTIONS(7296), 1, + ACTIONS(8979), 1, anon_sym_COLON_COLON, - ACTIONS(5597), 2, + ACTIONS(6182), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5595), 14, + ACTIONS(6180), 14, sym__ws, sym_comment, anon_sym_POUND_, @@ -145931,17 +158149,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [147939] = 5, + [155953] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7294), 1, + ACTIONS(8977), 1, anon_sym_COLON, - ACTIONS(7296), 1, + ACTIONS(8979), 1, anon_sym_COLON_COLON, - ACTIONS(5613), 2, + ACTIONS(6166), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5611), 14, + ACTIONS(6164), 14, sym__ws, sym_comment, anon_sym_POUND_, @@ -145956,17 +158174,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [147969] = 5, + [155983] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7294), 1, + ACTIONS(8977), 1, anon_sym_COLON, - ACTIONS(7296), 1, + ACTIONS(8979), 1, anon_sym_COLON_COLON, - ACTIONS(5621), 2, + ACTIONS(6154), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5619), 14, + ACTIONS(6152), 14, sym__ws, sym_comment, anon_sym_POUND_, @@ -145981,16 +158199,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [147999] = 5, + [156013] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2337), 1, + ACTIONS(2926), 1, aux_sym_sym_lit_token1, - ACTIONS(7300), 1, + ACTIONS(8983), 1, aux_sym_for_clause_word_token1, - STATE(1738), 1, + STATE(1815), 1, sym_sym_lit, - ACTIONS(7298), 15, + ACTIONS(8981), 15, anon_sym_in, anon_sym_across, anon_sym_being, @@ -146006,13 +158224,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [148029] = 3, + [156043] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7304), 2, + ACTIONS(8987), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(7302), 15, + ACTIONS(8985), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -146028,20 +158246,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [148054] = 3, + [156068] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7308), 2, + ACTIONS(8989), 1, + aux_sym_num_lit_token2, + ACTIONS(6140), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(7306), 15, + ACTIONS(6138), 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, @@ -146050,13 +158269,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [148079] = 3, + [156095] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7312), 2, + ACTIONS(8993), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(7310), 15, + ACTIONS(8991), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -146072,13 +158291,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [148104] = 3, + [156120] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7316), 2, + ACTIONS(8997), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(7314), 15, + ACTIONS(8995), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -146094,25 +158313,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [148129] = 9, + [156145] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7320), 1, + ACTIONS(9001), 1, anon_sym_CARET, - ACTIONS(7323), 1, + ACTIONS(9004), 1, anon_sym_POUND_CARET, - STATE(2148), 1, - sym_meta_lit, - STATE(2152), 1, + STATE(2384), 1, sym_old_meta_lit, - STATE(2177), 1, + STATE(2386), 1, + sym_meta_lit, + STATE(2406), 1, aux_sym_list_lit_repeat1, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - ACTIONS(7318), 2, + ACTIONS(8999), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(7326), 9, + ACTIONS(9007), 9, anon_sym_LPAREN, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, @@ -146122,21 +158341,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [148166] = 4, + [156182] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7328), 1, - aux_sym_num_lit_token2, - ACTIONS(5583), 2, + ACTIONS(9011), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5581), 14, + ACTIONS(9009), 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, @@ -146145,13 +158363,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [148193] = 3, + [156207] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7332), 2, + ACTIONS(9015), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(7330), 15, + ACTIONS(9013), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -146167,13 +158385,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [148218] = 3, + [156232] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7336), 2, + ACTIONS(9019), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(7334), 15, + ACTIONS(9017), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -146189,13 +158407,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [148243] = 3, + [156257] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7340), 2, + ACTIONS(9023), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(7338), 15, + ACTIONS(9021), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -146211,13 +158429,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [148268] = 3, + [156282] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7344), 2, + ACTIONS(9027), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(7342), 15, + ACTIONS(9025), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -146233,12 +158451,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [148293] = 3, + [156307] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7298), 1, + ACTIONS(8981), 1, anon_sym_being, - ACTIONS(7300), 15, + ACTIONS(8983), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -146254,405 +158472,407 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [148317] = 14, + [156331] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4093), 1, + ACTIONS(3654), 1, anon_sym_LPAREN, - ACTIONS(5449), 1, + ACTIONS(6020), 1, aux_sym_char_lit_token1, - ACTIONS(5451), 1, + ACTIONS(6022), 1, anon_sym_LBRACE, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7346), 1, + ACTIONS(9029), 1, aux_sym__form_token1, - STATE(1414), 1, + STATE(1511), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2337), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2559), 1, sym_array_dimension, - STATE(2382), 1, + STATE(2622), 1, aux_sym_list_lit_repeat1, - STATE(1390), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [148362] = 14, + [156376] = 14, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(5477), 1, + ACTIONS(6068), 1, aux_sym_char_lit_token1, - ACTIONS(5479), 1, + ACTIONS(6070), 1, anon_sym_LBRACE, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7348), 1, + ACTIONS(9031), 1, aux_sym__form_token1, - STATE(2197), 1, - sym__metadata_lit, - STATE(2247), 1, + STATE(1602), 1, sym_list_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, sym_meta_lit, - STATE(2305), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2561), 1, sym_array_dimension, - STATE(2355), 1, + STATE(2591), 1, aux_sym_list_lit_repeat1, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [148407] = 14, + [156421] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(5489), 1, + ACTIONS(5980), 1, aux_sym_char_lit_token1, - ACTIONS(5491), 1, + ACTIONS(5982), 1, anon_sym_LBRACE, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7350), 1, + ACTIONS(9033), 1, aux_sym__form_token1, - STATE(1905), 1, - sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2437), 1, + sym_list_lit, + STATE(2448), 1, sym_meta_lit, - STATE(2316), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2542), 1, sym_array_dimension, - STATE(2394), 1, + STATE(2613), 1, aux_sym_list_lit_repeat1, - STATE(1852), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [148452] = 14, + [156466] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2339), 1, + ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(5437), 1, + ACTIONS(6008), 1, aux_sym_char_lit_token1, - ACTIONS(5439), 1, + ACTIONS(6010), 1, anon_sym_LBRACE, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7352), 1, + ACTIONS(9035), 1, aux_sym__form_token1, - STATE(1723), 1, + STATE(1029), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2348), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2534), 1, sym_array_dimension, - STATE(2358), 1, + STATE(2617), 1, aux_sym_list_lit_repeat1, - STATE(1688), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [148497] = 14, + [156511] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2799), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(5533), 1, + ACTIONS(5996), 1, aux_sym_char_lit_token1, - ACTIONS(5535), 1, + ACTIONS(5998), 1, anon_sym_LBRACE, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7354), 1, + ACTIONS(9037), 1, aux_sym__form_token1, - STATE(982), 1, + STATE(1825), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2310), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2555), 1, sym_array_dimension, - STATE(2384), 1, + STATE(2609), 1, aux_sym_list_lit_repeat1, - STATE(1024), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [148542] = 14, + [156556] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3375), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5461), 1, + ACTIONS(6056), 1, aux_sym_char_lit_token1, - ACTIONS(5463), 1, + ACTIONS(6058), 1, anon_sym_LBRACE, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7356), 1, + ACTIONS(9039), 1, aux_sym__form_token1, - STATE(1269), 1, + STATE(1200), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2349), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2568), 1, sym_array_dimension, - STATE(2370), 1, + STATE(2610), 1, aux_sym_list_lit_repeat1, - STATE(1361), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [148587] = 14, + [156601] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3153), 1, + ACTIONS(3758), 1, anon_sym_LPAREN, - ACTIONS(5437), 1, + ACTIONS(6032), 1, aux_sym_char_lit_token1, - ACTIONS(5439), 1, + ACTIONS(6034), 1, anon_sym_LBRACE, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7358), 1, + ACTIONS(9041), 1, aux_sym__form_token1, - STATE(1723), 1, + STATE(865), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2321), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2553), 1, sym_array_dimension, - STATE(2380), 1, + STATE(2603), 1, aux_sym_list_lit_repeat1, - STATE(1688), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [148632] = 14, + [156646] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3495), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(5477), 1, + ACTIONS(5980), 1, aux_sym_char_lit_token1, - ACTIONS(5479), 1, + ACTIONS(5982), 1, anon_sym_LBRACE, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7360), 1, + ACTIONS(9043), 1, aux_sym__form_token1, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2247), 1, + STATE(2437), 1, sym_list_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2342), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2582), 1, sym_array_dimension, - STATE(2364), 1, + STATE(2618), 1, aux_sym_list_lit_repeat1, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [148677] = 14, + [156691] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3127), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(5501), 1, + ACTIONS(6080), 1, aux_sym_char_lit_token1, - ACTIONS(5503), 1, + ACTIONS(6082), 1, anon_sym_LBRACE, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7362), 1, + ACTIONS(9045), 1, aux_sym__form_token1, - STATE(1220), 1, + STATE(2124), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2302), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2556), 1, sym_array_dimension, - STATE(2383), 1, + STATE(2600), 1, aux_sym_list_lit_repeat1, - STATE(1226), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [148722] = 14, - ACTIONS(29), 1, - anon_sym_LPAREN, + [156736] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5425), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(5980), 1, aux_sym_char_lit_token1, - ACTIONS(5427), 1, + ACTIONS(5982), 1, anon_sym_LBRACE, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7364), 1, + ACTIONS(9047), 1, aux_sym__form_token1, - STATE(1590), 1, - sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2437), 1, + sym_list_lit, + STATE(2448), 1, sym_meta_lit, - STATE(2326), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2551), 1, sym_array_dimension, - STATE(2362), 1, + STATE(2624), 1, aux_sym_list_lit_repeat1, - STATE(1617), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [148767] = 14, + [156781] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3207), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(5517), 1, + ACTIONS(6044), 1, aux_sym_char_lit_token1, - ACTIONS(5519), 1, + ACTIONS(6046), 1, anon_sym_LBRACE, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7366), 1, + ACTIONS(9049), 1, aux_sym__form_token1, - STATE(809), 1, + STATE(1353), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2332), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2572), 1, sym_array_dimension, - STATE(2386), 1, + STATE(2611), 1, aux_sym_list_lit_repeat1, - STATE(785), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [148812] = 14, + [156826] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(5477), 1, + ACTIONS(5996), 1, aux_sym_char_lit_token1, - ACTIONS(5479), 1, + ACTIONS(5998), 1, anon_sym_LBRACE, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7368), 1, + ACTIONS(9051), 1, aux_sym__form_token1, - STATE(2197), 1, - sym__metadata_lit, - STATE(2247), 1, + STATE(1825), 1, sym_list_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, sym_meta_lit, - STATE(2335), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2574), 1, sym_array_dimension, - STATE(2356), 1, + STATE(2627), 1, aux_sym_list_lit_repeat1, - STATE(2277), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [148857] = 4, + [156871] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7370), 1, - aux_sym_num_lit_token2, - ACTIONS(5583), 2, + ACTIONS(6100), 1, anon_sym_COLON, - aux_sym_sym_lit_token1, - ACTIONS(5581), 11, + ACTIONS(9056), 1, + anon_sym_POUND_, + ACTIONS(9053), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2425), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(6102), 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, - [148881] = 3, + [156899] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7372), 2, + ACTIONS(9059), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(7374), 12, + ACTIONS(9061), 12, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -146665,41 +158885,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [148903] = 6, + [156921] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(131), 1, + ACTIONS(9063), 1, + aux_sym_num_lit_token2, + ACTIONS(6140), 2, anon_sym_COLON, - ACTIONS(7379), 1, - anon_sym_POUND_, - ACTIONS(7376), 2, + aux_sym_sym_lit_token1, + ACTIONS(6138), 11, sym__ws, sym_comment, - STATE(2198), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(5545), 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, - [148931] = 5, + anon_sym_COMMA, + [156945] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7385), 1, + ACTIONS(9068), 1, anon_sym_POUND_, - ACTIONS(7382), 2, + ACTIONS(9065), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(5545), 8, + ACTIONS(6102), 8, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -146708,12 +158926,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_POUNDC, anon_sym_POUNDc, - [148957] = 3, + [156971] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5835), 1, + ACTIONS(6480), 1, anon_sym_COLON, - ACTIONS(5833), 12, + ACTIONS(6478), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -146726,32 +158944,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [148978] = 5, + [156992] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7394), 1, - anon_sym_STAR, - ACTIONS(7390), 2, + ACTIONS(6100), 1, anon_sym_COLON, - anon_sym_AT, - ACTIONS(7392), 4, - anon_sym_TILDE, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(7388), 6, - aux_sym_num_lit_token1, - anon_sym_SQUOTE, + ACTIONS(9074), 1, + anon_sym_POUND_, + ACTIONS(9071), 2, + sym__ws, + sym_comment, + STATE(2430), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(6102), 6, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - aux_sym_format_directive_type_token11, - [149003] = 3, + [157019] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5935), 1, + ACTIONS(6250), 1, anon_sym_COLON, - ACTIONS(5933), 12, + ACTIONS(6248), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -146764,12 +158983,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149024] = 3, + [157040] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5931), 1, + ACTIONS(6174), 1, anon_sym_COLON, - ACTIONS(5929), 12, + ACTIONS(6172), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -146782,12 +159001,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149045] = 3, + [157061] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5927), 1, + ACTIONS(6182), 1, anon_sym_COLON, - ACTIONS(5925), 12, + ACTIONS(6180), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -146800,12 +159019,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149066] = 3, + [157082] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5923), 1, + ACTIONS(6186), 1, + anon_sym_COLON, + ACTIONS(6184), 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, + [157103] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6190), 1, anon_sym_COLON, - ACTIONS(5921), 12, + ACTIONS(6188), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -146818,12 +159055,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149087] = 3, + [157124] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5923), 1, + ACTIONS(6194), 1, anon_sym_COLON, - ACTIONS(5921), 12, + ACTIONS(6192), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -146836,12 +159073,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149108] = 3, + [157145] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5675), 1, + ACTIONS(6190), 1, anon_sym_COLON, - ACTIONS(5673), 12, + ACTIONS(6188), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -146854,12 +159091,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149129] = 3, + [157166] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(6190), 1, anon_sym_COLON, - ACTIONS(5917), 12, + ACTIONS(6188), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -146872,12 +159109,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149150] = 3, + [157187] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5915), 1, + ACTIONS(6258), 1, anon_sym_COLON, - ACTIONS(5913), 12, + ACTIONS(6256), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -146890,12 +159127,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149171] = 3, + [157208] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5923), 1, + ACTIONS(6262), 1, anon_sym_COLON, - ACTIONS(5921), 12, + ACTIONS(6260), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -146908,12 +159145,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149192] = 3, + [157229] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5923), 1, + ACTIONS(6218), 1, anon_sym_COLON, - ACTIONS(5921), 12, + ACTIONS(6216), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -146926,12 +159163,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149213] = 3, + [157250] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(6226), 1, anon_sym_COLON, - ACTIONS(5917), 12, + ACTIONS(6224), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -146944,12 +159181,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149234] = 3, + [157271] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5915), 1, + ACTIONS(6266), 1, anon_sym_COLON, - ACTIONS(5913), 12, + ACTIONS(6264), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -146962,12 +159199,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149255] = 3, + [157292] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5911), 1, + ACTIONS(6290), 1, anon_sym_COLON, - ACTIONS(5909), 12, + ACTIONS(6288), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -146980,12 +159217,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149276] = 3, + [157313] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5907), 1, + ACTIONS(6230), 1, anon_sym_COLON, - ACTIONS(5905), 12, + ACTIONS(6228), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -146998,12 +159235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149297] = 3, + [157334] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5903), 1, + ACTIONS(6294), 1, anon_sym_COLON, - ACTIONS(5901), 12, + ACTIONS(6292), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147016,12 +159253,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149318] = 3, + [157355] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5899), 1, + ACTIONS(6298), 1, anon_sym_COLON, - ACTIONS(5897), 12, + ACTIONS(6296), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147034,12 +159271,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149339] = 3, + [157376] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(9079), 1, + anon_sym_POUND_, + ACTIONS(9077), 2, + sym__ws, + sym_comment, + STATE(2520), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8955), 7, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + anon_sym_POUNDC, + anon_sym_POUNDc, + [157401] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5731), 1, + ACTIONS(6234), 1, anon_sym_COLON, - ACTIONS(5729), 12, + ACTIONS(6232), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147052,12 +159309,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149360] = 3, + [157422] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5593), 1, + ACTIONS(6302), 1, anon_sym_COLON, - ACTIONS(5591), 12, + ACTIONS(6300), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147070,12 +159327,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149381] = 3, + [157443] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5735), 1, + ACTIONS(6306), 1, anon_sym_COLON, - ACTIONS(5733), 12, + ACTIONS(6304), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147088,12 +159345,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149402] = 3, + [157464] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(6146), 1, anon_sym_COLON, - ACTIONS(5949), 12, + ACTIONS(6144), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147106,12 +159363,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149423] = 3, + [157485] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5739), 1, + ACTIONS(6500), 1, anon_sym_COLON, - ACTIONS(5737), 12, + ACTIONS(6498), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147124,12 +159381,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149444] = 3, + [157506] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(9087), 1, + anon_sym_STAR, + ACTIONS(9083), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(9085), 4, + anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(9081), 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, + [157531] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5743), 1, + ACTIONS(6310), 1, anon_sym_COLON, - ACTIONS(5741), 12, + ACTIONS(6308), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147142,12 +159419,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149465] = 3, + [157552] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5747), 1, + ACTIONS(6314), 1, anon_sym_COLON, - ACTIONS(5745), 12, + ACTIONS(6312), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147160,12 +159437,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149486] = 3, + [157573] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5751), 1, + ACTIONS(6318), 1, anon_sym_COLON, - ACTIONS(5749), 12, + ACTIONS(6316), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147178,12 +159455,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149507] = 3, + [157594] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5679), 1, + ACTIONS(6326), 1, anon_sym_COLON, - ACTIONS(5677), 12, + ACTIONS(6324), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147196,12 +159473,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149528] = 3, + [157615] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5955), 1, + ACTIONS(6330), 1, anon_sym_COLON, - ACTIONS(5953), 12, + ACTIONS(6328), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147214,12 +159491,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149549] = 3, + [157636] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5589), 1, + ACTIONS(6334), 1, anon_sym_COLON, - ACTIONS(5587), 12, + ACTIONS(6332), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147232,12 +159509,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149570] = 3, + [157657] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5589), 1, + ACTIONS(6338), 1, anon_sym_COLON, - ACTIONS(5587), 12, + ACTIONS(6336), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147250,12 +159527,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149591] = 3, + [157678] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5755), 1, + ACTIONS(6342), 1, anon_sym_COLON, - ACTIONS(5753), 12, + ACTIONS(6340), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147268,12 +159545,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149612] = 3, + [157699] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5959), 1, + ACTIONS(6222), 1, anon_sym_COLON, - ACTIONS(5957), 12, + ACTIONS(6220), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147286,12 +159563,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149633] = 3, + [157720] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5759), 1, + ACTIONS(6366), 1, anon_sym_COLON, - ACTIONS(5757), 12, + ACTIONS(6364), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147304,12 +159581,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149654] = 3, + [157741] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5767), 1, + ACTIONS(6370), 1, anon_sym_COLON, - ACTIONS(5765), 12, + ACTIONS(6368), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147322,12 +159599,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149675] = 3, + [157762] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5771), 1, + ACTIONS(6378), 1, anon_sym_COLON, - ACTIONS(5769), 12, + ACTIONS(6376), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147340,12 +159617,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149696] = 3, + [157783] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5947), 1, + ACTIONS(6146), 1, anon_sym_COLON, - ACTIONS(5945), 12, + ACTIONS(6144), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147358,12 +159635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149717] = 3, + [157804] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5775), 1, + ACTIONS(6382), 1, anon_sym_COLON, - ACTIONS(5773), 12, + ACTIONS(6380), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147376,12 +159653,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149738] = 3, + [157825] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(6386), 1, anon_sym_COLON, - ACTIONS(5961), 12, + ACTIONS(6384), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147394,30 +159671,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149759] = 3, + [157846] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7398), 2, + ACTIONS(6390), 1, anon_sym_COLON, - anon_sym_AT, - ACTIONS(7396), 11, - aux_sym_num_lit_token1, - anon_sym_TILDE, - anon_sym_SQUOTE, + ACTIONS(6388), 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, - 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, - [149780] = 3, + [157867] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5589), 1, + ACTIONS(6394), 1, anon_sym_COLON, - ACTIONS(5587), 12, + ACTIONS(6392), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147430,12 +159707,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149801] = 3, + [157888] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5939), 1, + ACTIONS(6238), 1, anon_sym_COLON, - ACTIONS(5937), 12, + ACTIONS(6236), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147448,12 +159725,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149822] = 3, + [157909] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5943), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(5941), 12, + ACTIONS(6526), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147466,12 +159743,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149843] = 3, + [157930] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5779), 1, + ACTIONS(6394), 1, anon_sym_COLON, - ACTIONS(5777), 12, + ACTIONS(6392), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147484,12 +159761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149864] = 3, + [157951] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(6412), 1, anon_sym_COLON, - ACTIONS(5949), 12, + ACTIONS(6410), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147502,12 +159779,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149885] = 3, + [157972] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5827), 1, + ACTIONS(6416), 1, anon_sym_COLON, - ACTIONS(5825), 12, + ACTIONS(6414), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147520,12 +159797,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149906] = 3, + [157993] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5959), 1, + ACTIONS(6420), 1, anon_sym_COLON, - ACTIONS(5957), 12, + ACTIONS(6418), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147538,12 +159815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149927] = 3, + [158014] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5943), 1, + ACTIONS(6424), 1, anon_sym_COLON, - ACTIONS(5941), 12, + ACTIONS(6422), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147556,12 +159833,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149948] = 3, + [158035] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5631), 1, + ACTIONS(6420), 1, anon_sym_COLON, - ACTIONS(5629), 12, + ACTIONS(6418), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147574,12 +159851,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149969] = 3, + [158056] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5783), 1, + ACTIONS(6524), 1, anon_sym_COLON, - ACTIONS(5781), 12, + ACTIONS(6522), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147592,12 +159869,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [149990] = 3, + [158077] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5683), 1, + ACTIONS(6520), 1, anon_sym_COLON, - ACTIONS(5681), 12, + ACTIONS(6518), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147610,12 +159887,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150011] = 3, + [158098] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5699), 1, + ACTIONS(6424), 1, anon_sym_COLON, - ACTIONS(5697), 12, + ACTIONS(6422), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147628,12 +159905,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150032] = 3, + [158119] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5939), 1, + ACTIONS(6436), 1, anon_sym_COLON, - ACTIONS(5937), 12, + ACTIONS(6434), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147646,12 +159923,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150053] = 3, + [158140] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(6440), 1, anon_sym_COLON, - ACTIONS(5961), 12, + ACTIONS(6438), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147664,12 +159941,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150074] = 3, + [158161] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5787), 1, + ACTIONS(6444), 1, anon_sym_COLON, - ACTIONS(5785), 12, + ACTIONS(6442), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147682,32 +159959,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150095] = 5, + [158182] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, - anon_sym_POUND_, - ACTIONS(7400), 2, + ACTIONS(6448), 1, + anon_sym_COLON, + ACTIONS(6446), 12, sym__ws, sym_comment, - STATE(2199), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(7278), 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, - [150120] = 3, + anon_sym_COMMA, + [158203] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5671), 1, + ACTIONS(6448), 1, anon_sym_COLON, - ACTIONS(5669), 12, + ACTIONS(6446), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147720,12 +159995,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150141] = 3, + [158224] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5659), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(5657), 12, + ACTIONS(6450), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147738,12 +160013,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150162] = 3, + [158245] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5667), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(5665), 12, + ACTIONS(6450), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147756,12 +160031,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150183] = 3, + [158266] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5663), 1, + ACTIONS(6460), 1, anon_sym_COLON, - ACTIONS(5661), 12, + ACTIONS(6458), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147774,12 +160049,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150204] = 3, + [158287] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5891), 1, + ACTIONS(6464), 1, anon_sym_COLON, - ACTIONS(5889), 12, + ACTIONS(6462), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147792,12 +160067,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150225] = 3, + [158308] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5891), 1, + ACTIONS(6468), 1, anon_sym_COLON, - ACTIONS(5889), 12, + ACTIONS(6466), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147810,12 +160085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150246] = 3, + [158329] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5631), 1, + ACTIONS(6520), 1, anon_sym_COLON, - ACTIONS(5629), 12, + ACTIONS(6518), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147828,13 +160103,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150267] = 3, + [158350] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7406), 2, + ACTIONS(9091), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(7404), 11, + ACTIONS(9089), 11, aux_sym_num_lit_token1, anon_sym_TILDE, anon_sym_SQUOTE, @@ -147846,51 +160121,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_STAR, aux_sym_format_directive_type_token11, - [150288] = 3, + [158371] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5887), 1, + ACTIONS(9095), 2, anon_sym_COLON, - ACTIONS(5885), 12, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, + anon_sym_AT, + ACTIONS(9093), 11, + aux_sym_num_lit_token1, + anon_sym_TILDE, + anon_sym_SQUOTE, anon_sym_COMMA, - [150309] = 6, + 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, + [158392] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(131), 1, + ACTIONS(6472), 1, anon_sym_COLON, - ACTIONS(7411), 1, - anon_sym_POUND_, - ACTIONS(7408), 2, + ACTIONS(6470), 12, sym__ws, sym_comment, - STATE(2264), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(5545), 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, - [150336] = 3, + [158413] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5635), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(5633), 12, + ACTIONS(6526), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147903,12 +160175,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150357] = 3, + [158434] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5631), 1, + ACTIONS(6476), 1, anon_sym_COLON, - ACTIONS(5629), 12, + ACTIONS(6474), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147921,12 +160193,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150378] = 3, + [158455] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5887), 1, + ACTIONS(6480), 1, anon_sym_COLON, - ACTIONS(5885), 12, + ACTIONS(6478), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147939,12 +160211,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150399] = 3, + [158476] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5593), 1, + ACTIONS(6484), 1, anon_sym_COLON, - ACTIONS(5591), 12, + ACTIONS(6482), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147957,12 +160229,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150420] = 3, + [158497] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5947), 1, + ACTIONS(6484), 1, anon_sym_COLON, - ACTIONS(5945), 12, + ACTIONS(6482), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147975,12 +160247,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150441] = 3, + [158518] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5947), 1, + ACTIONS(6476), 1, anon_sym_COLON, - ACTIONS(5945), 12, + ACTIONS(6474), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -147993,12 +160265,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150462] = 3, + [158539] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5883), 1, + ACTIONS(6524), 1, anon_sym_COLON, - ACTIONS(5881), 12, + ACTIONS(6522), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148011,12 +160283,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150483] = 3, + [158560] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5967), 1, + ACTIONS(6484), 1, anon_sym_COLON, - ACTIONS(5965), 12, + ACTIONS(6482), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148029,12 +160301,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150504] = 3, + [158581] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5879), 1, + ACTIONS(6484), 1, anon_sym_COLON, - ACTIONS(5877), 12, + ACTIONS(6482), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148047,12 +160319,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150525] = 3, + [158602] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5597), 1, + ACTIONS(6520), 1, anon_sym_COLON, - ACTIONS(5595), 12, + ACTIONS(6518), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148065,12 +160337,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150546] = 3, + [158623] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5875), 1, + ACTIONS(6520), 1, anon_sym_COLON, - ACTIONS(5873), 12, + ACTIONS(6518), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148083,12 +160355,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150567] = 3, + [158644] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5605), 1, + ACTIONS(6488), 1, anon_sym_COLON, - ACTIONS(5603), 12, + ACTIONS(6486), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148101,12 +160373,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150588] = 3, + [158665] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5609), 1, + ACTIONS(6516), 1, anon_sym_COLON, - ACTIONS(5607), 12, + ACTIONS(6514), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148119,12 +160391,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150609] = 3, + [158686] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5707), 1, + ACTIONS(6512), 1, anon_sym_COLON, - ACTIONS(5705), 12, + ACTIONS(6510), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148137,32 +160409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150630] = 5, + [158707] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, - anon_sym_POUND_, - ACTIONS(7414), 2, - sym__ws, - sym_comment, - STATE(2254), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(7272), 7, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - anon_sym_POUNDC, - anon_sym_POUNDc, - [150655] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5863), 1, + ACTIONS(6508), 1, anon_sym_COLON, - ACTIONS(5861), 12, + ACTIONS(6506), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148175,32 +160427,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150676] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7402), 1, - anon_sym_POUND_, - ACTIONS(7416), 2, - sym__ws, - sym_comment, - STATE(2300), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(7258), 7, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - anon_sym_POUNDC, - anon_sym_POUNDc, - [150701] = 3, + [158728] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5589), 1, + ACTIONS(6242), 1, anon_sym_COLON, - ACTIONS(5587), 12, + ACTIONS(6240), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148213,12 +160445,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150722] = 3, + [158749] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5947), 1, + ACTIONS(6504), 1, anon_sym_COLON, - ACTIONS(5945), 12, + ACTIONS(6502), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148231,12 +160463,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150743] = 3, + [158770] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5859), 1, + ACTIONS(6508), 1, anon_sym_COLON, - ACTIONS(5857), 12, + ACTIONS(6506), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148249,30 +160481,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150764] = 3, + [158791] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5863), 1, - anon_sym_COLON, - ACTIONS(5861), 12, + ACTIONS(9079), 1, + anon_sym_POUND_, + ACTIONS(9097), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, + STATE(2521), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8949), 7, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - anon_sym_COMMA, - [150785] = 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + [158816] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5943), 1, + ACTIONS(6504), 1, anon_sym_COLON, - ACTIONS(5941), 12, + ACTIONS(6502), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148285,12 +160519,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150806] = 3, + [158837] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5691), 1, + ACTIONS(6492), 1, anon_sym_COLON, - ACTIONS(5689), 12, + ACTIONS(6490), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148303,12 +160537,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150827] = 3, + [158858] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5859), 1, + ACTIONS(6346), 1, anon_sym_COLON, - ACTIONS(5857), 12, + ACTIONS(6344), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148321,12 +160555,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150848] = 3, + [158879] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5855), 1, + ACTIONS(6500), 1, anon_sym_COLON, - ACTIONS(5853), 12, + ACTIONS(6498), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148339,48 +160573,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150869] = 3, + [158900] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5851), 1, - anon_sym_COLON, - ACTIONS(5849), 12, + ACTIONS(9079), 1, + anon_sym_POUND_, + ACTIONS(9099), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, + STATE(2428), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8963), 7, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - anon_sym_COMMA, - [150890] = 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + [158925] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5835), 1, - anon_sym_COLON, - ACTIONS(5833), 12, + ACTIONS(9079), 1, + anon_sym_POUND_, + ACTIONS(9099), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, + STATE(2428), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8967), 7, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - anon_sym_COMMA, - [150911] = 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + [158950] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5943), 1, + ACTIONS(6496), 1, anon_sym_COLON, - ACTIONS(5941), 12, + ACTIONS(6494), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148393,12 +160631,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150932] = 3, + [158971] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5703), 1, + ACTIONS(6512), 1, anon_sym_COLON, - ACTIONS(5701), 12, + ACTIONS(6510), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148411,12 +160649,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150953] = 3, + [158992] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5831), 1, + ACTIONS(6504), 1, anon_sym_COLON, - ACTIONS(5829), 12, + ACTIONS(6502), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148429,12 +160667,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150974] = 3, + [159013] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5687), 1, + ACTIONS(6508), 1, anon_sym_COLON, - ACTIONS(5685), 12, + ACTIONS(6506), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148447,12 +160685,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [150995] = 3, + [159034] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5823), 1, + ACTIONS(6508), 1, anon_sym_COLON, - ACTIONS(5821), 12, + ACTIONS(6506), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148465,12 +160703,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [151016] = 3, + [159055] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5819), 1, + ACTIONS(6170), 1, anon_sym_COLON, - ACTIONS(5817), 12, + ACTIONS(6168), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148483,12 +160721,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [151037] = 3, + [159076] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5811), 1, + ACTIONS(6504), 1, anon_sym_COLON, - ACTIONS(5809), 12, + ACTIONS(6502), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148501,12 +160739,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [151058] = 3, + [159097] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5807), 1, + ACTIONS(6246), 1, anon_sym_COLON, - ACTIONS(5805), 12, + ACTIONS(6244), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148519,32 +160757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [151079] = 5, + [159118] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, - anon_sym_POUND_, - ACTIONS(7400), 2, - sym__ws, - sym_comment, - STATE(2199), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(7252), 7, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - anon_sym_POUNDC, - anon_sym_POUNDc, - [151104] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7418), 1, + ACTIONS(9101), 1, aux_sym_num_lit_token2, - ACTIONS(5581), 11, + ACTIONS(6138), 11, sym__ws, sym_comment, anon_sym_POUND_, @@ -148556,1262 +160774,1178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_POUNDC, anon_sym_POUNDc, - [151124] = 10, + [159138] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - STATE(1216), 1, + STATE(1824), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2383), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2609), 1, aux_sym_list_lit_repeat1, - STATE(1226), 3, + ACTIONS(9103), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [151157] = 10, + [159167] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(7420), 1, - aux_sym_num_lit_token1, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2714), 1, - aux_sym_list_lit_repeat1, - ACTIONS(208), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(1861), 2, - sym_num_lit, - sym_complex_num_lit, - [151190] = 8, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7422), 1, + ACTIONS(9105), 1, + anon_sym_COLON, + ACTIONS(9107), 1, + anon_sym_COLON_COLON, + ACTIONS(6164), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, anon_sym_CARET, - ACTIONS(7425), 1, anon_sym_POUND_CARET, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2304), 1, - aux_sym_list_lit_repeat1, - ACTIONS(7326), 5, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - anon_sym_POUNDC, - anon_sym_POUNDc, - [151219] = 10, + [159188] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - STATE(2197), 1, - sym__metadata_lit, - STATE(2278), 1, + STATE(1032), 1, sym_list_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2355), 1, - aux_sym_list_lit_repeat1, - STATE(2277), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [151252] = 8, - ACTIONS(47), 1, - sym_block_comment, - STATE(831), 1, - sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2386), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2617), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, + ACTIONS(9103), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(785), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [151281] = 10, + [159217] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7430), 1, - aux_sym_num_lit_token1, - STATE(2197), 1, + STATE(1034), 1, + sym_list_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2719), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2617), 1, aux_sym_list_lit_repeat1, - ACTIONS(3401), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(1367), 2, - sym_num_lit, - sym_complex_num_lit, - [151314] = 8, + STATE(983), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [159250] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(981), 1, + STATE(2122), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2384), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, + ACTIONS(9103), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1024), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [151343] = 8, + [159279] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2248), 1, + STATE(2439), 1, sym_list_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2355), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2613), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, + ACTIONS(9103), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2277), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [151372] = 10, + [159308] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2799), 1, - anon_sym_LPAREN, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - STATE(975), 1, - sym_list_lit, - STATE(2197), 1, + ACTIONS(9109), 1, + aux_sym_num_lit_token1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2384), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2634), 1, aux_sym_list_lit_repeat1, - STATE(1024), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [151405] = 10, + ACTIONS(811), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(1009), 2, + sym_num_lit, + sym_complex_num_lit, + [159341] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7432), 1, + ACTIONS(9111), 1, aux_sym_num_lit_token1, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2611), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2638), 1, aux_sym_list_lit_repeat1, - ACTIONS(57), 2, + ACTIONS(2958), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1603), 2, + STATE(1835), 2, sym_num_lit, sym_complex_num_lit, - [151438] = 8, + [159374] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(938), 1, + STATE(1637), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2384), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, + ACTIONS(9103), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1024), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [151467] = 8, + [159403] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(2197), 1, - sym__metadata_lit, - STATE(2248), 1, - sym_list_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2364), 1, - aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, + ACTIONS(6741), 1, anon_sym_CARET, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(2277), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [151496] = 8, - ACTIONS(47), 1, - sym_block_comment, - STATE(1182), 1, - sym_list_lit, - STATE(2197), 1, + ACTIONS(9113), 1, + aux_sym_num_lit_token1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2383), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2632), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1226), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [151525] = 8, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(1596), 2, + sym_num_lit, + sym_complex_num_lit, + [159436] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1927), 1, + STATE(1510), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2394), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2622), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, + ACTIONS(9103), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1852), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [151554] = 10, + [159465] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - STATE(1933), 1, - sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2443), 1, + sym_list_lit, + STATE(2448), 1, sym_meta_lit, - STATE(2394), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2613), 1, aux_sym_list_lit_repeat1, - STATE(1852), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [151587] = 8, + [159498] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1917), 1, + STATE(980), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2394), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2617), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, + ACTIONS(9103), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1852), 3, + STATE(983), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [151616] = 8, + [159527] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(810), 1, + STATE(2173), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2386), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, + ACTIONS(9103), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(785), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [151645] = 10, + [159556] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(7434), 1, - aux_sym_num_lit_token1, - STATE(2197), 1, + STATE(887), 1, + sym_list_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2716), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3233), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(797), 2, - sym_num_lit, - sym_complex_num_lit, - [151678] = 8, - ACTIONS(47), 1, - sym_block_comment, - STATE(2197), 1, - sym__metadata_lit, - STATE(2250), 1, - sym_list_lit, - STATE(2279), 1, + STATE(2515), 1, sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2355), 1, + STATE(2603), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, + ACTIONS(9103), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2277), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [151707] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - STATE(1726), 1, - sym_list_lit, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2380), 1, - aux_sym_list_lit_repeat1, - STATE(1688), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [151740] = 10, + [159585] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7436), 1, + ACTIONS(9115), 1, aux_sym_num_lit_token1, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2718), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2640), 1, aux_sym_list_lit_repeat1, - ACTIONS(322), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1010), 2, + STATE(2438), 2, sym_num_lit, sym_complex_num_lit, - [151773] = 10, + [159618] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7438), 1, + ACTIONS(9117), 1, aux_sym_num_lit_token1, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2713), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2637), 1, aux_sym_list_lit_repeat1, - ACTIONS(2369), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1701), 2, + STATE(2156), 2, sym_num_lit, sym_complex_num_lit, - [151806] = 8, + [159651] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1435), 1, + STATE(1807), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2382), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2609), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, + ACTIONS(9103), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1390), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [151835] = 10, + [159680] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(7440), 1, - aux_sym_num_lit_token1, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2713), 1, + STATE(2462), 1, + sym_list_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2618), 1, aux_sym_list_lit_repeat1, - ACTIONS(2369), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(1701), 2, - sym_num_lit, - sym_complex_num_lit, - [151868] = 10, - ACTIONS(29), 1, + ACTIONS(9103), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [159709] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - STATE(1587), 1, - sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2439), 1, + sym_list_lit, + STATE(2448), 1, sym_meta_lit, - STATE(2362), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2624), 1, aux_sym_list_lit_repeat1, - STATE(1617), 3, + ACTIONS(9103), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [151901] = 10, + [159738] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7442), 1, - aux_sym_num_lit_token1, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2443), 1, + sym_list_lit, + STATE(2448), 1, sym_meta_lit, - STATE(2710), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2624), 1, aux_sym_list_lit_repeat1, - ACTIONS(3025), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(2261), 2, - sym_num_lit, - sym_complex_num_lit, - [151934] = 4, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [159771] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7444), 1, - anon_sym_COLON, - ACTIONS(7446), 1, - anon_sym_COLON_COLON, - ACTIONS(5619), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2462), 1, + sym_list_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2624), 1, + aux_sym_list_lit_repeat1, + ACTIONS(9103), 3, anon_sym_CARET, anon_sym_POUND_CARET, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - [151955] = 4, + anon_sym_LPAREN, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [159800] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7444), 1, - anon_sym_COLON, - ACTIONS(7446), 1, - anon_sym_COLON_COLON, - ACTIONS(5611), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(6741), 1, anon_sym_CARET, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - [151976] = 8, + STATE(868), 1, + sym_list_lit, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2603), 1, + aux_sym_list_lit_repeat1, + STATE(841), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [159833] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2197), 1, - sym__metadata_lit, - STATE(2250), 1, + STATE(866), 1, sym_list_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, sym_meta_lit, - STATE(2356), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2603), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, + ACTIONS(9103), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2277), 3, + STATE(841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [152005] = 8, + [159862] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(1589), 1, + ACTIONS(3852), 1, + anon_sym_LPAREN, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + STATE(1822), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2362), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2609), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1617), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [152034] = 10, + [159895] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3207), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - STATE(812), 1, + STATE(2120), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2386), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2600), 1, aux_sym_list_lit_repeat1, - STATE(785), 3, + STATE(2169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [152067] = 10, + [159928] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7448), 1, + ACTIONS(9119), 1, aux_sym_num_lit_token1, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2711), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2635), 1, aux_sym_list_lit_repeat1, - ACTIONS(4119), 2, + ACTIONS(119), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1402), 2, + STATE(853), 2, sym_num_lit, sym_complex_num_lit, - [152100] = 10, + [159961] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7450), 1, + ACTIONS(9121), 1, aux_sym_num_lit_token1, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2714), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2633), 1, aux_sym_list_lit_repeat1, - ACTIONS(208), 2, + ACTIONS(3614), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1861), 2, + STATE(1364), 2, sym_num_lit, sym_complex_num_lit, - [152133] = 10, + [159994] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3654), 1, anon_sym_LPAREN, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - STATE(2197), 1, - sym__metadata_lit, - STATE(2278), 1, + STATE(1508), 1, sym_list_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, sym_meta_lit, - STATE(2356), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2622), 1, aux_sym_list_lit_repeat1, - STATE(2277), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [152166] = 8, + [160027] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(1566), 1, - sym_list_lit, - STATE(2197), 1, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(9123), 1, + aux_sym_num_lit_token1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2362), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2639), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(3680), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(1533), 2, + sym_num_lit, + sym_complex_num_lit, + [160060] = 10, + ACTIONS(29), 1, anon_sym_LPAREN, - STATE(1617), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [152195] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - STATE(1417), 1, + STATE(1604), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2382), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, aux_sym_list_lit_repeat1, - STATE(1390), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [152228] = 4, + [160093] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7444), 1, - anon_sym_COLON, - ACTIONS(7446), 1, - anon_sym_COLON_COLON, - ACTIONS(5595), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, + ACTIONS(6741), 1, anon_sym_CARET, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - [152249] = 8, + ACTIONS(9125), 1, + aux_sym_num_lit_token1, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2632), 1, + aux_sym_list_lit_repeat1, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(1596), 2, + sym_num_lit, + sym_complex_num_lit, + [160126] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1415), 1, + STATE(1807), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2382), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2627), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, + ACTIONS(9103), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1390), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [152278] = 8, + [160155] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2197), 1, - sym__metadata_lit, - STATE(2248), 1, + STATE(1712), 1, sym_list_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, sym_meta_lit, - STATE(2356), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2591), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, + ACTIONS(9103), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2277), 3, + STATE(1632), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [152307] = 8, + [160184] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1312), 1, + STATE(1352), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2370), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2611), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, + ACTIONS(9103), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1361), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [152336] = 10, + [160213] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - STATE(2197), 1, - sym__metadata_lit, - STATE(2278), 1, + STATE(1176), 1, sym_list_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, sym_meta_lit, - STATE(2364), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2610), 1, aux_sym_list_lit_repeat1, - STATE(2277), 3, + ACTIONS(9103), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [152369] = 8, + [160242] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1219), 1, + STATE(1482), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2383), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2622), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, + ACTIONS(9103), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1226), 3, + STATE(1546), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [152398] = 8, + [160271] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(2197), 1, - sym__metadata_lit, - STATE(2250), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + STATE(1197), 1, sym_list_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, sym_meta_lit, - STATE(2364), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2610), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(2277), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [152427] = 10, + [160304] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7452), 1, + ACTIONS(9127), 1, aux_sym_num_lit_token1, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2710), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2636), 1, aux_sym_list_lit_repeat1, - ACTIONS(3025), 2, + ACTIONS(1464), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(2261), 2, + STATE(1223), 2, sym_num_lit, sym_complex_num_lit, - [152460] = 8, + [160337] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1752), 1, + STATE(1199), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2380), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2610), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, + ACTIONS(9103), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1688), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [152489] = 8, + [160366] = 4, ACTIONS(47), 1, sym_block_comment, - STATE(1724), 1, - sym_list_lit, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2358), 1, - aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, + ACTIONS(9105), 1, + anon_sym_COLON, + ACTIONS(9107), 1, + anon_sym_COLON_COLON, + ACTIONS(6180), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1688), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [152518] = 10, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + [160387] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2339), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - STATE(1726), 1, + STATE(1350), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2358), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2611), 1, aux_sym_list_lit_repeat1, - STATE(1688), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [152551] = 10, + [160420] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - STATE(1273), 1, - sym_list_lit, - STATE(2197), 1, + ACTIONS(9129), 1, + aux_sym_num_lit_token1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2370), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2638), 1, aux_sym_list_lit_repeat1, - STATE(1361), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [152584] = 8, + ACTIONS(2958), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(1835), 2, + sym_num_lit, + sym_complex_num_lit, + [160453] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(1270), 1, + ACTIONS(2928), 1, + anon_sym_LPAREN, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + STATE(1822), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2370), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2627), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1361), 3, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [152613] = 10, + [160486] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7454), 1, + ACTIONS(9131), 1, aux_sym_num_lit_token1, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2611), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2640), 1, aux_sym_list_lit_repeat1, - ACTIONS(57), 2, + ACTIONS(3878), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1603), 2, + STATE(2438), 2, sym_num_lit, sym_complex_num_lit, - [152646] = 10, + [160519] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(7456), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2715), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2637), 1, aux_sym_list_lit_repeat1, - ACTIONS(1493), 2, + ACTIONS(189), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1239), 2, + STATE(2156), 2, sym_num_lit, sym_complex_num_lit, - [152679] = 8, + [160552] = 4, ACTIONS(47), 1, sym_block_comment, - STATE(1752), 1, - sym_list_lit, - STATE(2197), 1, + ACTIONS(9105), 1, + anon_sym_COLON, + ACTIONS(9107), 1, + anon_sym_COLON_COLON, + ACTIONS(6152), 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, + [160573] = 8, + ACTIONS(47), 1, + sym_block_comment, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2358), 1, + STATE(2462), 1, + sym_list_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2613), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, + ACTIONS(9103), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1688), 3, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [152708] = 8, + [160602] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1724), 1, + STATE(1334), 1, sym_list_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2380), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2611), 1, aux_sym_list_lit_repeat1, - ACTIONS(7428), 3, + ACTIONS(9103), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1688), 3, + STATE(1374), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [152737] = 9, + [160631] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2439), 1, + sym_list_lit, + STATE(2448), 1, sym_meta_lit, - STATE(2304), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2618), 1, aux_sym_list_lit_repeat1, - STATE(2295), 3, + ACTIONS(9103), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(2527), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [152767] = 9, + [160660] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - STATE(2197), 1, + STATE(1824), 1, + sym_list_lit, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2304), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2627), 1, aux_sym_list_lit_repeat1, - STATE(2295), 3, + ACTIONS(9103), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(1844), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [152797] = 8, + [160689] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6494), 1, - aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(7460), 1, - anon_sym_COMMA, - ACTIONS(7464), 1, - aux_sym_format_directive_type_token11, - ACTIONS(7458), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(7462), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - STATE(2376), 2, - sym__format_token, - aux_sym_format_modifiers_repeat1, - [152825] = 9, + ACTIONS(5052), 1, + anon_sym_LPAREN, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + STATE(2426), 1, + sym__metadata_lit, + STATE(2443), 1, + sym_list_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2618), 1, + aux_sym_list_lit_repeat1, + STATE(2527), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [160722] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2339), 1, - anon_sym_LPAREN, - ACTIONS(6160), 1, + ACTIONS(9135), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(9138), 1, anon_sym_POUND_CARET, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2304), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, aux_sym_list_lit_repeat1, - STATE(1719), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [152855] = 4, + ACTIONS(9007), 5, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + anon_sym_POUNDC, + anon_sym_POUNDc, + [160751] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7466), 1, + ACTIONS(6274), 1, anon_sym_COLON, - ACTIONS(7468), 1, - anon_sym_COLON_COLON, - ACTIONS(5595), 8, + ACTIONS(6272), 9, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [152875] = 3, + [160769] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5719), 1, + ACTIONS(6206), 1, anon_sym_COLON, - ACTIONS(5717), 9, + ACTIONS(6204), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -149821,12 +161955,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [152893] = 3, + [160787] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5715), 1, + ACTIONS(6270), 1, anon_sym_COLON, - ACTIONS(5713), 9, + ACTIONS(6268), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -149836,33 +161970,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [152911] = 9, - ACTIONS(29), 1, - anon_sym_LPAREN, + [160805] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6286), 1, + anon_sym_COLON, + ACTIONS(6284), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, anon_sym_CARET, - ACTIONS(6162), 1, anon_sym_POUND_CARET, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2304), 1, - aux_sym_list_lit_repeat1, - STATE(1594), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [152941] = 3, + anon_sym_LPAREN, + anon_sym_COMMA, + [160823] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5723), 1, + ACTIONS(6322), 1, anon_sym_COLON, - ACTIONS(5721), 9, + ACTIONS(6320), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -149872,33 +162000,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [152959] = 9, + [160841] = 7, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(9141), 1, + aux_sym_num_lit_token1, + ACTIONS(9146), 1, + anon_sym_SQUOTE, + ACTIONS(9149), 1, + anon_sym_COMMA, + ACTIONS(9144), 2, + anon_sym_COLON, + anon_sym_AT, + STATE(2589), 2, + sym__format_token, + aux_sym_format_modifiers_repeat1, + ACTIONS(9152), 3, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + aux_sym_format_directive_type_token11, + [160867] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3495), 1, + ACTIONS(6374), 1, + anon_sym_COLON, + ACTIONS(6372), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(6160), 1, + anon_sym_COMMA, + [160885] = 9, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2304), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, aux_sym_list_lit_repeat1, - STATE(2295), 3, + STATE(1645), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [152989] = 3, + [160915] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5651), 1, + ACTIONS(6358), 1, anon_sym_COLON, - ACTIONS(5649), 9, + ACTIONS(6356), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -149908,12 +162070,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [153007] = 3, + [160933] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5601), 1, + ACTIONS(6354), 1, anon_sym_COLON, - ACTIONS(5599), 9, + ACTIONS(6352), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -149923,27 +162085,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [153025] = 3, + [160951] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5695), 1, - anon_sym_COLON, - ACTIONS(5693), 9, + ACTIONS(9157), 1, + anon_sym_POUND_, + ACTIONS(9154), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, + STATE(2594), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(6102), 4, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [153043] = 3, + [160973] = 8, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7075), 1, + aux_sym_num_lit_token1, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(9162), 1, + anon_sym_COMMA, + ACTIONS(9166), 1, + aux_sym_format_directive_type_token11, + ACTIONS(9160), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(9164), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + STATE(2589), 2, + sym__format_token, + aux_sym_format_modifiers_repeat1, + [161001] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5655), 1, + ACTIONS(6401), 1, anon_sym_COLON, - ACTIONS(5653), 9, + ACTIONS(6399), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -149953,12 +162137,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [153061] = 3, + [161019] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5795), 1, + ACTIONS(6150), 1, anon_sym_COLON, - ACTIONS(5793), 9, + ACTIONS(6148), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -149968,33 +162152,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [153079] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2304), 1, - aux_sym_list_lit_repeat1, - STATE(1267), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [153109] = 3, + [161037] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5799), 1, + ACTIONS(6405), 1, anon_sym_COLON, - ACTIONS(5797), 9, + ACTIONS(6403), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -150004,12 +162167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [153127] = 3, + [161055] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5895), 1, + ACTIONS(6350), 1, anon_sym_COLON, - ACTIONS(5893), 9, + ACTIONS(6348), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -150019,12 +162182,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [153145] = 3, + [161073] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, + aux_sym_list_lit_repeat1, + STATE(2127), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [161103] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5643), 1, + ACTIONS(6278), 1, anon_sym_COLON, - ACTIONS(5641), 9, + ACTIONS(6276), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -150034,12 +162218,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [153163] = 3, + [161121] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5803), 1, + ACTIONS(6210), 1, anon_sym_COLON, - ACTIONS(5801), 9, + ACTIONS(6208), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -150049,12 +162233,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [153181] = 3, + [161139] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, + aux_sym_list_lit_repeat1, + STATE(862), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [161169] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5625), 1, + ACTIONS(6362), 1, anon_sym_COLON, - ACTIONS(5623), 9, + ACTIONS(6360), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -150064,31 +162269,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [153199] = 7, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7470), 1, - aux_sym_num_lit_token1, - ACTIONS(7475), 1, - anon_sym_SQUOTE, - ACTIONS(7478), 1, - anon_sym_COMMA, - ACTIONS(7473), 2, - anon_sym_COLON, - anon_sym_AT, - STATE(2376), 2, - sym__format_token, - aux_sym_format_modifiers_repeat1, - ACTIONS(7481), 3, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - aux_sym_format_directive_type_token11, - [153225] = 3, + [161187] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5871), 1, + ACTIONS(6198), 1, anon_sym_COLON, - ACTIONS(5869), 9, + ACTIONS(6196), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -150098,66 +162284,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [153243] = 4, + [161205] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7466), 1, + ACTIONS(6202), 1, anon_sym_COLON, - ACTIONS(7468), 1, - anon_sym_COLON_COLON, - ACTIONS(5619), 8, + ACTIONS(6200), 9, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [153263] = 5, + [161223] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7486), 1, - anon_sym_POUND_, - ACTIONS(7483), 2, + ACTIONS(6282), 1, + anon_sym_COLON, + ACTIONS(6280), 9, sym__ws, sym_comment, - STATE(2379), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(5545), 4, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [153285] = 9, + [161241] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2304), 1, - aux_sym_list_lit_repeat1, - STATE(1719), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [153315] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5815), 1, + ACTIONS(6214), 1, anon_sym_COLON, - ACTIONS(5813), 9, + ACTIONS(6212), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -150167,75 +162329,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [153333] = 9, + [161259] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4093), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2304), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, aux_sym_list_lit_repeat1, - STATE(1411), 3, + STATE(1827), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [153363] = 9, + [161289] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3127), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2304), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, aux_sym_list_lit_repeat1, - STATE(1076), 3, + STATE(1204), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [153393] = 9, + [161319] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2799), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2304), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, aux_sym_list_lit_repeat1, - STATE(986), 3, + STATE(1355), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [153423] = 3, + [161349] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5791), 1, + ACTIONS(6162), 1, anon_sym_COLON, - ACTIONS(5789), 9, + ACTIONS(6160), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -150245,33 +162407,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [153441] = 9, + [161367] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3207), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2304), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, aux_sym_list_lit_repeat1, - STATE(806), 3, + STATE(2529), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [153471] = 3, + [161397] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5839), 1, + ACTIONS(6428), 1, anon_sym_COLON, - ACTIONS(5837), 9, + ACTIONS(6426), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -150281,12 +162443,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [153489] = 3, + [161415] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5843), 1, + ACTIONS(6432), 1, anon_sym_COLON, - ACTIONS(5841), 9, + ACTIONS(6430), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -150296,12 +162458,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [153507] = 3, + [161433] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5847), 1, + ACTIONS(6456), 1, anon_sym_COLON, - ACTIONS(5845), 9, + ACTIONS(6454), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -150311,42 +162473,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [153525] = 3, + [161451] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5639), 1, - anon_sym_COLON, - ACTIONS(5637), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, + ACTIONS(3219), 1, + anon_sym_LPAREN, + ACTIONS(6741), 1, anon_sym_CARET, + ACTIONS(6743), 1, anon_sym_POUND_CARET, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, + aux_sym_list_lit_repeat1, + STATE(1026), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [161481] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5052), 1, anon_sym_LPAREN, - anon_sym_COMMA, - [153543] = 3, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, + aux_sym_list_lit_repeat1, + STATE(2529), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [161511] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5647), 1, + ACTIONS(9168), 1, anon_sym_COLON, - ACTIONS(5645), 9, + ACTIONS(9170), 1, + anon_sym_COLON_COLON, + ACTIONS(6180), 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, - [153561] = 3, + [161531] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5847), 1, + ACTIONS(6254), 1, anon_sym_COLON, - ACTIONS(5845), 9, + ACTIONS(6252), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -150356,79 +162546,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [153579] = 3, + [161549] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5867), 1, + ACTIONS(9168), 1, anon_sym_COLON, - ACTIONS(5865), 9, + ACTIONS(9170), 1, + anon_sym_COLON_COLON, + ACTIONS(6164), 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, - [153597] = 9, + [161569] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3654), 1, anon_sym_LPAREN, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, + STATE(2448), 1, sym_meta_lit, - STATE(2304), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, aux_sym_list_lit_repeat1, - STATE(1900), 3, + STATE(1514), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [153627] = 3, + [161599] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5763), 1, + ACTIONS(9168), 1, anon_sym_COLON, - ACTIONS(5761), 9, + ACTIONS(9170), 1, + anon_sym_COLON_COLON, + ACTIONS(6152), 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, - [153645] = 4, + [161619] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7466), 1, - anon_sym_COLON, - ACTIONS(7468), 1, - anon_sym_COLON_COLON, - ACTIONS(5611), 8, - sym__ws, - sym_comment, - anon_sym_POUND_, - aux_sym_sym_lit_token1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(6741), 1, anon_sym_CARET, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [153665] = 3, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, + aux_sym_list_lit_repeat1, + STATE(2529), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [161649] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5727), 1, + ACTIONS(6178), 1, anon_sym_COLON, - ACTIONS(5725), 9, + ACTIONS(6176), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -150438,12 +162635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [153683] = 3, + [161667] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5711), 1, + ACTIONS(6162), 1, anon_sym_COLON, - ACTIONS(5709), 9, + ACTIONS(6160), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -150453,17020 +162650,17334 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [153701] = 5, + [161685] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(2928), 1, + anon_sym_LPAREN, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, + aux_sym_list_lit_repeat1, + STATE(1827), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [161715] = 10, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(8633), 1, + anon_sym_LBRACE, + ACTIONS(9172), 1, + anon_sym_POUND_QMARK, + STATE(2410), 1, + sym__bare_map_lit, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, + aux_sym_list_lit_repeat1, + [161746] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7492), 1, + ACTIONS(9177), 1, anon_sym_POUND_, - ACTIONS(7489), 2, + ACTIONS(9174), 2, sym__ws, sym_comment, - ACTIONS(5545), 3, + ACTIONS(6102), 3, aux_sym_num_lit_token1, anon_sym_cl, anon_sym_into, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [153722] = 10, + [161767] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6948), 1, + ACTIONS(8633), 1, anon_sym_LBRACE, - ACTIONS(7495), 1, + ACTIONS(9180), 1, anon_sym_POUND_QMARK, - STATE(2181), 1, + STATE(2410), 1, sym__bare_map_lit, - STATE(2197), 1, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, sym_old_meta_lit, - STATE(2281), 1, + STATE(2583), 1, + aux_sym_list_lit_repeat1, + [161798] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(9125), 1, + aux_sym_num_lit_token1, + ACTIONS(9184), 1, + anon_sym_POUND_, + STATE(3177), 1, + sym_num_lit, + ACTIONS(9182), 2, + sym__ws, + sym_comment, + STATE(2879), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [161820] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(8735), 1, + anon_sym_POUNDC, + ACTIONS(8737), 1, + anon_sym_POUNDc, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, sym_meta_lit, - STATE(2304), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, aux_sym_list_lit_repeat1, - [153753] = 10, + [161848] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, + ACTIONS(6741), 1, anon_sym_CARET, - ACTIONS(6162), 1, + ACTIONS(6743), 1, anon_sym_POUND_CARET, - ACTIONS(6948), 1, - anon_sym_LBRACE, - ACTIONS(7497), 1, - anon_sym_POUND_QMARK, - STATE(2181), 1, - sym__bare_map_lit, - STATE(2197), 1, + ACTIONS(8901), 1, + anon_sym_POUNDC, + ACTIONS(8903), 1, + anon_sym_POUNDc, + STATE(2426), 1, sym__metadata_lit, - STATE(2279), 1, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, sym_old_meta_lit, - STATE(2281), 1, + STATE(2583), 1, + aux_sym_list_lit_repeat1, + [161876] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(8881), 1, + anon_sym_POUNDC, + ACTIONS(8883), 1, + anon_sym_POUNDc, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, sym_meta_lit, - STATE(2304), 1, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, + aux_sym_list_lit_repeat1, + [161904] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(8841), 1, + anon_sym_POUNDC, + ACTIONS(8843), 1, + anon_sym_POUNDc, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, + aux_sym_list_lit_repeat1, + [161932] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(8821), 1, + anon_sym_POUNDC, + ACTIONS(8823), 1, + anon_sym_POUNDc, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, + aux_sym_list_lit_repeat1, + [161960] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(8781), 1, + anon_sym_POUNDC, + ACTIONS(8783), 1, + anon_sym_POUNDc, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, + aux_sym_list_lit_repeat1, + [161988] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(8679), 1, + anon_sym_POUNDC, + ACTIONS(8681), 1, + anon_sym_POUNDc, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, + aux_sym_list_lit_repeat1, + [162016] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(8861), 1, + anon_sym_POUNDC, + ACTIONS(8863), 1, + anon_sym_POUNDc, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, + aux_sym_list_lit_repeat1, + [162044] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6741), 1, + anon_sym_CARET, + ACTIONS(6743), 1, + anon_sym_POUND_CARET, + ACTIONS(8715), 1, + anon_sym_POUNDC, + ACTIONS(8717), 1, + anon_sym_POUNDc, + STATE(2426), 1, + sym__metadata_lit, + STATE(2448), 1, + sym_meta_lit, + STATE(2515), 1, + sym_old_meta_lit, + STATE(2583), 1, aux_sym_list_lit_repeat1, - [153784] = 6, + [162072] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2470), 1, + STATE(2750), 1, sym_num_lit, - ACTIONS(7499), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2646), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [153806] = 6, + [162094] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2886), 1, + STATE(2753), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [153828] = 6, + [162116] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2884), 1, + STATE(2757), 1, sym_num_lit, - ACTIONS(7505), 2, + ACTIONS(9188), 2, sym__ws, sym_comment, - STATE(2477), 3, + STATE(2641), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [153850] = 6, + [162138] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2883), 1, + STATE(2758), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [153872] = 6, + [162160] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2879), 1, + STATE(2760), 1, sym_num_lit, - ACTIONS(7507), 2, + ACTIONS(9190), 2, sym__ws, sym_comment, - STATE(2474), 3, + STATE(2642), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [153894] = 6, + [162182] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2878), 1, + STATE(2761), 1, sym_num_lit, - ACTIONS(7509), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2403), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [153916] = 6, + [162204] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2877), 1, + STATE(2763), 1, sym_num_lit, - ACTIONS(7511), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [153938] = 6, + [162226] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2876), 1, + STATE(3404), 1, + sym_num_lit, + ACTIONS(9186), 2, + sym__ws, + sym_comment, + STATE(2629), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [162248] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(9133), 1, + aux_sym_num_lit_token1, + ACTIONS(9184), 1, + anon_sym_POUND_, + STATE(2765), 1, + sym_num_lit, + ACTIONS(9192), 2, + sym__ws, + sym_comment, + STATE(2644), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [162270] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(9133), 1, + aux_sym_num_lit_token1, + ACTIONS(9184), 1, + anon_sym_POUND_, + STATE(2766), 1, + sym_num_lit, + ACTIONS(9194), 2, + sym__ws, + sym_comment, + STATE(2646), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [162292] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(9133), 1, + aux_sym_num_lit_token1, + ACTIONS(9184), 1, + anon_sym_POUND_, + STATE(2767), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9196), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2647), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [153960] = 6, + [162314] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2871), 1, + STATE(2767), 1, sym_num_lit, - ACTIONS(7513), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2409), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [153982] = 6, + [162336] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2822), 1, + STATE(2769), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9198), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2652), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154004] = 6, + [162358] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2818), 1, + STATE(2947), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154026] = 6, + [162380] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2813), 1, + STATE(2772), 1, sym_num_lit, - ACTIONS(7515), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2411), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154048] = 6, + [162402] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2812), 1, + STATE(2775), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154070] = 6, + [162424] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2810), 1, + STATE(2779), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9200), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2655), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154092] = 6, + [162446] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2807), 1, + STATE(2780), 1, sym_num_lit, - ACTIONS(7517), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2412), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154114] = 6, + [162468] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2806), 1, + STATE(2782), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9202), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2656), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154136] = 6, + [162490] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2804), 1, + STATE(2783), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154158] = 6, + [162512] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2801), 1, + STATE(2785), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154180] = 6, + [162534] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2798), 1, + STATE(2787), 1, sym_num_lit, - ACTIONS(7519), 2, + ACTIONS(9204), 2, sym__ws, sym_comment, - STATE(2414), 3, + STATE(2658), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154202] = 6, + [162556] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2797), 1, + STATE(2788), 1, sym_num_lit, - ACTIONS(7521), 2, + ACTIONS(9206), 2, sym__ws, sym_comment, - STATE(2415), 3, + STATE(2660), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154224] = 6, + [162578] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2796), 1, + STATE(2789), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9208), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2661), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154246] = 6, + [162600] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2794), 1, + STATE(2789), 1, sym_num_lit, - ACTIONS(7523), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2417), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154268] = 6, + [162622] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2793), 1, + STATE(2791), 1, sym_num_lit, - ACTIONS(7525), 2, + ACTIONS(9210), 2, sym__ws, sym_comment, - STATE(2418), 3, + STATE(2665), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154290] = 6, + [162644] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2792), 1, + STATE(3014), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9212), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2946), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154312] = 6, + [162666] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2790), 1, + STATE(2795), 1, sym_num_lit, - ACTIONS(7527), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154334] = 6, + [162688] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2789), 1, + STATE(2799), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154356] = 6, + [162710] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2785), 1, + STATE(2805), 1, sym_num_lit, - ACTIONS(7529), 2, + ACTIONS(9214), 2, sym__ws, sym_comment, - STATE(2422), 3, + STATE(2668), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154378] = 6, + [162732] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2784), 1, + STATE(2806), 1, sym_num_lit, - ACTIONS(7531), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2425), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154400] = 6, + [162754] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2783), 1, + STATE(2808), 1, sym_num_lit, - ACTIONS(7533), 2, + ACTIONS(9216), 2, sym__ws, sym_comment, - STATE(2427), 3, + STATE(2669), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154422] = 6, + [162776] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2782), 1, + STATE(2809), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154444] = 6, + [162798] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2777), 1, + STATE(2811), 1, sym_num_lit, - ACTIONS(7535), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2431), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154466] = 6, + [162820] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2744), 1, + STATE(2813), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9218), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2671), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154488] = 6, + [162842] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2740), 1, + STATE(2814), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9220), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2673), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154510] = 6, + [162864] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2735), 1, + STATE(2815), 1, sym_num_lit, - ACTIONS(7537), 2, + ACTIONS(9222), 2, sym__ws, sym_comment, - STATE(2433), 3, + STATE(2674), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154532] = 6, + [162886] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2734), 1, + STATE(2815), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154554] = 6, + [162908] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2732), 1, + STATE(2817), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9224), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2678), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154576] = 6, + [162930] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2729), 1, + STATE(3018), 1, sym_num_lit, - ACTIONS(7539), 2, + ACTIONS(9226), 2, sym__ws, sym_comment, - STATE(2434), 3, + STATE(2948), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154598] = 6, + [162952] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2728), 1, + STATE(2820), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154620] = 6, + [162974] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2726), 1, + STATE(2823), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154642] = 6, + [162996] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2723), 1, + STATE(2827), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9228), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2681), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154664] = 6, + [163018] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2772), 1, + STATE(2828), 1, sym_num_lit, - ACTIONS(7541), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2436), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154686] = 6, + [163040] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2773), 1, + STATE(2830), 1, sym_num_lit, - ACTIONS(7543), 2, + ACTIONS(9230), 2, sym__ws, sym_comment, - STATE(2437), 3, + STATE(2682), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154708] = 6, + [163062] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2774), 1, + STATE(2831), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154730] = 6, + [163084] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2778), 1, + STATE(2833), 1, sym_num_lit, - ACTIONS(7545), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2439), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154752] = 6, + [163106] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2779), 1, + STATE(2835), 1, sym_num_lit, - ACTIONS(7547), 2, + ACTIONS(9232), 2, sym__ws, sym_comment, - STATE(2440), 3, + STATE(2684), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154774] = 6, + [163128] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2780), 1, + STATE(2836), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9234), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2686), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154796] = 6, + [163150] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2826), 1, + STATE(2837), 1, sym_num_lit, - ACTIONS(7549), 2, + ACTIONS(9236), 2, sym__ws, sym_comment, - STATE(2441), 3, + STATE(2687), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154818] = 6, + [163172] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2827), 1, + STATE(2837), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154840] = 6, + [163194] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2837), 1, + STATE(2839), 1, sym_num_lit, - ACTIONS(7551), 2, + ACTIONS(9238), 2, sym__ws, sym_comment, - STATE(2444), 3, + STATE(2691), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154862] = 6, + [163216] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2839), 1, + STATE(3406), 1, sym_num_lit, - ACTIONS(7553), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2447), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154884] = 6, + [163238] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2840), 1, + STATE(3019), 1, sym_num_lit, - ACTIONS(7555), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2449), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154906] = 6, + [163260] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, STATE(2842), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154928] = 6, + [163282] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2851), 1, + STATE(2845), 1, sym_num_lit, - ACTIONS(7557), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2453), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154950] = 6, + [163304] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2972), 1, + STATE(2849), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9240), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2695), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154972] = 6, + [163326] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2981), 1, + STATE(2850), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [154994] = 6, + [163348] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2992), 1, + STATE(2852), 1, sym_num_lit, - ACTIONS(7559), 2, + ACTIONS(9242), 2, sym__ws, sym_comment, - STATE(2455), 3, + STATE(2696), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155016] = 6, + [163370] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2993), 1, + STATE(2853), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155038] = 6, + [163392] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2998), 1, + STATE(2855), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155060] = 6, + [163414] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3002), 1, + STATE(2857), 1, sym_num_lit, - ACTIONS(7561), 2, + ACTIONS(9244), 2, sym__ws, sym_comment, - STATE(2456), 3, + STATE(2698), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155082] = 6, + [163436] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3003), 1, + STATE(2858), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9246), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2700), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155104] = 6, + [163458] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3010), 1, + STATE(2859), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9248), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2701), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155126] = 6, + [163480] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3015), 1, + STATE(2859), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155148] = 6, + [163502] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3020), 1, + STATE(2861), 1, sym_num_lit, - ACTIONS(7563), 2, + ACTIONS(9250), 2, sym__ws, sym_comment, - STATE(2458), 3, + STATE(2705), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155170] = 6, + [163524] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2916), 1, + STATE(2865), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155192] = 6, + [163546] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2887), 1, + STATE(2868), 1, sym_num_lit, - ACTIONS(7565), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2478), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155214] = 6, + [163568] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2888), 1, + STATE(2872), 1, sym_num_lit, - ACTIONS(7567), 2, + ACTIONS(9252), 2, sym__ws, sym_comment, - STATE(2479), 3, + STATE(2707), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155236] = 6, + [163590] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3021), 1, + STATE(2873), 1, sym_num_lit, - ACTIONS(7569), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2459), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155258] = 6, + [163612] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3022), 1, + STATE(2875), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9254), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2708), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155280] = 6, + [163634] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3026), 1, + STATE(2876), 1, sym_num_lit, - ACTIONS(7571), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2461), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155302] = 6, + [163656] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3027), 1, + STATE(2878), 1, sym_num_lit, - ACTIONS(7573), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2462), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155324] = 6, + [163678] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3028), 1, + STATE(2880), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9256), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2710), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155346] = 6, + [163700] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3030), 1, + STATE(2881), 1, sym_num_lit, - ACTIONS(7575), 2, + ACTIONS(9258), 2, sym__ws, sym_comment, - STATE(2463), 3, + STATE(2712), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155368] = 6, + [163722] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2890), 1, + STATE(2631), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9260), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2713), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155390] = 6, + [163744] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2891), 1, + STATE(2631), 1, sym_num_lit, - ACTIONS(7577), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2481), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155412] = 6, + [163766] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2892), 1, + STATE(2884), 1, + sym_num_lit, + ACTIONS(9262), 2, + sym__ws, + sym_comment, + STATE(2717), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [163788] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(9133), 1, + aux_sym_num_lit_token1, + ACTIONS(9184), 1, + anon_sym_POUND_, + STATE(2940), 1, + sym_num_lit, + ACTIONS(9186), 2, + sym__ws, + sym_comment, + STATE(2629), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [163810] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(9133), 1, + aux_sym_num_lit_token1, + ACTIONS(9184), 1, + anon_sym_POUND_, + STATE(2888), 1, sym_num_lit, - ACTIONS(7579), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2482), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155434] = 6, + [163832] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, + anon_sym_POUND_, + STATE(2891), 1, + sym_num_lit, + ACTIONS(9186), 2, + sym__ws, + sym_comment, + STATE(2629), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [163854] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(9133), 1, + aux_sym_num_lit_token1, + ACTIONS(9184), 1, anon_sym_POUND_, STATE(2895), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9264), 2, + sym__ws, + sym_comment, + STATE(2720), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [163876] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(9133), 1, + aux_sym_num_lit_token1, + ACTIONS(9184), 1, + anon_sym_POUND_, + STATE(2896), 1, + sym_num_lit, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155456] = 6, + [163898] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, STATE(2898), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9266), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2721), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155478] = 6, + [163920] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2900), 1, + STATE(2899), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155500] = 6, + [163942] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, STATE(2901), 1, sym_num_lit, - ACTIONS(7581), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2484), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155522] = 6, + [163964] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2904), 1, + STATE(2933), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9268), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2932), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155544] = 6, + [163986] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2906), 1, + STATE(2903), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9270), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2723), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155566] = 6, + [164008] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2907), 1, + STATE(2904), 1, sym_num_lit, - ACTIONS(7583), 2, + ACTIONS(9272), 2, sym__ws, sym_comment, - STATE(2465), 3, + STATE(2725), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155588] = 6, + [164030] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2912), 1, + STATE(2905), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9274), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2726), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155610] = 6, + [164052] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3031), 1, + STATE(2937), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9276), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2935), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155632] = 6, + [164074] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3034), 1, + STATE(2905), 1, sym_num_lit, - ACTIONS(7585), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2469), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155654] = 6, + [164096] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2547), 1, + STATE(2907), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9278), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2732), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155676] = 6, + [164118] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2606), 1, + STATE(3099), 1, sym_num_lit, - ACTIONS(7587), 2, + ACTIONS(9280), 2, sym__ws, sym_comment, - STATE(2489), 3, + STATE(2939), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155698] = 6, + [164140] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2604), 1, + STATE(2910), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155720] = 6, + [164162] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2604), 1, + STATE(2913), 1, sym_num_lit, - ACTIONS(7589), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2493), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155742] = 6, + [164184] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2603), 1, + STATE(2917), 1, sym_num_lit, - ACTIONS(7591), 2, + ACTIONS(9282), 2, sym__ws, sym_comment, - STATE(2495), 3, + STATE(2735), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155764] = 6, + [164206] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2602), 1, + STATE(2918), 1, sym_num_lit, - ACTIONS(7593), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2497), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155786] = 6, + [164228] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2600), 1, + STATE(2920), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9284), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2736), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155808] = 6, + [164250] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3035), 1, + STATE(2921), 1, sym_num_lit, - ACTIONS(7595), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2472), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155830] = 6, + [164272] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2597), 1, + STATE(2923), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155852] = 6, + [164294] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2596), 1, + STATE(2925), 1, sym_num_lit, - ACTIONS(7597), 2, + ACTIONS(9286), 2, sym__ws, sym_comment, - STATE(2503), 3, + STATE(2738), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155874] = 6, + [164316] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2594), 1, + STATE(2926), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9288), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2740), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155896] = 6, + [164338] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3036), 1, + STATE(2927), 1, sym_num_lit, - ACTIONS(7599), 2, + ACTIONS(9290), 2, sym__ws, sym_comment, - STATE(2485), 3, + STATE(2741), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155918] = 6, + [164360] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3037), 1, + STATE(2927), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155940] = 6, + [164382] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3042), 1, + STATE(2929), 1, sym_num_lit, - ACTIONS(7601), 2, + ACTIONS(9292), 2, sym__ws, sym_comment, - STATE(2499), 3, + STATE(2745), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155962] = 6, + [164404] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2593), 1, + STATE(3105), 1, sym_num_lit, - ACTIONS(7603), 2, + ACTIONS(9294), 2, sym__ws, sym_comment, - STATE(2525), 3, + STATE(2938), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155984] = 6, + [164426] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3086), 1, + STATE(3156), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156006] = 6, + [164448] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2589), 1, + STATE(3152), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156028] = 6, + [164470] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3090), 1, + STATE(3147), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9296), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2748), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156050] = 6, + [164492] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3095), 1, + STATE(3146), 1, sym_num_lit, - ACTIONS(7605), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2502), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156072] = 6, + [164514] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3096), 1, + STATE(3144), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156094] = 6, + [164536] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3098), 1, + STATE(3141), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9298), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2749), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156116] = 6, + [164558] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3103), 1, + STATE(3140), 1, sym_num_lit, - ACTIONS(7607), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2504), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156138] = 6, + [164580] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3104), 1, + STATE(3138), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156160] = 6, + [164602] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3106), 1, + STATE(3135), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156182] = 6, + [164624] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3109), 1, + STATE(3132), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9300), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2751), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156204] = 6, + [164646] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3112), 1, + STATE(3131), 1, sym_num_lit, - ACTIONS(7609), 2, + ACTIONS(9302), 2, sym__ws, sym_comment, - STATE(2506), 3, + STATE(2752), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156226] = 6, + [164668] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3113), 1, + STATE(3130), 1, sym_num_lit, - ACTIONS(7611), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2507), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156248] = 6, + [164690] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3114), 1, + STATE(3128), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9304), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2754), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156270] = 6, + [164712] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3116), 1, + STATE(3127), 1, sym_num_lit, - ACTIONS(7613), 2, + ACTIONS(9306), 2, sym__ws, sym_comment, - STATE(2509), 3, + STATE(2755), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156292] = 6, + [164734] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3117), 1, + STATE(3126), 1, sym_num_lit, - ACTIONS(7615), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2510), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156314] = 6, + [164756] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3118), 1, + STATE(3124), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9308), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2756), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156336] = 6, + [164778] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3120), 1, + STATE(3123), 1, sym_num_lit, - ACTIONS(7617), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2511), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156358] = 6, + [164800] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3121), 1, + STATE(3119), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9310), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2759), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156380] = 6, + [164822] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3124), 1, + STATE(3118), 1, sym_num_lit, - ACTIONS(7619), 2, + ACTIONS(9312), 2, sym__ws, sym_comment, - STATE(2514), 3, + STATE(2762), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156402] = 6, + [164844] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3126), 1, + STATE(3117), 1, sym_num_lit, - ACTIONS(7621), 2, + ACTIONS(9314), 2, sym__ws, sym_comment, - STATE(2517), 3, + STATE(2764), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156424] = 6, + [164866] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3128), 1, + STATE(3116), 1, sym_num_lit, - ACTIONS(7623), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2519), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156446] = 6, + [164888] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3129), 1, + STATE(3111), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9316), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2768), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156468] = 6, + [164910] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3131), 1, + STATE(3062), 1, sym_num_lit, - ACTIONS(7625), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2523), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156490] = 6, + [164932] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2586), 1, + STATE(3058), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156512] = 6, + [164954] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3151), 1, + STATE(3053), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9318), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2770), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156534] = 6, + [164976] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3156), 1, + STATE(3052), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156556] = 6, + [164998] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3161), 1, + STATE(3050), 1, sym_num_lit, - ACTIONS(7627), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2526), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156578] = 6, + [165020] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3162), 1, + STATE(3047), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9320), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2771), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156600] = 6, + [165042] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3164), 1, + STATE(3046), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156622] = 6, + [165064] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3167), 1, + STATE(3044), 1, sym_num_lit, - ACTIONS(7629), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2527), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156644] = 6, + [165086] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3168), 1, + STATE(3041), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156666] = 6, + [165108] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3170), 1, + STATE(3038), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9322), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2773), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156688] = 6, + [165130] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3173), 1, + STATE(3037), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9324), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2774), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156710] = 6, + [165152] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3178), 1, + STATE(3036), 1, sym_num_lit, - ACTIONS(7631), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2529), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156732] = 6, + [165174] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3179), 1, + STATE(3034), 1, sym_num_lit, - ACTIONS(7633), 2, + ACTIONS(9326), 2, sym__ws, sym_comment, - STATE(2530), 3, + STATE(2776), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156754] = 6, + [165196] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3180), 1, + STATE(3033), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9328), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2777), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156776] = 6, + [165218] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3152), 1, + STATE(3032), 1, sym_num_lit, - ACTIONS(7635), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2532), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156798] = 6, + [165240] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3147), 1, + STATE(3030), 1, sym_num_lit, - ACTIONS(7637), 2, + ACTIONS(9330), 2, sym__ws, sym_comment, - STATE(2533), 3, + STATE(2778), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156820] = 6, + [165262] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3146), 1, + STATE(3029), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156842] = 6, + [165284] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3144), 1, + STATE(3025), 1, sym_num_lit, - ACTIONS(7639), 2, + ACTIONS(9332), 2, sym__ws, sym_comment, - STATE(2534), 3, + STATE(2781), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156864] = 6, + [165306] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2579), 1, + STATE(3024), 1, sym_num_lit, - ACTIONS(7641), 2, + ACTIONS(9334), 2, sym__ws, sym_comment, - STATE(2544), 3, + STATE(2784), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156886] = 6, + [165328] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3143), 1, + STATE(3023), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9336), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2786), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156908] = 6, + [165350] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2577), 1, + STATE(3022), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156930] = 6, + [165372] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3141), 1, + STATE(3017), 1, sym_num_lit, - ACTIONS(7643), 2, + ACTIONS(9338), 2, sym__ws, sym_comment, - STATE(2537), 3, + STATE(2790), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156952] = 6, + [165394] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3140), 1, + STATE(3225), 1, sym_num_lit, - ACTIONS(7645), 2, + ACTIONS(9340), 2, sym__ws, sym_comment, - STATE(2540), 3, + STATE(2936), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156974] = 6, + [165416] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3139), 1, + STATE(2972), 1, sym_num_lit, - ACTIONS(7647), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2543), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156996] = 6, + [165438] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3138), 1, + STATE(2968), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157018] = 6, + [165460] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3136), 1, + STATE(2963), 1, sym_num_lit, - ACTIONS(7649), 2, + ACTIONS(9342), 2, sym__ws, sym_comment, - STATE(2548), 3, + STATE(2793), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157040] = 6, + [165482] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2577), 1, + STATE(2944), 1, sym_num_lit, - ACTIONS(7651), 2, + ACTIONS(9344), 2, sym__ws, sym_comment, - STATE(2555), 3, + STATE(2943), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157062] = 6, + [165504] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, - aux_sym_num_lit_token1, - ACTIONS(7501), 1, - anon_sym_POUND_, - STATE(3132), 1, - sym_num_lit, - ACTIONS(7503), 2, - sym__ws, - sym_comment, - STATE(2399), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [157084] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7454), 1, - aux_sym_num_lit_token1, - ACTIONS(7501), 1, - anon_sym_POUND_, - STATE(3083), 1, - sym_num_lit, - ACTIONS(7503), 2, - sym__ws, - sym_comment, - STATE(2399), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [157106] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7450), 1, - aux_sym_num_lit_token1, - ACTIONS(7501), 1, - anon_sym_POUND_, - STATE(2576), 1, - sym_num_lit, - ACTIONS(7653), 2, - sym__ws, - sym_comment, - STATE(2557), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [157128] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7450), 1, - aux_sym_num_lit_token1, - ACTIONS(7501), 1, - anon_sym_POUND_, - STATE(2575), 1, - sym_num_lit, - ACTIONS(7655), 2, - sym__ws, - sym_comment, - STATE(2572), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [157150] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7450), 1, - aux_sym_num_lit_token1, - ACTIONS(7501), 1, - anon_sym_POUND_, - STATE(2570), 1, - sym_num_lit, - ACTIONS(7503), 2, - sym__ws, - sym_comment, - STATE(2399), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [157172] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3078), 1, + STATE(2962), 1, sym_num_lit, - ACTIONS(7657), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2551), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157194] = 6, + [165526] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2568), 1, + STATE(2960), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157216] = 6, + [165548] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3077), 1, + STATE(2957), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9346), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2794), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157238] = 6, + [165570] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3073), 1, + STATE(2956), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157260] = 6, + [165592] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3067), 1, + STATE(2944), 1, sym_num_lit, - ACTIONS(7659), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2552), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157282] = 6, + [165614] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3066), 1, + STATE(3020), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9348), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2945), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157304] = 6, + [165636] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3063), 1, + STATE(2954), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157326] = 6, + [165658] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3053), 1, + STATE(2951), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157348] = 6, + [165680] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3049), 1, + STATE(3079), 1, sym_num_lit, - ACTIONS(7661), 2, + ACTIONS(9350), 2, sym__ws, sym_comment, - STATE(2558), 3, + STATE(2797), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157370] = 6, + [165702] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3048), 1, + STATE(3091), 1, sym_num_lit, - ACTIONS(7663), 2, + ACTIONS(9352), 2, sym__ws, sym_comment, - STATE(2559), 3, + STATE(2798), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157392] = 6, + [165724] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3047), 1, + STATE(3092), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157414] = 6, + [165746] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3025), 1, + STATE(3094), 1, sym_num_lit, - ACTIONS(7665), 2, + ACTIONS(9354), 2, sym__ws, sym_comment, - STATE(2561), 3, + STATE(2800), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157436] = 6, + [165768] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3017), 1, + STATE(3104), 1, sym_num_lit, - ACTIONS(7667), 2, + ACTIONS(9356), 2, sym__ws, sym_comment, - STATE(2562), 3, + STATE(2803), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157458] = 6, + [165790] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3016), 1, + STATE(3026), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157480] = 6, + [165812] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3009), 1, + STATE(3220), 1, sym_num_lit, - ACTIONS(7669), 2, + ACTIONS(9358), 2, sym__ws, sym_comment, - STATE(2563), 3, + STATE(2804), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157502] = 6, + [165834] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2567), 1, + STATE(3221), 1, sym_num_lit, - ACTIONS(7671), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2580), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157524] = 6, + [165856] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2565), 1, + STATE(3247), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9360), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2807), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157546] = 6, + [165878] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2564), 1, + STATE(3212), 1, sym_num_lit, - ACTIONS(7673), 2, + ACTIONS(9362), 2, sym__ws, sym_comment, - STATE(2581), 3, + STATE(2810), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157568] = 6, + [165900] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3008), 1, + STATE(3266), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9364), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2812), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157590] = 6, + [165922] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2996), 1, + STATE(3267), 1, sym_num_lit, - ACTIONS(7675), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2566), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157612] = 6, + [165944] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2995), 1, + STATE(3272), 1, sym_num_lit, - ACTIONS(7677), 2, + ACTIONS(9366), 2, sym__ws, sym_comment, - STATE(2569), 3, + STATE(2816), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157634] = 6, + [165966] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2994), 1, + STATE(3329), 1, sym_num_lit, - ACTIONS(7679), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2574), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157656] = 6, + [165988] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2989), 1, + STATE(3333), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157678] = 6, + [166010] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2987), 1, + STATE(3338), 1, sym_num_lit, - ACTIONS(7681), 2, + ACTIONS(9368), 2, sym__ws, sym_comment, - STATE(2578), 3, + STATE(2818), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157700] = 6, + [166032] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2560), 1, + STATE(3339), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157722] = 6, + [166054] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2556), 1, + STATE(3342), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157744] = 6, + [166076] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2549), 1, + STATE(3346), 1, sym_num_lit, - ACTIONS(7683), 2, + ACTIONS(9370), 2, sym__ws, sym_comment, - STATE(2487), 3, + STATE(2819), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157766] = 6, + [166098] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2979), 1, + STATE(3347), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157788] = 6, + [166120] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2973), 1, + STATE(3349), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157810] = 6, + [166142] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3064), 1, + STATE(3352), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157832] = 6, + [166164] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2961), 1, + STATE(3355), 1, sym_num_lit, - ACTIONS(7685), 2, + ACTIONS(9372), 2, sym__ws, sym_comment, - STATE(2583), 3, + STATE(2821), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157854] = 6, + [166186] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2960), 1, + STATE(3356), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9374), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2822), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157876] = 6, + [166208] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2957), 1, + STATE(3357), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157898] = 6, + [166230] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2954), 1, + STATE(3359), 1, sym_num_lit, - ACTIONS(7687), 2, + ACTIONS(9376), 2, sym__ws, sym_comment, - STATE(2584), 3, + STATE(2824), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157920] = 6, + [166252] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2952), 1, + STATE(3360), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9378), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2825), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157942] = 6, + [166274] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2947), 1, + STATE(3361), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157964] = 6, + [166296] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2943), 1, + STATE(3363), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9380), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2826), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157986] = 6, + [166318] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2940), 1, + STATE(3364), 1, sym_num_lit, - ACTIONS(7689), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2587), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158008] = 6, + [166340] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2939), 1, + STATE(3371), 1, sym_num_lit, - ACTIONS(7691), 2, + ACTIONS(9382), 2, sym__ws, sym_comment, - STATE(2588), 3, + STATE(2829), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158030] = 6, + [166362] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2938), 1, + STATE(3372), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9384), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2832), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158052] = 6, + [166384] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2936), 1, + STATE(3373), 1, sym_num_lit, - ACTIONS(7693), 2, + ACTIONS(9386), 2, sym__ws, sym_comment, - STATE(2590), 3, + STATE(2834), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158074] = 6, + [166406] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2935), 1, + STATE(3374), 1, sym_num_lit, - ACTIONS(7695), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2591), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158096] = 6, + [166428] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3058), 1, + STATE(3379), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9388), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2838), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158118] = 6, + [166450] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2934), 1, + STATE(3399), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158140] = 6, + [166472] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2932), 1, + STATE(3395), 1, sym_num_lit, - ACTIONS(7697), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2592), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158162] = 6, + [166494] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2931), 1, + STATE(3384), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9390), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2840), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158184] = 6, + [166516] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2925), 1, + STATE(3383), 1, sym_num_lit, - ACTIONS(7699), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2595), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158206] = 6, + [166538] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2924), 1, + STATE(3380), 1, sym_num_lit, - ACTIONS(7701), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2599), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158228] = 6, + [166560] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2923), 1, + STATE(3376), 1, sym_num_lit, - ACTIONS(7703), 2, + ACTIONS(9392), 2, sym__ws, sym_comment, - STATE(2601), 3, + STATE(2841), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158250] = 6, + [166582] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2922), 1, + STATE(3370), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158272] = 6, + [166604] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2920), 1, + STATE(3382), 1, sym_num_lit, - ACTIONS(7705), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2605), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158294] = 6, + [166626] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2413), 1, + STATE(3324), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158316] = 6, + [166648] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2547), 1, + STATE(3321), 1, sym_num_lit, - ACTIONS(7707), 2, + ACTIONS(9394), 2, sym__ws, sym_comment, - STATE(2612), 3, + STATE(2843), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158338] = 6, + [166670] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2546), 1, + STATE(3320), 1, sym_num_lit, - ACTIONS(7709), 2, + ACTIONS(9396), 2, sym__ws, sym_comment, - STATE(2614), 3, + STATE(2844), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158360] = 6, + [166692] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2545), 1, + STATE(3319), 1, sym_num_lit, - ACTIONS(7711), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2616), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158382] = 9, + [166714] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(7036), 1, - anon_sym_POUNDC, - ACTIONS(7038), 1, - anon_sym_POUNDc, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2304), 1, - aux_sym_list_lit_repeat1, - [158410] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2541), 1, + STATE(3317), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9398), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2846), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158432] = 6, + [166736] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2641), 1, + STATE(3315), 1, sym_num_lit, - ACTIONS(7713), 2, + ACTIONS(9400), 2, sym__ws, sym_comment, - STATE(2642), 3, + STATE(2847), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158454] = 6, + [166758] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2539), 1, + STATE(3314), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158476] = 6, + [166780] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2538), 1, + STATE(3309), 1, sym_num_lit, - ACTIONS(7715), 2, + ACTIONS(9402), 2, sym__ws, sym_comment, - STATE(2618), 3, + STATE(2848), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158498] = 6, + [166802] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2536), 1, + STATE(3307), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158520] = 6, + [166824] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2535), 1, + STATE(3299), 1, sym_num_lit, - ACTIONS(7717), 2, + ACTIONS(9404), 2, sym__ws, sym_comment, - STATE(2619), 3, + STATE(2851), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158542] = 6, + [166846] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2531), 1, + STATE(3298), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9406), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2854), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158564] = 6, + [166868] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2528), 1, + STATE(3297), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9408), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2856), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158586] = 6, + [166890] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2524), 1, + STATE(3296), 1, sym_num_lit, - ACTIONS(7719), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2621), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158608] = 6, + [166912] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2522), 1, + STATE(3288), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9410), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2860), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158630] = 6, + [166934] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2522), 1, + STATE(3204), 1, sym_num_lit, - ACTIONS(7721), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2625), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158652] = 6, + [166956] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2521), 1, + STATE(3257), 1, sym_num_lit, - ACTIONS(7723), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2626), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158674] = 6, + [166978] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2520), 1, + STATE(3253), 1, sym_num_lit, - ACTIONS(7725), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2628), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158696] = 6, + [167000] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2518), 1, + STATE(3246), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9412), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2863), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158718] = 6, + [167022] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2516), 1, + STATE(3245), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158740] = 6, + [167044] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2515), 1, + STATE(3243), 1, sym_num_lit, - ACTIONS(7727), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2630), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158762] = 6, + [167066] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2513), 1, + STATE(3240), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9414), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2864), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158784] = 6, + [167088] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2512), 1, + STATE(3239), 1, sym_num_lit, - ACTIONS(7729), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2631), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158806] = 6, + [167110] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2508), 1, + STATE(3235), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158828] = 6, + [167132] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2505), 1, + STATE(3232), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158850] = 6, + [167154] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2500), 1, + STATE(3228), 1, sym_num_lit, - ACTIONS(7731), 2, + ACTIONS(9416), 2, sym__ws, sym_comment, - STATE(2633), 3, + STATE(2866), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158872] = 6, + [167176] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2498), 1, + STATE(3223), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9418), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2867), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158894] = 6, + [167198] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2498), 1, + STATE(3222), 1, sym_num_lit, - ACTIONS(7733), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2637), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158916] = 6, + [167220] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2494), 1, + STATE(3216), 1, sym_num_lit, - ACTIONS(7735), 2, + ACTIONS(9420), 2, sym__ws, sym_comment, - STATE(2638), 3, + STATE(2869), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158938] = 6, + [167242] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2486), 1, + STATE(3214), 1, sym_num_lit, - ACTIONS(7737), 2, + ACTIONS(9422), 2, sym__ws, sym_comment, - STATE(2639), 3, + STATE(2870), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158960] = 6, + [167264] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2473), 1, + STATE(3213), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [158982] = 6, + [167286] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2471), 1, + STATE(3206), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9424), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2871), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159004] = 6, + [167308] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2468), 1, + STATE(3198), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159026] = 6, + [167330] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2464), 1, + STATE(3180), 1, sym_num_lit, - ACTIONS(7739), 2, + ACTIONS(9426), 2, sym__ws, sym_comment, - STATE(2647), 3, + STATE(2874), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159048] = 6, + [167352] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2873), 1, + STATE(3179), 1, sym_num_lit, - ACTIONS(7741), 2, + ACTIONS(9428), 2, sym__ws, sym_comment, - STATE(2663), 3, + STATE(2877), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159070] = 6, + [167374] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2664), 1, + STATE(3226), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159092] = 6, + [167396] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2664), 1, + STATE(3176), 1, sym_num_lit, - ACTIONS(7743), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2667), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159114] = 6, + [167418] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2693), 1, + STATE(2980), 1, sym_num_lit, - ACTIONS(7745), 2, + ACTIONS(9430), 2, sym__ws, sym_comment, - STATE(2668), 3, + STATE(2883), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159136] = 6, + [167440] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, - aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2670), 1, - sym_num_lit, - ACTIONS(7747), 2, + ACTIONS(9432), 1, + anon_sym_cl, + ACTIONS(9434), 1, + anon_sym_into, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2674), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159158] = 6, + [167462] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2460), 1, + STATE(3305), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159180] = 6, + [167484] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2457), 1, + STATE(2950), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159202] = 6, + [167506] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2454), 1, + STATE(3284), 1, sym_num_lit, - ACTIONS(7749), 2, + ACTIONS(9436), 2, sym__ws, sym_comment, - STATE(2649), 3, + STATE(2886), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159224] = 6, + [167528] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2452), 1, + STATE(3283), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159246] = 6, + [167550] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2452), 1, + STATE(3279), 1, sym_num_lit, - ACTIONS(7751), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2653), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159268] = 6, + [167572] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2451), 1, + STATE(3275), 1, sym_num_lit, - ACTIONS(7753), 2, + ACTIONS(9438), 2, sym__ws, sym_comment, - STATE(2654), 3, + STATE(2887), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159290] = 6, + [167594] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2450), 1, + STATE(3274), 1, sym_num_lit, - ACTIONS(7755), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2656), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159312] = 6, + [167616] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2448), 1, + STATE(3229), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159334] = 6, + [167638] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2446), 1, + STATE(2977), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159356] = 6, + [167660] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2445), 1, + STATE(2987), 1, sym_num_lit, - ACTIONS(7757), 2, + ACTIONS(9440), 2, sym__ws, sym_comment, - STATE(2658), 3, + STATE(2889), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159378] = 6, + [167682] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2443), 1, + STATE(2989), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9442), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2890), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159400] = 6, + [167704] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2442), 1, + STATE(2990), 1, sym_num_lit, - ACTIONS(7759), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2659), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159422] = 6, + [167726] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2438), 1, + STATE(2993), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9444), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159444] = 6, + [167748] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2435), 1, + STATE(2994), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9446), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2893), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159466] = 6, + [167770] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2432), 1, + STATE(2997), 1, sym_num_lit, - ACTIONS(7761), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2661), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159488] = 6, + [167792] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2430), 1, + STATE(3002), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9448), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159510] = 6, + [167814] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2430), 1, + STATE(3003), 1, sym_num_lit, - ACTIONS(7763), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2671), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159532] = 6, + [167836] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2834), 1, + STATE(3006), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9450), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2897), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159554] = 6, + [167858] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2766), 1, + STATE(3007), 1, sym_num_lit, - ACTIONS(7765), 2, + ACTIONS(9452), 2, sym__ws, sym_comment, - STATE(2694), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159576] = 6, + [167880] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2429), 1, + STATE(3008), 1, sym_num_lit, - ACTIONS(7767), 2, + ACTIONS(9454), 2, sym__ws, sym_comment, - STATE(2676), 3, + STATE(2902), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159598] = 6, + [167902] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2428), 1, + STATE(3009), 1, sym_num_lit, - ACTIONS(7769), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2680), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159620] = 6, + [167924] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2695), 1, + STATE(3013), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9456), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2906), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159642] = 6, + [167946] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2698), 1, + STATE(3113), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159664] = 6, + [167968] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2699), 1, + STATE(3160), 1, sym_num_lit, - ACTIONS(7771), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2700), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159686] = 6, + [167990] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2775), 1, + STATE(3169), 1, sym_num_lit, - ACTIONS(7773), 2, + ACTIONS(9458), 2, sym__ws, sym_comment, - STATE(2701), 3, + STATE(2908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159708] = 6, + [168012] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2426), 1, + STATE(3170), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159730] = 6, + [168034] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3045), 1, + STATE(3173), 1, sym_num_lit, - ACTIONS(7775), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2585), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159752] = 6, + [168056] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3044), 1, + STATE(3178), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9460), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2909), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159774] = 6, + [168078] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2702), 1, + STATE(3181), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159796] = 6, + [168100] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2703), 1, + STATE(3183), 1, sym_num_lit, - ACTIONS(7777), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2704), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159818] = 6, + [168122] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2424), 1, + STATE(3186), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159840] = 6, + [168144] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(3041), 1, + STATE(3189), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9462), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2911), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159862] = 6, + [168166] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2423), 1, + STATE(3190), 1, sym_num_lit, - ACTIONS(7779), 2, - sym__ws, - sym_comment, - STATE(2684), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [159884] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7501), 1, - anon_sym_POUND_, - ACTIONS(7781), 1, - anon_sym_cl, - ACTIONS(7783), 1, - anon_sym_into, - ACTIONS(7503), 2, + ACTIONS(9464), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2912), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159906] = 6, + [168188] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2421), 1, + STATE(3193), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159928] = 6, + [168210] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2969), 1, + STATE(3195), 1, sym_num_lit, - ACTIONS(7785), 2, + ACTIONS(9466), 2, sym__ws, sym_comment, - STATE(2598), 3, + STATE(2914), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159950] = 6, + [168232] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2968), 1, + STATE(3196), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9468), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2915), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159972] = 6, + [168254] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2420), 1, + STATE(3098), 1, sym_num_lit, - ACTIONS(7787), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2607), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [159994] = 6, + [168276] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2416), 1, + STATE(3200), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9470), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2916), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160016] = 6, + [168298] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2950), 1, + STATE(3201), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160038] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7789), 1, - aux_sym_num_lit_token2, - ACTIONS(5581), 7, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [160054] = 6, + [168320] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2410), 1, + STATE(3205), 1, sym_num_lit, - ACTIONS(7791), 2, + ACTIONS(9472), 2, sym__ws, sym_comment, - STATE(2688), 3, + STATE(2919), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160076] = 6, + [168342] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2408), 1, + STATE(3208), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9474), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2922), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160098] = 6, + [168364] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2408), 1, + STATE(3209), 1, sym_num_lit, - ACTIONS(7793), 2, + ACTIONS(9476), 2, sym__ws, sym_comment, - STATE(2692), 3, + STATE(2924), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160120] = 6, + [168386] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2407), 1, + STATE(3210), 1, sym_num_lit, - ACTIONS(7795), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2696), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160142] = 6, + [168408] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2406), 1, + STATE(3219), 1, sym_num_lit, - ACTIONS(7797), 2, + ACTIONS(9478), 2, sym__ws, sym_comment, - STATE(2706), 3, + STATE(2928), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160164] = 6, + [168430] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, - aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2404), 1, - sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9480), 1, + anon_sym_cl, + ACTIONS(9482), 1, + anon_sym_into, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160186] = 6, + [168452] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2786), 1, + STATE(2667), 1, sym_num_lit, - ACTIONS(7799), 2, + ACTIONS(9484), 2, sym__ws, sym_comment, - STATE(2697), 3, + STATE(2654), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160208] = 6, + [168474] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2754), 1, + STATE(2680), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160230] = 6, + [168496] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2750), 1, + STATE(3271), 1, sym_num_lit, - ACTIONS(7801), 2, + ACTIONS(9486), 2, sym__ws, sym_comment, - STATE(2717), 3, + STATE(2694), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160252] = 6, + [168518] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2466), 1, + STATE(2734), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9488), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2719), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160274] = 6, + [168540] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2836), 1, + STATE(2747), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160296] = 6, + [168562] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2844), 1, + STATE(2975), 1, sym_num_lit, - ACTIONS(7803), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2685), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160318] = 6, + [168584] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2847), 1, + STATE(3386), 1, sym_num_lit, - ACTIONS(7805), 2, + ACTIONS(9490), 2, sym__ws, sym_comment, - STATE(2682), 3, + STATE(2862), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160340] = 6, + [168606] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2681), 1, + STATE(3280), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160362] = 6, + [168628] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2853), 1, + STATE(2982), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160384] = 6, + [168650] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2854), 1, + STATE(3165), 1, sym_num_lit, - ACTIONS(7807), 2, + ACTIONS(9492), 2, sym__ws, sym_comment, - STATE(2677), 3, + STATE(2648), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160406] = 6, + [168672] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7454), 1, - aux_sym_num_lit_token1, - ACTIONS(7501), 1, - anon_sym_POUND_, - STATE(2861), 1, - sym_num_lit, - ACTIONS(7809), 2, + ACTIONS(9494), 1, + aux_sym_num_lit_token2, + ACTIONS(6138), 7, sym__ws, sym_comment, - STATE(2673), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [160428] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7450), 1, - aux_sym_num_lit_token1, - ACTIONS(7501), 1, anon_sym_POUND_, - STATE(2672), 1, - sym_num_lit, - ACTIONS(7503), 2, - sym__ws, - sym_comment, - STATE(2399), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [160450] = 6, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_COMMA, + [168688] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2467), 1, + STATE(2802), 1, sym_num_lit, - ACTIONS(7811), 2, + ACTIONS(9496), 2, sym__ws, sym_comment, - STATE(2708), 3, + STATE(2801), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160472] = 6, + [168710] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9133), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2475), 1, + STATE(2792), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160494] = 6, + [168732] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2476), 1, + STATE(3390), 1, sym_num_lit, - ACTIONS(7813), 2, + ACTIONS(9498), 2, sym__ws, sym_comment, - STATE(2709), 3, + STATE(2882), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160516] = 6, + [168754] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2480), 1, + STATE(3365), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160538] = 6, + [168776] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7450), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2483), 1, + STATE(3273), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9186), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160560] = 9, + [168798] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(7016), 1, - anon_sym_POUNDC, - ACTIONS(7018), 1, - anon_sym_POUNDc, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2304), 1, - aux_sym_list_lit_repeat1, - [160588] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(7166), 1, - anon_sym_POUNDC, - ACTIONS(7168), 1, - anon_sym_POUNDc, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2304), 1, - aux_sym_list_lit_repeat1, - [160616] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7501), 1, - anon_sym_POUND_, - ACTIONS(7815), 1, - anon_sym_cl, - ACTIONS(7817), 1, - anon_sym_into, - ACTIONS(7503), 2, - sym__ws, - sym_comment, - STATE(2399), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [160638] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(7186), 1, - anon_sym_POUNDC, - ACTIONS(7188), 1, - anon_sym_POUNDc, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2304), 1, - aux_sym_list_lit_repeat1, - [160666] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(7122), 1, - anon_sym_POUNDC, - ACTIONS(7124), 1, - anon_sym_POUNDc, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2304), 1, - aux_sym_list_lit_repeat1, - [160694] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(7082), 1, - anon_sym_POUNDC, - ACTIONS(7084), 1, - anon_sym_POUNDc, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2304), 1, - aux_sym_list_lit_repeat1, - [160722] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(6996), 1, - anon_sym_POUNDC, - ACTIONS(6998), 1, - anon_sym_POUNDc, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2304), 1, - aux_sym_list_lit_repeat1, - [160750] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7454), 1, + ACTIONS(9125), 1, aux_sym_num_lit_token1, - ACTIONS(7501), 1, + ACTIONS(9184), 1, anon_sym_POUND_, - STATE(2930), 1, + STATE(3278), 1, sym_num_lit, - ACTIONS(7503), 2, + ACTIONS(9500), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2693), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160772] = 9, + [168820] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(7102), 1, - anon_sym_POUNDC, - ACTIONS(7104), 1, - anon_sym_POUNDc, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2304), 1, - aux_sym_list_lit_repeat1, - [160800] = 9, + ACTIONS(9125), 1, + aux_sym_num_lit_token1, + ACTIONS(9184), 1, + anon_sym_POUND_, + STATE(3264), 1, + sym_num_lit, + ACTIONS(9186), 2, + sym__ws, + sym_comment, + STATE(2629), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [168842] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6160), 1, - anon_sym_CARET, - ACTIONS(6162), 1, - anon_sym_POUND_CARET, - ACTIONS(7206), 1, - anon_sym_POUNDC, - ACTIONS(7208), 1, - anon_sym_POUNDc, - STATE(2197), 1, - sym__metadata_lit, - STATE(2279), 1, - sym_old_meta_lit, - STATE(2281), 1, - sym_meta_lit, - STATE(2304), 1, - aux_sym_list_lit_repeat1, - [160828] = 5, + ACTIONS(9079), 1, + anon_sym_POUND_, + ACTIONS(9502), 1, + anon_sym_RPAREN, + ACTIONS(9099), 2, + sym__ws, + sym_comment, + STATE(2428), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [168861] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7819), 1, + ACTIONS(9506), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9504), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3306), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160847] = 5, + [168880] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7821), 1, + ACTIONS(9510), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9508), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2964), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160866] = 5, + [168899] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7823), 1, + ACTIONS(9512), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160885] = 5, + [168918] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7827), 1, + ACTIONS(9514), 1, anon_sym_RPAREN, - ACTIONS(7825), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2736), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160904] = 5, + [168937] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7829), 1, + ACTIONS(9518), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9516), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2965), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160923] = 5, + [168956] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7831), 1, + ACTIONS(9520), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160942] = 5, + [168975] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7835), 1, + ACTIONS(9524), 1, anon_sym_RPAREN, - ACTIONS(7833), 2, + ACTIONS(9522), 2, sym__ws, sym_comment, - STATE(2737), 3, + STATE(2966), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160961] = 5, + [168994] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7837), 1, + ACTIONS(9528), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9526), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160980] = 5, + [169013] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7841), 1, + ACTIONS(9530), 1, anon_sym_RPAREN, - ACTIONS(7839), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2738), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [160999] = 5, + [169032] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7845), 1, + ACTIONS(9532), 1, anon_sym_RPAREN, - ACTIONS(7843), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2739), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161018] = 5, + [169051] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7847), 1, + ACTIONS(9536), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9534), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2969), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161037] = 5, + [169070] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7849), 1, + ACTIONS(9538), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161056] = 5, + [169089] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7853), 1, + ACTIONS(9542), 1, anon_sym_RPAREN, - ACTIONS(7851), 2, + ACTIONS(9540), 2, sym__ws, sym_comment, - STATE(2741), 3, + STATE(2970), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161075] = 5, + [169108] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7855), 1, + ACTIONS(9546), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9544), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2971), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161094] = 5, + [169127] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7859), 1, + ACTIONS(9548), 1, anon_sym_RPAREN, - ACTIONS(7857), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2742), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161113] = 5, + [169146] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7863), 1, + ACTIONS(9550), 1, anon_sym_RPAREN, - ACTIONS(7861), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2743), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161132] = 5, + [169165] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7865), 1, + ACTIONS(9552), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161151] = 5, + [169184] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7867), 1, + ACTIONS(9554), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161170] = 5, + [169203] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7869), 1, + ACTIONS(9558), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9556), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2973), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161189] = 5, + [169222] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7871), 1, + ACTIONS(9560), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161208] = 5, + [169241] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7875), 1, + ACTIONS(9562), 1, anon_sym_RPAREN, - ACTIONS(7873), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2745), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161227] = 5, + [169260] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7877), 1, + ACTIONS(9564), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161246] = 5, + [169279] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7879), 1, + ACTIONS(9568), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9566), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161265] = 5, + [169298] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7881), 1, + ACTIONS(9570), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161284] = 5, + [169317] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7885), 1, + ACTIONS(9572), 1, anon_sym_RPAREN, - ACTIONS(7883), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2746), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161303] = 5, + [169336] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7887), 1, + ACTIONS(9576), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9574), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3289), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161322] = 5, + [169355] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7889), 1, + ACTIONS(9578), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161341] = 3, + [169374] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7891), 1, - aux_sym_num_lit_token2, - ACTIONS(5581), 6, + ACTIONS(9079), 1, + anon_sym_POUND_, + ACTIONS(9582), 1, + anon_sym_RPAREN, + ACTIONS(9580), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, - anon_sym_cl, - anon_sym_into, - [161356] = 5, + STATE(3285), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [169393] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7893), 1, - anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9584), 1, + anon_sym_RPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161375] = 5, + [169412] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7895), 1, - anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9586), 1, + anon_sym_RPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161394] = 5, + [169431] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7899), 1, + ACTIONS(9590), 1, anon_sym_RPAREN, - ACTIONS(7897), 2, + ACTIONS(9588), 2, sym__ws, sym_comment, - STATE(2929), 3, + STATE(3172), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161413] = 5, + [169450] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7903), 1, - anon_sym_LPAREN, - ACTIONS(7901), 2, + ACTIONS(9592), 1, + anon_sym_RPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2748), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161432] = 5, + [169469] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7907), 1, - anon_sym_LPAREN, - ACTIONS(7905), 2, + ACTIONS(9596), 1, + anon_sym_RPAREN, + ACTIONS(9594), 2, sym__ws, sym_comment, - STATE(2749), 3, + STATE(3402), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161451] = 5, + [169488] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7909), 1, + ACTIONS(9598), 1, anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161470] = 5, + [169507] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7913), 1, - anon_sym_RPAREN, - ACTIONS(7911), 2, + ACTIONS(9600), 1, + anon_sym_LPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2928), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161489] = 5, + [169526] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7915), 1, + ACTIONS(9602), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161508] = 5, + [169545] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7917), 1, + ACTIONS(9604), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161527] = 5, + [169564] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7921), 1, - anon_sym_LPAREN, - ACTIONS(7919), 2, + ACTIONS(9608), 1, + anon_sym_RPAREN, + ACTIONS(9606), 2, sym__ws, sym_comment, - STATE(2753), 3, + STATE(3282), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161546] = 5, + [169583] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7923), 1, + ACTIONS(9612), 1, anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9610), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2983), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161565] = 5, + [169602] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7925), 1, - anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9616), 1, + anon_sym_RPAREN, + ACTIONS(9614), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3277), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161584] = 5, + [169621] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7929), 1, - anon_sym_LPAREN, - ACTIONS(7927), 2, + ACTIONS(9620), 1, + anon_sym_RPAREN, + ACTIONS(9618), 2, sym__ws, sym_comment, - STATE(2758), 3, + STATE(3276), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161603] = 5, + [169640] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7933), 1, + ACTIONS(9624), 1, anon_sym_LPAREN, - ACTIONS(7931), 2, + ACTIONS(9622), 2, sym__ws, sym_comment, - STATE(2759), 3, + STATE(2984), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161622] = 5, + [169659] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7935), 1, - anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9626), 1, + anon_sym_RPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161641] = 5, + [169678] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7939), 1, - anon_sym_LPAREN, - ACTIONS(7937), 2, + ACTIONS(9630), 1, + anon_sym_RPAREN, + ACTIONS(9628), 2, sym__ws, sym_comment, - STATE(2762), 3, + STATE(3270), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161660] = 5, + [169697] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7941), 1, - anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9634), 1, + anon_sym_RPAREN, + ACTIONS(9632), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3311), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161679] = 5, + [169716] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7943), 1, + ACTIONS(9636), 1, anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161698] = 5, + [169735] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7947), 1, - anon_sym_RPAREN, - ACTIONS(7945), 2, + ACTIONS(9640), 1, + anon_sym_LPAREN, + ACTIONS(9638), 2, sym__ws, sym_comment, - STATE(2755), 3, + STATE(2995), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161717] = 5, + [169754] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7951), 1, - anon_sym_LPAREN, - ACTIONS(7949), 2, + ACTIONS(9644), 1, + anon_sym_RPAREN, + ACTIONS(9642), 2, sym__ws, sym_comment, - STATE(2764), 3, + STATE(2976), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161736] = 5, + [169773] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7955), 1, + ACTIONS(9646), 1, anon_sym_LPAREN, - ACTIONS(7953), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2765), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161755] = 5, + [169792] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7957), 1, + ACTIONS(9648), 1, anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161774] = 5, + [169811] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7961), 1, + ACTIONS(9652), 1, anon_sym_LPAREN, - ACTIONS(7959), 2, + ACTIONS(9650), 2, sym__ws, sym_comment, - STATE(2769), 3, + STATE(2998), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161793] = 5, + [169830] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7963), 1, - anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9654), 1, + anon_sym_RPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161812] = 5, + [169849] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7967), 1, + ACTIONS(9658), 1, anon_sym_RPAREN, - ACTIONS(7965), 2, + ACTIONS(9656), 2, sym__ws, sym_comment, - STATE(2733), 3, + STATE(2985), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161831] = 5, + [169868] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7971), 1, + ACTIONS(9662), 1, anon_sym_RPAREN, - ACTIONS(7969), 2, + ACTIONS(9660), 2, sym__ws, sym_comment, - STATE(2731), 3, + STATE(2986), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161850] = 5, + [169887] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7975), 1, + ACTIONS(9664), 1, anon_sym_RPAREN, - ACTIONS(7973), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2730), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161869] = 5, + [169906] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7979), 1, + ACTIONS(9666), 1, anon_sym_RPAREN, - ACTIONS(7977), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2852), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161888] = 5, + [169925] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7981), 1, + ACTIONS(9670), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9668), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2992), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161907] = 5, + [169944] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7985), 1, + ACTIONS(9674), 1, anon_sym_RPAREN, - ACTIONS(7983), 2, + ACTIONS(9672), 2, sym__ws, sym_comment, - STATE(2781), 3, + STATE(3001), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161926] = 5, + [169963] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7989), 1, + ACTIONS(9678), 1, anon_sym_RPAREN, - ACTIONS(7987), 2, + ACTIONS(9676), 2, sym__ws, sym_comment, - STATE(2727), 3, + STATE(3004), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161945] = 5, + [169982] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7993), 1, + ACTIONS(9682), 1, anon_sym_RPAREN, - ACTIONS(7991), 2, + ACTIONS(9680), 2, sym__ws, sym_comment, - STATE(2725), 3, + STATE(3005), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161964] = 5, + [170001] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7997), 1, + ACTIONS(9684), 1, anon_sym_RPAREN, - ACTIONS(7995), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2724), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [161983] = 5, + [170020] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(7999), 1, - anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9688), 1, + anon_sym_LPAREN, + ACTIONS(9686), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2999), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162002] = 5, + [170039] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8003), 1, - anon_sym_RPAREN, - ACTIONS(8001), 2, + ACTIONS(9690), 1, + anon_sym_LPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2787), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162021] = 5, + [170058] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8007), 1, + ACTIONS(9694), 1, anon_sym_RPAREN, - ACTIONS(8005), 2, + ACTIONS(9692), 2, sym__ws, sym_comment, - STATE(2788), 3, + STATE(3010), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162040] = 5, + [170077] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8011), 1, + ACTIONS(9698), 1, anon_sym_RPAREN, - ACTIONS(8009), 2, + ACTIONS(9696), 2, sym__ws, sym_comment, - STATE(2791), 3, + STATE(3265), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162059] = 5, + [170096] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8015), 1, - anon_sym_RPAREN, - ACTIONS(8013), 2, + ACTIONS(9702), 1, + anon_sym_LPAREN, + ACTIONS(9700), 2, sym__ws, sym_comment, - STATE(2795), 3, + STATE(3012), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162078] = 5, + [170115] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8019), 1, - anon_sym_RPAREN, - ACTIONS(8017), 2, + ACTIONS(9704), 1, + anon_sym_LPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2874), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162097] = 5, + [170134] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8021), 1, + ACTIONS(9708), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9706), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3021), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162116] = 5, + [170153] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8023), 1, + ACTIONS(9712), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9710), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3260), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162135] = 5, + [170172] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8027), 1, + ACTIONS(9716), 1, anon_sym_RPAREN, - ACTIONS(8025), 2, + ACTIONS(9714), 2, sym__ws, sym_comment, - STATE(2799), 3, + STATE(3262), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162154] = 5, + [170191] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8031), 1, + ACTIONS(9720), 1, anon_sym_RPAREN, - ACTIONS(8029), 2, + ACTIONS(9718), 2, sym__ws, sym_comment, - STATE(2800), 3, + STATE(3197), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162173] = 5, + [170210] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8033), 1, + ACTIONS(9722), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162192] = 5, + [170229] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8037), 1, + ACTIONS(9726), 1, anon_sym_RPAREN, - ACTIONS(8035), 2, + ACTIONS(9724), 2, sym__ws, sym_comment, - STATE(2802), 3, + STATE(3027), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162211] = 5, + [170248] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8041), 1, + ACTIONS(9730), 1, anon_sym_RPAREN, - ACTIONS(8039), 2, + ACTIONS(9728), 2, sym__ws, sym_comment, - STATE(2803), 3, + STATE(3028), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162230] = 5, + [170267] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8045), 1, + ACTIONS(9734), 1, anon_sym_RPAREN, - ACTIONS(8043), 2, + ACTIONS(9732), 2, sym__ws, sym_comment, - STATE(2805), 3, + STATE(3031), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162249] = 5, + [170286] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8047), 1, + ACTIONS(9738), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9736), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3035), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162268] = 5, + [170305] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8051), 1, + ACTIONS(9742), 1, anon_sym_RPAREN, - ACTIONS(8049), 2, + ACTIONS(9740), 2, sym__ws, sym_comment, - STATE(2808), 3, + STATE(2952), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162287] = 5, + [170324] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8055), 1, + ACTIONS(9744), 1, anon_sym_RPAREN, - ACTIONS(8053), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2809), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162306] = 5, + [170343] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8059), 1, + ACTIONS(9746), 1, anon_sym_RPAREN, - ACTIONS(8057), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2811), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162325] = 5, + [170362] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8061), 1, + ACTIONS(9750), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9748), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3039), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162344] = 5, + [170381] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8063), 1, + ACTIONS(9754), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9752), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3040), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162363] = 5, + [170400] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8067), 1, + ACTIONS(9756), 1, anon_sym_RPAREN, - ACTIONS(8065), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2814), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162382] = 5, + [170419] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8069), 1, + ACTIONS(9760), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9758), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3042), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162401] = 5, + [170438] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8071), 1, + ACTIONS(9764), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9762), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3043), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162420] = 5, + [170457] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8075), 1, + ACTIONS(9768), 1, anon_sym_RPAREN, - ACTIONS(8073), 2, + ACTIONS(9766), 2, sym__ws, sym_comment, - STATE(2815), 3, + STATE(3045), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162439] = 5, + [170476] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8077), 1, + ACTIONS(9770), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162458] = 5, + [170495] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8081), 1, + ACTIONS(9774), 1, anon_sym_RPAREN, - ACTIONS(8079), 2, + ACTIONS(9772), 2, sym__ws, sym_comment, - STATE(2816), 3, + STATE(3048), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162477] = 5, + [170514] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8085), 1, + ACTIONS(9778), 1, anon_sym_RPAREN, - ACTIONS(8083), 2, + ACTIONS(9776), 2, sym__ws, sym_comment, - STATE(2817), 3, + STATE(3049), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162496] = 5, + [170533] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8087), 1, + ACTIONS(9782), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9780), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3051), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162515] = 5, + [170552] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8089), 1, + ACTIONS(9784), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162534] = 5, + [170571] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8093), 1, + ACTIONS(9786), 1, anon_sym_RPAREN, - ACTIONS(8091), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2819), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162553] = 5, + [170590] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8095), 1, + ACTIONS(9790), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9788), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3054), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162572] = 5, + [170609] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8099), 1, + ACTIONS(9792), 1, anon_sym_RPAREN, - ACTIONS(8097), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2820), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162591] = 5, + [170628] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8103), 1, + ACTIONS(9794), 1, anon_sym_RPAREN, - ACTIONS(8101), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2821), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162610] = 5, + [170647] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8105), 1, + ACTIONS(9798), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9796), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3055), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162629] = 5, + [170666] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8107), 1, + ACTIONS(9800), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162648] = 5, + [170685] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8109), 1, + ACTIONS(9804), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9802), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3056), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162667] = 5, + [170704] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8111), 1, + ACTIONS(9808), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9806), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3057), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162686] = 5, + [170723] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8115), 1, + ACTIONS(9810), 1, anon_sym_RPAREN, - ACTIONS(8113), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2823), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162705] = 5, + [170742] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8117), 1, + ACTIONS(9812), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162724] = 5, + [170761] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8119), 1, + ACTIONS(9816), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9814), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3059), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162743] = 5, + [170780] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8121), 1, + ACTIONS(9818), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162762] = 5, + [170799] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8125), 1, + ACTIONS(9822), 1, anon_sym_RPAREN, - ACTIONS(8123), 2, + ACTIONS(9820), 2, sym__ws, sym_comment, - STATE(2824), 3, + STATE(3060), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162781] = 5, + [170818] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8127), 1, + ACTIONS(9826), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9824), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3061), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162800] = 5, + [170837] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8129), 1, + ACTIONS(9828), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162819] = 5, + [170856] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8131), 1, + ACTIONS(9830), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162838] = 5, + [170875] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8135), 1, + ACTIONS(9832), 1, anon_sym_RPAREN, - ACTIONS(8133), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2722), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162857] = 5, + [170894] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8139), 1, + ACTIONS(9834), 1, anon_sym_RPAREN, - ACTIONS(8137), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3059), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162876] = 5, + [170913] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8141), 1, - anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9838), 1, + anon_sym_RPAREN, + ACTIONS(9836), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3063), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162895] = 5, + [170932] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8145), 1, - anon_sym_LPAREN, - ACTIONS(8143), 2, + ACTIONS(9840), 1, + anon_sym_RPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2771), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162914] = 5, + [170951] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8147), 1, + ACTIONS(9842), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162933] = 5, + [170970] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8151), 1, - anon_sym_LPAREN, - ACTIONS(8149), 2, + ACTIONS(9844), 1, + anon_sym_RPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2828), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162952] = 5, + [170989] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8153), 1, - anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9848), 1, + anon_sym_RPAREN, + ACTIONS(9846), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3064), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162971] = 5, + [171008] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8157), 1, - anon_sym_LPAREN, - ACTIONS(8155), 2, + ACTIONS(9850), 1, + anon_sym_RPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2832), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162990] = 5, + [171027] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8161), 1, + ACTIONS(9852), 1, anon_sym_RPAREN, - ACTIONS(8159), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2756), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163009] = 5, + [171046] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8163), 1, + ACTIONS(9854), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163028] = 5, + [171065] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8167), 1, - anon_sym_RPAREN, - ACTIONS(8165), 2, + ACTIONS(9858), 1, + anon_sym_LPAREN, + ACTIONS(9856), 2, sym__ws, sym_comment, - STATE(2944), 3, + STATE(3281), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163047] = 5, + [171084] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8171), 1, - anon_sym_RPAREN, - ACTIONS(8169), 2, + ACTIONS(9862), 1, + anon_sym_LPAREN, + ACTIONS(9860), 2, sym__ws, sym_comment, - STATE(2776), 3, + STATE(3287), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163066] = 5, + [171103] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8173), 1, - anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9864), 1, + anon_sym_LPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163085] = 5, + [171122] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8177), 1, - anon_sym_RPAREN, - ACTIONS(8175), 2, + ACTIONS(9868), 1, + anon_sym_LPAREN, + ACTIONS(9866), 2, sym__ws, sym_comment, - STATE(2825), 3, + STATE(3016), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163104] = 5, + [171141] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8181), 1, - anon_sym_RPAREN, - ACTIONS(8179), 2, + ACTIONS(9872), 1, + anon_sym_LPAREN, + ACTIONS(9870), 2, sym__ws, sym_comment, - STATE(2830), 3, + STATE(3068), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163123] = 5, + [171160] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8183), 1, + ACTIONS(9874), 1, anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163142] = 5, + [171179] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8187), 1, - anon_sym_RPAREN, - ACTIONS(8185), 2, + ACTIONS(9878), 1, + anon_sym_LPAREN, + ACTIONS(9876), 2, sym__ws, sym_comment, - STATE(2835), 3, + STATE(3071), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163161] = 5, + [171198] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8189), 1, - anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9880), 1, + anon_sym_LPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163180] = 5, + [171217] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8193), 1, - anon_sym_RPAREN, - ACTIONS(8191), 2, + ACTIONS(9882), 1, + anon_sym_LPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2948), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163199] = 5, + [171236] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8195), 1, + ACTIONS(9886), 1, anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9884), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3073), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163218] = 5, + [171255] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8199), 1, + ACTIONS(9890), 1, anon_sym_LPAREN, - ACTIONS(8197), 2, + ACTIONS(9888), 2, sym__ws, sym_comment, - STATE(2841), 3, + STATE(3074), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163237] = 5, + [171274] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8203), 1, - anon_sym_RPAREN, - ACTIONS(8201), 2, + ACTIONS(9892), 1, + anon_sym_LPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2959), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163256] = 5, + [171293] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8207), 1, + ACTIONS(9896), 1, anon_sym_LPAREN, - ACTIONS(8205), 2, + ACTIONS(9894), 2, sym__ws, sym_comment, - STATE(2845), 3, + STATE(3077), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163275] = 5, + [171312] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8209), 1, - anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9900), 1, + anon_sym_RPAREN, + ACTIONS(9898), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2961), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163294] = 5, + [171331] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8213), 1, + ACTIONS(9902), 1, anon_sym_LPAREN, - ACTIONS(8211), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2849), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163313] = 5, + [171350] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8217), 1, - anon_sym_RPAREN, - ACTIONS(8215), 2, + ACTIONS(9904), 1, + anon_sym_LPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2843), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163332] = 5, + [171369] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8219), 1, - anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9908), 1, + anon_sym_LPAREN, + ACTIONS(9906), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3080), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163351] = 5, + [171388] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8223), 1, + ACTIONS(9910), 1, anon_sym_RPAREN, - ACTIONS(8221), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3039), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163370] = 5, + [171407] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8227), 1, - anon_sym_RPAREN, - ACTIONS(8225), 2, + ACTIONS(9914), 1, + anon_sym_LPAREN, + ACTIONS(9912), 2, sym__ws, sym_comment, - STATE(3040), 3, + STATE(3081), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163389] = 5, + [171426] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8229), 1, + ACTIONS(9916), 1, anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163408] = 5, + [171445] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8231), 1, + ACTIONS(9920), 1, anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9918), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3085), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163427] = 5, + [171464] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8235), 1, + ACTIONS(9922), 1, anon_sym_LPAREN, - ACTIONS(8233), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2855), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163446] = 5, + [171483] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8239), 1, + ACTIONS(9924), 1, anon_sym_LPAREN, - ACTIONS(8237), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2856), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163465] = 5, + [171502] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8241), 1, + ACTIONS(9926), 1, anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163484] = 5, + [171521] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8245), 1, + ACTIONS(9930), 1, anon_sym_LPAREN, - ACTIONS(8243), 2, + ACTIONS(9928), 2, sym__ws, sym_comment, - STATE(2859), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163503] = 5, + [171540] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8249), 1, + ACTIONS(9934), 1, anon_sym_RPAREN, - ACTIONS(8247), 2, + ACTIONS(9932), 2, sym__ws, sym_comment, - STATE(3043), 3, + STATE(2959), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163522] = 5, + [171559] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8251), 1, - anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9938), 1, + anon_sym_RPAREN, + ACTIONS(9936), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2958), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163541] = 5, + [171578] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8253), 1, - anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9940), 1, + anon_sym_RPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163560] = 5, + [171597] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8257), 1, - anon_sym_LPAREN, - ACTIONS(8255), 2, + ACTIONS(9944), 1, + anon_sym_RPAREN, + ACTIONS(9942), 2, sym__ws, sym_comment, - STATE(2862), 3, + STATE(2955), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163579] = 5, + [171616] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8261), 1, + ACTIONS(9948), 1, anon_sym_LPAREN, - ACTIONS(8259), 2, + ACTIONS(9946), 2, sym__ws, sym_comment, - STATE(2863), 3, + STATE(3089), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163598] = 5, + [171635] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8263), 1, + ACTIONS(9950), 1, anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163617] = 5, + [171654] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8267), 1, + ACTIONS(9954), 1, anon_sym_LPAREN, - ACTIONS(8265), 2, + ACTIONS(9952), 2, sym__ws, sym_comment, - STATE(2866), 3, + STATE(3096), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163636] = 5, + [171673] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8269), 1, - anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9958), 1, + anon_sym_RPAREN, + ACTIONS(9956), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3185), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163655] = 5, + [171692] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8271), 1, - anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9962), 1, + anon_sym_RPAREN, + ACTIONS(9960), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2981), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163674] = 5, + [171711] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8275), 1, + ACTIONS(9964), 1, anon_sym_LPAREN, - ACTIONS(8273), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163693] = 5, + [171730] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8279), 1, - anon_sym_RPAREN, - ACTIONS(8277), 2, + ACTIONS(9966), 1, + anon_sym_LPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2875), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163712] = 5, + [171749] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8283), 1, + ACTIONS(9970), 1, anon_sym_LPAREN, - ACTIONS(8281), 2, + ACTIONS(9968), 2, sym__ws, sym_comment, - STATE(2869), 3, + STATE(3100), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163731] = 5, + [171768] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8287), 1, - anon_sym_RPAREN, - ACTIONS(8285), 2, + ACTIONS(9974), 1, + anon_sym_LPAREN, + ACTIONS(9972), 2, sym__ws, sym_comment, - STATE(2838), 3, + STATE(3101), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163750] = 5, + [171787] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8289), 1, + ACTIONS(9978), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9976), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2953), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163769] = 5, + [171806] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8291), 1, + ACTIONS(9982), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9980), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2979), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163788] = 5, + [171825] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8295), 1, - anon_sym_RPAREN, - ACTIONS(8293), 2, + ACTIONS(9984), 1, + anon_sym_LPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2881), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163807] = 5, + [171844] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8299), 1, - anon_sym_RPAREN, - ACTIONS(8297), 2, + ACTIONS(9988), 1, + anon_sym_LPAREN, + ACTIONS(9986), 2, sym__ws, sym_comment, - STATE(2882), 3, + STATE(3106), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163826] = 5, + [171863] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8303), 1, - anon_sym_RPAREN, - ACTIONS(8301), 2, + ACTIONS(9990), 1, + anon_sym_LPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2885), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163845] = 5, + [171882] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8307), 1, + ACTIONS(9992), 1, anon_sym_RPAREN, - ACTIONS(8305), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2889), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163864] = 5, + [171901] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8309), 1, + ACTIONS(9994), 1, anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163883] = 5, + [171920] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8311), 1, + ACTIONS(9998), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9996), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3115), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163902] = 5, + [171939] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8313), 1, + ACTIONS(10000), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163921] = 5, + [171958] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8317), 1, + ACTIONS(10004), 1, anon_sym_RPAREN, - ACTIONS(8315), 2, + ACTIONS(10002), 2, sym__ws, sym_comment, - STATE(2893), 3, + STATE(3109), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163940] = 5, + [171977] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8321), 1, + ACTIONS(10006), 1, anon_sym_RPAREN, - ACTIONS(8319), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2894), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163959] = 5, + [171996] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8323), 1, + ACTIONS(10008), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163978] = 5, + [172015] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8327), 1, + ACTIONS(10012), 1, anon_sym_RPAREN, - ACTIONS(8325), 2, + ACTIONS(10010), 2, sym__ws, sym_comment, - STATE(2896), 3, + STATE(3121), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163997] = 5, + [172034] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8331), 1, + ACTIONS(10016), 1, anon_sym_RPAREN, - ACTIONS(8329), 2, + ACTIONS(10014), 2, sym__ws, sym_comment, - STATE(2897), 3, + STATE(3122), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164016] = 5, + [172053] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8335), 1, + ACTIONS(10020), 1, anon_sym_RPAREN, - ACTIONS(8333), 2, + ACTIONS(10018), 2, sym__ws, sym_comment, - STATE(2899), 3, + STATE(3125), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164035] = 5, + [172072] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8337), 1, + ACTIONS(10024), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10022), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3129), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164054] = 5, + [172091] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8341), 1, + ACTIONS(10026), 1, anon_sym_RPAREN, - ACTIONS(8339), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2902), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164073] = 5, + [172110] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8345), 1, + ACTIONS(10028), 1, anon_sym_RPAREN, - ACTIONS(8343), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2903), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164092] = 5, + [172129] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8349), 1, + ACTIONS(10030), 1, anon_sym_RPAREN, - ACTIONS(8347), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2905), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164111] = 5, + [172148] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8351), 1, + ACTIONS(10034), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10032), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3133), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164130] = 5, + [172167] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8353), 1, + ACTIONS(10038), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10036), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2949), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164149] = 5, + [172186] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8357), 1, + ACTIONS(10040), 1, anon_sym_RPAREN, - ACTIONS(8355), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2908), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164168] = 5, + [172205] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8359), 1, + ACTIONS(10044), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10042), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3136), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164187] = 5, + [172224] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8361), 1, + ACTIONS(10048), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10046), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3137), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164206] = 5, + [172243] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8365), 1, + ACTIONS(10052), 1, anon_sym_RPAREN, - ACTIONS(8363), 2, + ACTIONS(10050), 2, sym__ws, sym_comment, - STATE(2909), 3, + STATE(3139), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164225] = 5, + [172262] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8367), 1, + ACTIONS(10054), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164244] = 5, + [172281] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8371), 1, + ACTIONS(10058), 1, anon_sym_RPAREN, - ACTIONS(8369), 2, + ACTIONS(10056), 2, sym__ws, sym_comment, - STATE(2910), 3, + STATE(3142), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164263] = 5, + [172300] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8375), 1, + ACTIONS(10062), 1, anon_sym_RPAREN, - ACTIONS(8373), 2, + ACTIONS(10060), 2, sym__ws, sym_comment, - STATE(2911), 3, + STATE(3143), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164282] = 5, + [172319] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8377), 1, + ACTIONS(10066), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10064), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3145), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164301] = 5, + [172338] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8379), 1, + ACTIONS(10068), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164320] = 5, + [172357] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8383), 1, - anon_sym_RPAREN, - ACTIONS(8381), 2, + ACTIONS(10072), 1, + anon_sym_LPAREN, + ACTIONS(10070), 2, sym__ws, sym_comment, - STATE(2913), 3, + STATE(3108), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164339] = 5, + [172376] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8385), 1, + ACTIONS(10076), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10074), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3148), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164358] = 5, + [172395] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8389), 1, + ACTIONS(10078), 1, anon_sym_RPAREN, - ACTIONS(8387), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2914), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164377] = 5, + [172414] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8393), 1, + ACTIONS(10080), 1, anon_sym_RPAREN, - ACTIONS(8391), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2915), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164396] = 5, + [172433] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8395), 1, + ACTIONS(10084), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10082), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3149), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164415] = 5, + [172452] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8397), 1, + ACTIONS(10086), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164434] = 5, + [172471] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8399), 1, + ACTIONS(10090), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10088), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3150), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164453] = 5, + [172490] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8401), 1, + ACTIONS(10094), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10092), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3151), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164472] = 5, + [172509] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8405), 1, + ACTIONS(10096), 1, anon_sym_RPAREN, - ACTIONS(8403), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2917), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164491] = 5, + [172528] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8407), 1, + ACTIONS(10098), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164510] = 5, + [172547] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8409), 1, + ACTIONS(10102), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10100), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3153), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164529] = 5, + [172566] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8411), 1, + ACTIONS(10104), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164548] = 5, + [172585] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8415), 1, + ACTIONS(10108), 1, anon_sym_RPAREN, - ACTIONS(8413), 2, + ACTIONS(10106), 2, sym__ws, sym_comment, - STATE(2918), 3, + STATE(3154), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164567] = 5, + [172604] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8417), 1, + ACTIONS(10112), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10110), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3155), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164586] = 5, + [172623] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8419), 1, + ACTIONS(10114), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164605] = 5, + [172642] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8423), 1, - anon_sym_LPAREN, - ACTIONS(8421), 2, + ACTIONS(10116), 1, + anon_sym_RPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2880), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164624] = 5, + [172661] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8427), 1, + ACTIONS(10118), 1, anon_sym_RPAREN, - ACTIONS(8425), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2921), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164643] = 5, + [172680] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8429), 1, + ACTIONS(10120), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164662] = 5, + [172699] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8433), 1, + ACTIONS(10124), 1, anon_sym_RPAREN, - ACTIONS(8431), 2, + ACTIONS(10122), 2, sym__ws, sym_comment, - STATE(2926), 3, + STATE(3157), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164681] = 5, + [172718] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8437), 1, + ACTIONS(10126), 1, anon_sym_RPAREN, - ACTIONS(8435), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2927), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164700] = 5, + [172737] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8441), 1, + ACTIONS(10128), 1, anon_sym_RPAREN, - ACTIONS(8439), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2933), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164719] = 5, + [172756] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8445), 1, + ACTIONS(10130), 1, anon_sym_RPAREN, - ACTIONS(8443), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2937), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164738] = 5, + [172775] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8447), 1, + ACTIONS(10134), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10132), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3158), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164757] = 5, + [172794] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8449), 1, + ACTIONS(10136), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164776] = 5, + [172813] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8451), 1, + ACTIONS(10138), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164795] = 5, + [172832] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8453), 1, + ACTIONS(10140), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164814] = 5, + [172851] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8457), 1, + ACTIONS(10144), 1, anon_sym_RPAREN, - ACTIONS(8455), 2, + ACTIONS(10142), 2, sym__ws, sym_comment, - STATE(3054), 3, + STATE(3112), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164833] = 5, + [172870] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8461), 1, - anon_sym_RPAREN, - ACTIONS(8459), 2, + ACTIONS(10148), 1, + anon_sym_LPAREN, + ACTIONS(10146), 2, sym__ws, sym_comment, - STATE(2941), 3, + STATE(3110), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164852] = 5, + [172889] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8465), 1, - anon_sym_RPAREN, - ACTIONS(8463), 2, + ACTIONS(10150), 1, + anon_sym_LPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2942), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164871] = 5, + [172908] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8467), 1, + ACTIONS(10152), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164890] = 5, + [172927] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8471), 1, - anon_sym_RPAREN, - ACTIONS(8469), 2, + ACTIONS(10156), 1, + anon_sym_LPAREN, + ACTIONS(10154), 2, sym__ws, sym_comment, - STATE(2945), 3, + STATE(3162), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164909] = 5, + [172946] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8475), 1, + ACTIONS(10160), 1, anon_sym_RPAREN, - ACTIONS(8473), 2, + ACTIONS(10158), 2, sym__ws, sym_comment, - STATE(2946), 3, + STATE(3403), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164928] = 5, + [172965] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8479), 1, + ACTIONS(10162), 1, anon_sym_RPAREN, - ACTIONS(8477), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2951), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164947] = 5, + [172984] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8481), 1, + ACTIONS(10164), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164966] = 5, + [173003] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8485), 1, + ACTIONS(10166), 1, anon_sym_RPAREN, - ACTIONS(8483), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2955), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164985] = 5, + [173022] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8489), 1, + ACTIONS(10170), 1, anon_sym_RPAREN, - ACTIONS(8487), 2, + ACTIONS(10168), 2, sym__ws, sym_comment, - STATE(2956), 3, + STATE(3114), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165004] = 5, + [173041] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8493), 1, + ACTIONS(10174), 1, anon_sym_RPAREN, - ACTIONS(8491), 2, + ACTIONS(10172), 2, sym__ws, sym_comment, - STATE(2958), 3, + STATE(3120), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165023] = 5, + [173060] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8495), 1, + ACTIONS(10176), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165042] = 5, + [173079] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8497), 1, + ACTIONS(10178), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165061] = 5, + [173098] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8501), 1, + ACTIONS(10182), 1, anon_sym_RPAREN, - ACTIONS(8499), 2, + ACTIONS(10180), 2, sym__ws, sym_comment, - STATE(2962), 3, + STATE(3159), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165080] = 5, + [173117] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8503), 1, + ACTIONS(10184), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165099] = 5, + [173136] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8505), 1, + ACTIONS(10186), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165118] = 5, + [173155] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8507), 1, + ACTIONS(10190), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10188), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3191), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165137] = 5, + [173174] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8511), 1, + ACTIONS(10194), 1, anon_sym_RPAREN, - ACTIONS(8509), 2, + ACTIONS(10192), 2, sym__ws, sym_comment, - STATE(2963), 3, + STATE(3192), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165156] = 5, + [173193] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8513), 1, + ACTIONS(10198), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10196), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3163), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165175] = 5, + [173212] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8515), 1, - anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(10202), 1, + anon_sym_RPAREN, + ACTIONS(10200), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3207), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165194] = 5, + [173231] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8519), 1, + ACTIONS(10206), 1, anon_sym_RPAREN, - ACTIONS(8517), 2, + ACTIONS(10204), 2, sym__ws, sym_comment, - STATE(3055), 3, + STATE(3217), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165213] = 5, + [173250] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8521), 1, + ACTIONS(10210), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10208), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3166), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165232] = 5, + [173269] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8525), 1, + ACTIONS(10212), 1, anon_sym_RPAREN, - ACTIONS(8523), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2966), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165251] = 5, + [173288] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8527), 1, - anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(10216), 1, + anon_sym_RPAREN, + ACTIONS(10214), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3167), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165270] = 5, + [173307] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8531), 1, + ACTIONS(10218), 1, anon_sym_RPAREN, - ACTIONS(8529), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2967), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165289] = 5, + [173326] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8533), 1, + ACTIONS(10220), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165308] = 5, + [173345] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8535), 1, + ACTIONS(10224), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10222), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3168), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165327] = 5, + [173364] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8539), 1, + ACTIONS(10226), 1, anon_sym_RPAREN, - ACTIONS(8537), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2974), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165346] = 5, + [173383] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8541), 1, + ACTIONS(10228), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165365] = 5, + [173402] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8543), 1, + ACTIONS(10232), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10230), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3171), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165384] = 5, + [173421] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8547), 1, + ACTIONS(10236), 1, anon_sym_RPAREN, - ACTIONS(8545), 2, + ACTIONS(10234), 2, sym__ws, sym_comment, - STATE(2976), 3, + STATE(3174), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165403] = 5, + [173440] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8551), 1, + ACTIONS(10238), 1, anon_sym_RPAREN, - ACTIONS(8549), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2977), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165422] = 5, + [173459] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8553), 1, + ACTIONS(10240), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165441] = 5, + [173478] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8555), 1, + ACTIONS(10244), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10242), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3175), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165460] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8557), 1, - anon_sym_loop, - STATE(1573), 1, - sym_sym_lit, - ACTIONS(8559), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [165479] = 5, + [173497] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8561), 1, + ACTIONS(10246), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165498] = 5, + [173516] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8563), 1, + ACTIONS(10250), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10248), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3182), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165517] = 5, + [173535] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8565), 1, + ACTIONS(10254), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10252), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3184), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165536] = 5, + [173554] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8569), 1, + ACTIONS(10256), 1, anon_sym_RPAREN, - ACTIONS(8567), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3056), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165555] = 5, + [173573] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8573), 1, + ACTIONS(10260), 1, anon_sym_RPAREN, - ACTIONS(8571), 2, + ACTIONS(10258), 2, sym__ws, sym_comment, - STATE(3057), 3, + STATE(3230), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165574] = 5, + [173592] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8575), 1, + ACTIONS(10262), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165593] = 5, + [173611] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8577), 1, + ACTIONS(10266), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10264), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3187), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165612] = 5, + [173630] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8581), 1, + ACTIONS(10270), 1, anon_sym_RPAREN, - ACTIONS(8579), 2, + ACTIONS(10268), 2, sym__ws, sym_comment, - STATE(2970), 3, + STATE(3188), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165631] = 5, + [173649] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8585), 1, + ACTIONS(10272), 1, anon_sym_RPAREN, - ACTIONS(8583), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2982), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165650] = 5, + [173668] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8587), 1, + ACTIONS(10274), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165669] = 5, + [173687] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8589), 1, + ACTIONS(10278), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10276), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2978), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165688] = 5, + [173706] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8591), 1, + ACTIONS(10282), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10280), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3194), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165707] = 5, + [173725] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8593), 1, + ACTIONS(10286), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10284), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3231), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165726] = 5, + [173744] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8595), 1, + ACTIONS(10288), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165745] = 5, + [173763] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8599), 1, + ACTIONS(10292), 1, anon_sym_RPAREN, - ACTIONS(8597), 2, + ACTIONS(10290), 2, sym__ws, sym_comment, - STATE(2983), 3, + STATE(3199), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165764] = 5, + [173782] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8601), 1, + ACTIONS(10296), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10294), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3202), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165783] = 5, + [173801] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8605), 1, + ACTIONS(10300), 1, anon_sym_RPAREN, - ACTIONS(8603), 2, + ACTIONS(10298), 2, sym__ws, sym_comment, - STATE(2971), 3, + STATE(3203), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165802] = 5, + [173820] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8607), 1, + ACTIONS(10302), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165821] = 5, + [173839] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8609), 1, + ACTIONS(10306), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10304), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3218), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165840] = 5, + [173858] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8611), 1, + ACTIONS(10310), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10308), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3233), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165859] = 5, + [173877] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8615), 1, - anon_sym_LPAREN, - ACTIONS(8613), 2, + ACTIONS(10314), 1, + anon_sym_RPAREN, + ACTIONS(10312), 2, sym__ws, sym_comment, - STATE(3012), 3, + STATE(3234), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165878] = 5, + [173896] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8617), 1, + ACTIONS(10316), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165897] = 5, + [173915] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8621), 1, + ACTIONS(10320), 1, anon_sym_RPAREN, - ACTIONS(8619), 2, + ACTIONS(10318), 2, sym__ws, sym_comment, - STATE(2988), 3, + STATE(3236), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165916] = 5, + [173934] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8623), 1, + ACTIONS(10322), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165935] = 5, + [173953] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8627), 1, + ACTIONS(10324), 1, anon_sym_RPAREN, - ACTIONS(8625), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3001), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165954] = 5, + [173972] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8629), 1, + ACTIONS(10328), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10326), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3211), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165973] = 5, + [173991] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8631), 1, + ACTIONS(10332), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10330), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3294), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165992] = 5, + [174010] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8635), 1, + ACTIONS(10336), 1, anon_sym_RPAREN, - ACTIONS(8633), 2, + ACTIONS(10334), 2, sym__ws, sym_comment, - STATE(2975), 3, + STATE(3065), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166011] = 5, + [174029] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8639), 1, + ACTIONS(10340), 1, anon_sym_RPAREN, - ACTIONS(8637), 2, + ACTIONS(10338), 2, sym__ws, sym_comment, - STATE(2978), 3, + STATE(3241), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166030] = 5, + [174048] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8643), 1, + ACTIONS(10344), 1, anon_sym_RPAREN, - ACTIONS(8641), 2, + ACTIONS(10342), 2, sym__ws, sym_comment, - STATE(3006), 3, + STATE(3242), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166049] = 5, + [174067] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8647), 1, + ACTIONS(10346), 1, anon_sym_RPAREN, - ACTIONS(8645), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3014), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166068] = 5, + [174086] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8651), 1, + ACTIONS(10350), 1, anon_sym_RPAREN, - ACTIONS(8649), 2, + ACTIONS(10348), 2, sym__ws, sym_comment, - STATE(3046), 3, + STATE(3269), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166087] = 5, + [174105] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8653), 1, + ACTIONS(10354), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10352), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3261), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166106] = 5, + [174124] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8657), 1, + ACTIONS(10356), 1, anon_sym_RPAREN, - ACTIONS(8655), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2980), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166125] = 5, + [174143] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8659), 1, + ACTIONS(10360), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10358), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3244), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166144] = 5, + [174162] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8661), 1, + ACTIONS(10364), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10362), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3286), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166163] = 5, + [174181] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8663), 1, + ACTIONS(10366), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166182] = 5, + [174200] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8667), 1, + ACTIONS(10368), 1, anon_sym_RPAREN, - ACTIONS(8665), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2984), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166201] = 5, + [174219] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8671), 1, + ACTIONS(10372), 1, anon_sym_RPAREN, - ACTIONS(8669), 2, + ACTIONS(10370), 2, sym__ws, sym_comment, - STATE(2986), 3, + STATE(3248), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166220] = 5, + [174238] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8675), 1, - anon_sym_LPAREN, - ACTIONS(8673), 2, + ACTIONS(10374), 1, + anon_sym_RPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2949), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166239] = 5, + [174257] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8679), 1, - anon_sym_LPAREN, - ACTIONS(8677), 2, + ACTIONS(10376), 1, + anon_sym_RPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2953), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166258] = 5, + [174276] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8681), 1, + ACTIONS(10380), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10378), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3250), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166277] = 5, + [174295] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8683), 1, + ACTIONS(10382), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166296] = 5, + [174314] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8687), 1, + ACTIONS(10384), 1, anon_sym_RPAREN, - ACTIONS(8685), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3051), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166315] = 5, + [174333] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8691), 1, + ACTIONS(10386), 1, anon_sym_RPAREN, - ACTIONS(8689), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3052), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166334] = 5, + [174352] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8695), 1, + ACTIONS(10390), 1, anon_sym_RPAREN, - ACTIONS(8693), 2, + ACTIONS(10388), 2, sym__ws, sym_comment, - STATE(2990), 3, + STATE(3251), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166353] = 5, + [174371] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8697), 1, + ACTIONS(10394), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10392), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3252), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166372] = 5, + [174390] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8699), 1, - anon_sym_LPAREN, - ACTIONS(7400), 2, + ACTIONS(10396), 1, + anon_sym_RPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166391] = 5, + [174409] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8701), 1, + ACTIONS(10398), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166410] = 5, + [174428] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8703), 1, + ACTIONS(10402), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10400), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3254), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166429] = 5, + [174447] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8707), 1, + ACTIONS(10404), 1, anon_sym_RPAREN, - ACTIONS(8705), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2991), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166448] = 5, + [174466] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8711), 1, + ACTIONS(10408), 1, anon_sym_RPAREN, - ACTIONS(8709), 2, + ACTIONS(10406), 2, sym__ws, sym_comment, - STATE(3061), 3, + STATE(3255), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166467] = 5, + [174485] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8715), 1, + ACTIONS(10412), 1, anon_sym_RPAREN, - ACTIONS(8713), 2, + ACTIONS(10410), 2, sym__ws, sym_comment, - STATE(3062), 3, + STATE(3256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166486] = 5, + [174504] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8717), 1, + ACTIONS(10416), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10414), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3093), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166505] = 5, + [174523] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8719), 1, + ACTIONS(10418), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166524] = 5, + [174542] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8723), 1, - anon_sym_RPAREN, - ACTIONS(8721), 2, + ACTIONS(10422), 1, + anon_sym_LPAREN, + ACTIONS(10420), 2, sym__ws, sym_comment, - STATE(2997), 3, + STATE(3087), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166543] = 5, + [174561] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8727), 1, + ACTIONS(10424), 1, anon_sym_RPAREN, - ACTIONS(8725), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2999), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166562] = 5, + [174580] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8731), 1, + ACTIONS(10426), 1, anon_sym_RPAREN, - ACTIONS(8729), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3000), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166581] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8733), 1, - anon_sym_loop, - STATE(1573), 1, - sym_sym_lit, - ACTIONS(8559), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [166600] = 5, + [174599] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8735), 1, + ACTIONS(10428), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166619] = 5, + [174618] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8739), 1, + ACTIONS(10432), 1, anon_sym_RPAREN, - ACTIONS(8737), 2, + ACTIONS(10430), 2, sym__ws, sym_comment, - STATE(3065), 3, + STATE(3258), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166638] = 5, + [174637] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8743), 1, + ACTIONS(10434), 1, anon_sym_RPAREN, - ACTIONS(8741), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3007), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166657] = 5, + [174656] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8747), 1, + ACTIONS(10436), 1, anon_sym_RPAREN, - ACTIONS(8745), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3011), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166676] = 5, + [174675] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8751), 1, + ACTIONS(10438), 1, anon_sym_RPAREN, - ACTIONS(8749), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2965), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166695] = 5, + [174694] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8753), 1, + ACTIONS(10442), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10440), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3259), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166714] = 5, + [174713] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8757), 1, + ACTIONS(10444), 1, anon_sym_RPAREN, - ACTIONS(8755), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3018), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166733] = 5, + [174732] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8761), 1, + ACTIONS(10446), 1, anon_sym_RPAREN, - ACTIONS(8759), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3019), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166752] = 5, + [174751] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8763), 1, + ACTIONS(10448), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166771] = 5, + [174770] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8765), 1, + ACTIONS(10450), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166790] = 5, + [174789] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8769), 1, + ACTIONS(10452), 1, anon_sym_RPAREN, - ACTIONS(8767), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3024), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166809] = 5, + [174808] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10454), 1, + anon_sym_loop, + STATE(1714), 1, + sym_sym_lit, + ACTIONS(10456), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [174827] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8773), 1, + ACTIONS(10460), 1, anon_sym_RPAREN, - ACTIONS(8771), 2, + ACTIONS(10458), 2, sym__ws, sym_comment, - STATE(3029), 3, + STATE(3407), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166828] = 5, + [174846] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8777), 1, + ACTIONS(10462), 1, anon_sym_RPAREN, - ACTIONS(8775), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3032), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166847] = 5, + [174865] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8781), 1, + ACTIONS(10466), 1, anon_sym_RPAREN, - ACTIONS(8779), 2, + ACTIONS(10464), 2, sym__ws, sym_comment, - STATE(3033), 3, + STATE(3224), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166866] = 5, + [174884] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8783), 1, + ACTIONS(10470), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10468), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3227), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166885] = 5, + [174903] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8785), 1, + ACTIONS(10472), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166904] = 5, + [174922] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8787), 1, + ACTIONS(10474), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166923] = 5, + [174941] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8791), 1, + ACTIONS(10476), 1, anon_sym_RPAREN, - ACTIONS(8789), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3069), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166942] = 5, + [174960] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8795), 1, + ACTIONS(10480), 1, anon_sym_RPAREN, - ACTIONS(8793), 2, + ACTIONS(10478), 2, sym__ws, sym_comment, - STATE(3038), 3, + STATE(3083), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166961] = 5, + [174979] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8797), 1, + ACTIONS(10484), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10482), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3268), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166980] = 5, + [174998] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8801), 1, + ACTIONS(10488), 1, anon_sym_RPAREN, - ACTIONS(8799), 2, + ACTIONS(10486), 2, sym__ws, sym_comment, - STATE(2721), 3, + STATE(3408), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166999] = 5, + [175017] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8805), 1, + ACTIONS(10492), 1, anon_sym_RPAREN, - ACTIONS(8803), 2, + ACTIONS(10490), 2, sym__ws, sym_comment, - STATE(3060), 3, + STATE(3291), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167018] = 5, + [175036] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8807), 1, + ACTIONS(10496), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10494), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3293), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167037] = 5, + [175055] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8811), 1, + ACTIONS(10498), 1, anon_sym_RPAREN, - ACTIONS(8809), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3068), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167056] = 5, + [175074] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8815), 1, + ACTIONS(10500), 1, anon_sym_RPAREN, - ACTIONS(8813), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3070), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167075] = 5, + [175093] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8819), 1, + ACTIONS(10504), 1, anon_sym_RPAREN, - ACTIONS(8817), 2, + ACTIONS(10502), 2, sym__ws, sym_comment, - STATE(3074), 3, + STATE(3409), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167094] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8821), 1, - anon_sym_loop, - STATE(1573), 1, - sym_sym_lit, - ACTIONS(8559), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [167113] = 5, + [175112] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8823), 1, + ACTIONS(10508), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10506), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3295), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167132] = 5, + [175131] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8825), 1, + ACTIONS(10512), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10510), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3300), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167151] = 5, + [175150] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8829), 1, - anon_sym_RPAREN, - ACTIONS(8827), 2, + ACTIONS(10514), 1, + anon_sym_LPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3079), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167170] = 5, + [175169] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8831), 1, + ACTIONS(10516), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167189] = 5, + [175188] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8833), 1, + ACTIONS(10520), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10518), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3301), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167208] = 5, + [175207] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8835), 1, + ACTIONS(10524), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10522), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3304), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167227] = 5, + [175226] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8837), 1, + ACTIONS(10526), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167246] = 5, + [175245] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8841), 1, + ACTIONS(10528), 1, anon_sym_RPAREN, - ACTIONS(8839), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3071), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167265] = 5, + [175264] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8843), 1, - anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10530), 1, + anon_sym_LPAREN, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167284] = 5, + [175283] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8845), 1, + ACTIONS(10534), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10532), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3292), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167303] = 5, + [175302] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8847), 1, + ACTIONS(10536), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167322] = 5, + [175321] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10538), 1, + anon_sym_loop, + STATE(1714), 1, + sym_sym_lit, + ACTIONS(10456), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [175340] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8849), 1, + ACTIONS(10540), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167341] = 5, + [175359] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8853), 1, + ACTIONS(10542), 1, anon_sym_RPAREN, - ACTIONS(8851), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3080), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167360] = 5, + [175378] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8857), 1, + ACTIONS(10544), 1, anon_sym_RPAREN, - ACTIONS(8855), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3072), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167379] = 5, + [175397] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8859), 1, + ACTIONS(10546), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167398] = 5, + [175416] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8863), 1, + ACTIONS(10548), 1, anon_sym_RPAREN, - ACTIONS(8861), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3081), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167417] = 5, + [175435] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8867), 1, + ACTIONS(10552), 1, anon_sym_RPAREN, - ACTIONS(8865), 2, + ACTIONS(10550), 2, sym__ws, sym_comment, - STATE(3082), 3, + STATE(3302), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167436] = 5, + [175454] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8869), 1, + ACTIONS(10556), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10554), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3303), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167455] = 5, + [175473] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8871), 1, + ACTIONS(10560), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10558), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3312), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167474] = 5, + [175492] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8873), 1, + ACTIONS(10564), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10562), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3318), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167493] = 5, + [175511] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8875), 1, + ACTIONS(10566), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167512] = 5, + [175530] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8877), 1, + ACTIONS(10568), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167531] = 5, + [175549] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8881), 1, + ACTIONS(10570), 1, anon_sym_RPAREN, - ACTIONS(8879), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3102), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167550] = 5, + [175568] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8883), 1, + ACTIONS(10572), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167569] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8885), 1, - anon_sym_loop, - STATE(1573), 1, - sym_sym_lit, - ACTIONS(8559), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [167588] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8887), 1, - anon_sym_loop, - STATE(1573), 1, - sym_sym_lit, - ACTIONS(8559), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [167607] = 5, + [175587] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8891), 1, + ACTIONS(10574), 1, anon_sym_RPAREN, - ACTIONS(8889), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3115), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167626] = 5, + [175606] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8895), 1, + ACTIONS(10578), 1, anon_sym_RPAREN, - ACTIONS(8893), 2, + ACTIONS(10576), 2, sym__ws, sym_comment, - STATE(3127), 3, + STATE(3308), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167645] = 5, + [175625] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8897), 1, + ACTIONS(10580), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167664] = 5, + [175644] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8899), 1, + ACTIONS(10584), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10582), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3322), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167683] = 5, + [175663] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8901), 1, + ACTIONS(10586), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167702] = 5, + [175682] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8903), 1, + ACTIONS(10590), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10588), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3323), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167721] = 5, + [175701] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10592), 1, + aux_sym_num_lit_token2, + ACTIONS(6138), 6, + sym__ws, + sym_comment, + anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_cl, + anon_sym_into, + [175716] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8907), 1, + ACTIONS(10594), 1, anon_sym_RPAREN, - ACTIONS(8905), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3133), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167740] = 5, + [175735] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8909), 1, + ACTIONS(10596), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167759] = 5, + [175754] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10598), 1, + anon_sym_loop, + STATE(1714), 1, + sym_sym_lit, + ACTIONS(10456), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [175773] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8911), 1, + ACTIONS(10602), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10600), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3326), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167778] = 5, + [175792] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8915), 1, + ACTIONS(10606), 1, anon_sym_RPAREN, - ACTIONS(8913), 2, + ACTIONS(10604), 2, sym__ws, sym_comment, - STATE(3084), 3, + STATE(3343), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167797] = 5, + [175811] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10608), 1, + anon_sym_loop, + STATE(1714), 1, + sym_sym_lit, + ACTIONS(10456), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [175830] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8917), 1, + ACTIONS(10612), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10610), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3368), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167816] = 5, + [175849] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8919), 1, + ACTIONS(10614), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167835] = 5, + [175868] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8921), 1, + ACTIONS(10618), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10616), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3377), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167854] = 5, + [175887] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8925), 1, + ACTIONS(10622), 1, anon_sym_RPAREN, - ACTIONS(8923), 2, + ACTIONS(10620), 2, sym__ws, sym_comment, - STATE(3085), 3, + STATE(3378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167873] = 5, + [175906] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8927), 1, + ACTIONS(10626), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10624), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3381), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167892] = 5, + [175925] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8929), 1, + ACTIONS(10628), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167911] = 5, + [175944] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8931), 1, + ACTIONS(10630), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167930] = 5, + [175963] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8933), 1, + ACTIONS(10634), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10632), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3387), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167949] = 5, + [175982] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10636), 1, + anon_sym_loop, + STATE(1714), 1, + sym_sym_lit, + ACTIONS(10456), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [176001] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8937), 1, + ACTIONS(10638), 1, anon_sym_RPAREN, - ACTIONS(8935), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3087), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167968] = 5, + [176020] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8941), 1, + ACTIONS(10640), 1, anon_sym_RPAREN, - ACTIONS(8939), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3088), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167987] = 5, + [176039] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8943), 1, + ACTIONS(10642), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168006] = 5, + [176058] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8947), 1, + ACTIONS(10646), 1, anon_sym_RPAREN, - ACTIONS(8945), 2, + ACTIONS(10644), 2, sym__ws, sym_comment, - STATE(3089), 3, + STATE(3327), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168025] = 5, + [176077] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8949), 1, + ACTIONS(10648), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [168044] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8951), 1, - anon_sym_loop, - STATE(1573), 1, - sym_sym_lit, - ACTIONS(8559), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [168063] = 5, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [176096] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8953), 1, + ACTIONS(10650), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168082] = 5, + [176115] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8955), 1, + ACTIONS(10652), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168101] = 5, + [176134] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8959), 1, + ACTIONS(10656), 1, anon_sym_RPAREN, - ACTIONS(8957), 2, + ACTIONS(10654), 2, sym__ws, sym_comment, - STATE(3091), 3, + STATE(3328), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168120] = 5, + [176153] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8963), 1, + ACTIONS(10658), 1, anon_sym_RPAREN, - ACTIONS(8961), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3092), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168139] = 5, + [176172] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8965), 1, + ACTIONS(10660), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168158] = 5, + [176191] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8969), 1, + ACTIONS(10662), 1, anon_sym_RPAREN, - ACTIONS(8967), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3093), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168177] = 5, + [176210] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8971), 1, + ACTIONS(10664), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168196] = 5, + [176229] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8973), 1, + ACTIONS(10668), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10666), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3330), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168215] = 5, + [176248] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8977), 1, + ACTIONS(10672), 1, anon_sym_RPAREN, - ACTIONS(8975), 2, + ACTIONS(10670), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3331), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168234] = 5, + [176267] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8979), 1, + ACTIONS(10674), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168253] = 5, + [176286] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10676), 1, + anon_sym_loop, + STATE(1714), 1, + sym_sym_lit, + ACTIONS(10456), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [176305] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8981), 1, + ACTIONS(10680), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10678), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3332), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168272] = 5, + [176324] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8985), 1, + ACTIONS(10682), 1, anon_sym_RPAREN, - ACTIONS(8983), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3097), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168291] = 5, + [176343] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8989), 1, + ACTIONS(10684), 1, anon_sym_RPAREN, - ACTIONS(8987), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3099), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168310] = 5, + [176362] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8993), 1, + ACTIONS(10686), 1, anon_sym_RPAREN, - ACTIONS(8991), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3101), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168329] = 5, + [176381] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8995), 1, + ACTIONS(10690), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10688), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3334), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168348] = 5, + [176400] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(8999), 1, + ACTIONS(10694), 1, anon_sym_RPAREN, - ACTIONS(8997), 2, + ACTIONS(10692), 2, sym__ws, sym_comment, - STATE(3105), 3, + STATE(3335), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168367] = 5, + [176419] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9003), 1, + ACTIONS(10696), 1, anon_sym_RPAREN, - ACTIONS(9001), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3107), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168386] = 5, + [176438] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9007), 1, + ACTIONS(10700), 1, anon_sym_RPAREN, - ACTIONS(9005), 2, + ACTIONS(10698), 2, sym__ws, sym_comment, - STATE(3108), 3, + STATE(3336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168405] = 5, + [176457] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9009), 1, + ACTIONS(10702), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168424] = 5, + [176476] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9013), 1, + ACTIONS(10704), 1, anon_sym_RPAREN, - ACTIONS(9011), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3110), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168443] = 5, + [176495] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9017), 1, + ACTIONS(10708), 1, anon_sym_RPAREN, - ACTIONS(9015), 2, + ACTIONS(10706), 2, sym__ws, sym_comment, - STATE(3111), 3, + STATE(3337), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168462] = 5, + [176514] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9019), 1, + ACTIONS(10710), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168481] = 5, + [176533] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9021), 1, + ACTIONS(10712), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168500] = 5, + [176552] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9025), 1, + ACTIONS(10716), 1, anon_sym_RPAREN, - ACTIONS(9023), 2, + ACTIONS(10714), 2, sym__ws, sym_comment, - STATE(3013), 3, + STATE(3340), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168519] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, + [176571] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9027), 1, - anon_sym_loop, - STATE(1573), 1, - sym_sym_lit, - ACTIONS(8559), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [168538] = 5, + ACTIONS(9079), 1, + anon_sym_POUND_, + ACTIONS(10720), 1, + anon_sym_RPAREN, + ACTIONS(10718), 2, + sym__ws, + sym_comment, + STATE(3344), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [176590] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9031), 1, + ACTIONS(10724), 1, anon_sym_RPAREN, - ACTIONS(9029), 2, + ACTIONS(10722), 2, sym__ws, sym_comment, - STATE(3119), 3, + STATE(3345), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168557] = 5, + [176609] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9033), 1, + ACTIONS(10726), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168576] = 5, + [176628] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9037), 1, + ACTIONS(10730), 1, anon_sym_RPAREN, - ACTIONS(9035), 2, + ACTIONS(10728), 2, sym__ws, sym_comment, - STATE(3122), 3, + STATE(3348), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168595] = 5, + [176647] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9041), 1, + ACTIONS(10734), 1, anon_sym_RPAREN, - ACTIONS(9039), 2, + ACTIONS(10732), 2, sym__ws, sym_comment, - STATE(3123), 3, + STATE(3350), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168614] = 5, + [176666] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9043), 1, + ACTIONS(10738), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10736), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3351), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168633] = 5, + [176685] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9047), 1, + ACTIONS(10740), 1, anon_sym_RPAREN, - ACTIONS(9045), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3130), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168652] = 5, + [176704] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9051), 1, + ACTIONS(10744), 1, anon_sym_RPAREN, - ACTIONS(9049), 2, + ACTIONS(10742), 2, sym__ws, sym_comment, - STATE(3134), 3, + STATE(3353), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168671] = 5, + [176723] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9053), 1, + ACTIONS(10748), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10746), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3354), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168690] = 5, + [176742] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9055), 1, + ACTIONS(10752), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10750), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3238), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168709] = 5, + [176761] = 5, ACTIONS(23), 1, aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9057), 1, + ACTIONS(10754), 1, anon_sym_loop, - STATE(1573), 1, + STATE(1714), 1, sym_sym_lit, - ACTIONS(8559), 4, + ACTIONS(10456), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [168728] = 5, + [176780] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9061), 1, + ACTIONS(10756), 1, anon_sym_RPAREN, - ACTIONS(9059), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3137), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168747] = 5, + [176799] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9063), 1, + ACTIONS(10758), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168766] = 5, + [176818] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9067), 1, + ACTIONS(10760), 1, anon_sym_RPAREN, - ACTIONS(9065), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2720), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168785] = 5, + [176837] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9071), 1, + ACTIONS(10764), 1, anon_sym_RPAREN, - ACTIONS(9069), 2, + ACTIONS(10762), 2, sym__ws, sym_comment, - STATE(3142), 3, + STATE(3389), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168804] = 5, + [176856] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9075), 1, + ACTIONS(10768), 1, anon_sym_RPAREN, - ACTIONS(9073), 2, + ACTIONS(10766), 2, sym__ws, sym_comment, - STATE(3145), 3, + STATE(3358), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168823] = 5, + [176875] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, - anon_sym_POUND_, ACTIONS(9079), 1, + anon_sym_POUND_, + ACTIONS(10772), 1, anon_sym_RPAREN, - ACTIONS(9077), 2, + ACTIONS(10770), 2, sym__ws, sym_comment, - STATE(3177), 3, + STATE(3362), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168842] = 5, + [176894] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9081), 1, + ACTIONS(10776), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10774), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3367), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168861] = 5, + [176913] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9085), 1, + ACTIONS(10780), 1, anon_sym_RPAREN, - ACTIONS(9083), 2, + ACTIONS(10778), 2, sym__ws, sym_comment, - STATE(3176), 3, + STATE(3369), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168880] = 5, + [176932] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9089), 1, + ACTIONS(10782), 1, anon_sym_RPAREN, - ACTIONS(9087), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3174), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168899] = 5, + [176951] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9091), 1, + ACTIONS(10786), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10784), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3393), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168918] = 5, + [176970] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9095), 1, + ACTIONS(10788), 1, anon_sym_RPAREN, - ACTIONS(9093), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3172), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168937] = 5, + [176989] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9099), 1, + ACTIONS(10790), 1, anon_sym_RPAREN, - ACTIONS(9097), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3171), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168956] = 5, + [177008] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9101), 1, + ACTIONS(10794), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10792), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3375), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168975] = 5, + [177027] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9103), 1, + ACTIONS(10798), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10796), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3396), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168994] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(9105), 1, - anon_sym_loop, - STATE(1573), 1, - sym_sym_lit, - ACTIONS(8559), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [169013] = 5, + [177046] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9109), 1, + ACTIONS(10800), 1, anon_sym_RPAREN, - ACTIONS(9107), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3148), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169032] = 5, + [177065] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9113), 1, + ACTIONS(10804), 1, anon_sym_RPAREN, - ACTIONS(9111), 2, + ACTIONS(10802), 2, sym__ws, sym_comment, - STATE(3169), 3, + STATE(3388), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169051] = 5, + [177084] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9115), 1, + ACTIONS(10808), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10806), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3397), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169070] = 5, + [177103] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9117), 1, + ACTIONS(10812), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10810), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3398), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169089] = 5, + [177122] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, - anon_sym_POUND_, - ACTIONS(9119), 1, - anon_sym_RPAREN, - ACTIONS(7400), 2, - sym__ws, - sym_comment, - STATE(2199), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [169108] = 5, + ACTIONS(10814), 1, + anon_sym_loop, + STATE(1714), 1, + sym_sym_lit, + ACTIONS(10456), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [177141] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9123), 1, + ACTIONS(10818), 1, anon_sym_RPAREN, - ACTIONS(9121), 2, + ACTIONS(10816), 2, sym__ws, sym_comment, - STATE(3149), 3, + STATE(3215), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169127] = 5, + [177160] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9125), 1, + ACTIONS(10820), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169146] = 5, + [177179] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9127), 1, + ACTIONS(10822), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169165] = 5, + [177198] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9129), 1, + ACTIONS(10824), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169184] = 5, + [177217] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9131), 1, + ACTIONS(10828), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10826), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3237), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169203] = 5, + [177236] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, - anon_sym_POUND_, - ACTIONS(9135), 1, - anon_sym_RPAREN, - ACTIONS(9133), 2, - sym__ws, - sym_comment, - STATE(3153), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [169222] = 5, + ACTIONS(10830), 1, + anon_sym_loop, + STATE(1714), 1, + sym_sym_lit, + ACTIONS(10456), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [177255] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9139), 1, + ACTIONS(10832), 1, anon_sym_RPAREN, - ACTIONS(9137), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3154), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169241] = 5, + [177274] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9141), 1, + ACTIONS(10834), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169260] = 5, + [177293] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9145), 1, + ACTIONS(10836), 1, anon_sym_RPAREN, - ACTIONS(9143), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3155), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169279] = 5, + [177312] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9147), 1, + ACTIONS(10840), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10838), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3400), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169298] = 5, + [177331] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9149), 1, + ACTIONS(10842), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169317] = 5, + [177350] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9153), 1, + ACTIONS(10844), 1, anon_sym_RPAREN, - ACTIONS(9151), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3157), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169336] = 5, + [177369] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9157), 1, + ACTIONS(10846), 1, anon_sym_RPAREN, - ACTIONS(9155), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3158), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169355] = 5, + [177388] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9159), 1, + ACTIONS(10850), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10848), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3401), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169374] = 5, + [177407] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9163), 1, + ACTIONS(10852), 1, anon_sym_RPAREN, - ACTIONS(9161), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3159), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169393] = 5, + [177426] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9165), 1, + ACTIONS(10854), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169412] = 5, + [177445] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9167), 1, + ACTIONS(10856), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169431] = 5, + [177464] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9171), 1, + ACTIONS(10858), 1, anon_sym_RPAREN, - ACTIONS(9169), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3160), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169450] = 5, + [177483] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9173), 1, + ACTIONS(10862), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10860), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3394), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169469] = 5, + [177502] = 5, ACTIONS(23), 1, aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9175), 1, + ACTIONS(10864), 1, anon_sym_loop, - STATE(1573), 1, + STATE(1714), 1, sym_sym_lit, - ACTIONS(8559), 4, + ACTIONS(10456), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [169488] = 5, + [177521] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9177), 1, + ACTIONS(10868), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10866), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(3392), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169507] = 5, + [177540] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9179), 1, + ACTIONS(10870), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169526] = 5, + [177559] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9183), 1, + ACTIONS(10872), 1, anon_sym_RPAREN, - ACTIONS(9181), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3163), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169545] = 5, + [177578] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, + ACTIONS(9079), 1, anon_sym_POUND_, - ACTIONS(9187), 1, + ACTIONS(10874), 1, anon_sym_RPAREN, - ACTIONS(9185), 2, + ACTIONS(9099), 2, sym__ws, sym_comment, - STATE(3165), 3, + STATE(2428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169564] = 5, + [177597] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(10876), 1, + anon_sym_DQUOTE, + ACTIONS(10880), 1, + anon_sym_TILDE, + ACTIONS(10878), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3520), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [177615] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7402), 1, - anon_sym_POUND_, - ACTIONS(9191), 1, - anon_sym_RPAREN, - ACTIONS(9189), 2, + ACTIONS(3588), 1, + anon_sym_LPAREN, + ACTIONS(10882), 1, sym__ws, - sym_comment, - STATE(3166), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [169583] = 5, + STATE(3572), 1, + aux_sym_read_cond_lit_repeat1, + STATE(1327), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [177633] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3375), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(9193), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3276), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1261), 3, + STATE(2587), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169601] = 5, + [177651] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3207), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(9195), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3215), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(827), 3, + STATE(2444), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169619] = 5, - ACTIONS(3), 1, + [177669] = 5, + ACTIONS(47), 1, sym_block_comment, - ACTIONS(9197), 1, - anon_sym_DQUOTE, - ACTIONS(9201), 1, - anon_sym_TILDE, - ACTIONS(9199), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3242), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [169637] = 5, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(10884), 1, + sym__ws, + STATE(3433), 1, + aux_sym_read_cond_lit_repeat1, + STATE(1491), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [177687] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3153), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(9203), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3243), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(2094), 3, + STATE(2131), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169655] = 5, + [177705] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9205), 1, + ACTIONS(10886), 1, anon_sym_DQUOTE, - ACTIONS(9209), 1, + ACTIONS(10890), 1, anon_sym_TILDE, - ACTIONS(9207), 2, + ACTIONS(10888), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3190), 2, + STATE(3426), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [169673] = 5, + [177723] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(9211), 1, + ACTIONS(10892), 1, sym__ws, - STATE(3191), 1, + STATE(3438), 1, aux_sym_read_cond_lit_repeat1, - STATE(1830), 3, + STATE(1181), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169691] = 5, + [177741] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3153), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(9213), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3192), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1703), 3, + STATE(2466), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169709] = 5, + [177759] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3153), 1, + ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(9215), 1, + ACTIONS(10894), 1, sym__ws, - STATE(3244), 1, + STATE(3427), 1, aux_sym_read_cond_lit_repeat1, - STATE(2256), 3, + STATE(1010), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169727] = 5, + [177777] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3495), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10896), 1, sym__ws, - STATE(3321), 1, + STATE(3474), 1, aux_sym_read_cond_lit_repeat1, - STATE(2381), 3, + STATE(2441), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169745] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(6536), 1, - anon_sym_DQUOTE, - ACTIONS(9221), 1, - anon_sym_TILDE, - ACTIONS(9219), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3281), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [169763] = 5, + [177795] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10898), 1, sym__ws, - STATE(3321), 1, + STATE(3467), 1, aux_sym_read_cond_lit_repeat1, - STATE(1908), 3, + STATE(1222), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169781] = 5, + [177813] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3321), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1732), 3, + STATE(1640), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169799] = 5, + [177831] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9223), 1, + ACTIONS(10900), 1, anon_sym_DQUOTE, - ACTIONS(9227), 1, + ACTIONS(10904), 1, anon_sym_TILDE, - ACTIONS(9225), 2, + ACTIONS(10902), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3202), 2, + STATE(3466), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [169817] = 5, + [177849] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2799), 1, + ACTIONS(3758), 1, anon_sym_LPAREN, - ACTIONS(9229), 1, + ACTIONS(10906), 1, sym__ws, - STATE(3205), 1, + STATE(3428), 1, aux_sym_read_cond_lit_repeat1, - STATE(1008), 3, + STATE(855), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169835] = 5, + [177867] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3495), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10908), 1, sym__ws, - STATE(3321), 1, + STATE(3439), 1, aux_sym_read_cond_lit_repeat1, - STATE(2297), 3, + STATE(2161), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169853] = 5, + [177885] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(6530), 1, + ACTIONS(7127), 1, anon_sym_DQUOTE, - ACTIONS(9231), 1, + ACTIONS(10912), 1, anon_sym_TILDE, - ACTIONS(9219), 2, + ACTIONS(10910), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3281), 2, + STATE(3496), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [169871] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(9233), 1, - sym__ws, - STATE(3195), 1, - aux_sym_read_cond_lit_repeat1, - STATE(2233), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [169889] = 5, + [177903] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3495), 1, + ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(9235), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3189), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(2395), 3, + STATE(967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169907] = 5, + [177921] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3207), 1, + ACTIONS(3758), 1, anon_sym_LPAREN, - ACTIONS(9237), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3209), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(799), 3, + STATE(874), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169925] = 5, + [177939] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(9239), 1, + ACTIONS(10914), 1, sym__ws, - STATE(3289), 1, + STATE(3431), 1, aux_sym_read_cond_lit_repeat1, - STATE(1903), 3, + STATE(1051), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169943] = 5, + [177957] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3495), 1, + ACTIONS(3758), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10916), 1, sym__ws, - STATE(3321), 1, + STATE(3432), 1, aux_sym_read_cond_lit_repeat1, - STATE(2218), 3, + STATE(883), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169961] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(6514), 1, - anon_sym_DQUOTE, - ACTIONS(9241), 1, - anon_sym_TILDE, - ACTIONS(9219), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3281), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [169979] = 5, + [177975] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3495), 1, + ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3321), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(2397), 3, + STATE(982), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169997] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(6528), 1, - anon_sym_DQUOTE, - ACTIONS(9243), 1, - anon_sym_TILDE, - ACTIONS(9219), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3281), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [170015] = 5, + [177993] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2799), 1, + ACTIONS(3758), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3321), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(967), 3, + STATE(896), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170033] = 5, + [178011] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3495), 1, + ACTIONS(3654), 1, anon_sym_LPAREN, - ACTIONS(9245), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3201), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(2256), 3, + STATE(1472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170051] = 5, + [178029] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3495), 1, + ACTIONS(3654), 1, anon_sym_LPAREN, - ACTIONS(9247), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3203), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(2368), 3, + STATE(1473), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170069] = 5, + [178047] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9249), 1, + ACTIONS(10918), 1, anon_sym_DQUOTE, - ACTIONS(9253), 1, + ACTIONS(10922), 1, anon_sym_TILDE, - ACTIONS(9251), 2, + ACTIONS(10920), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3204), 2, + STATE(3445), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [170087] = 5, + [178065] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10924), 1, sym__ws, - STATE(3321), 1, + STATE(3501), 1, aux_sym_read_cond_lit_repeat1, - STATE(818), 3, + STATE(1703), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170105] = 5, + [178083] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2799), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(9255), 1, + ACTIONS(10926), 1, sym__ws, - STATE(3214), 1, + STATE(3449), 1, aux_sym_read_cond_lit_repeat1, - STATE(956), 3, + STATE(2608), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170123] = 5, + [178101] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3153), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(9257), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3213), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1743), 3, + STATE(1168), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170141] = 5, + [178119] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2339), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(9259), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3286), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1703), 3, + STATE(2185), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170159] = 5, + [178137] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3153), 1, + ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10928), 1, sym__ws, - STATE(3321), 1, + STATE(3450), 1, + aux_sym_read_cond_lit_repeat1, + STATE(1013), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178155] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10930), 1, + sym__ws, + STATE(3422), 1, aux_sym_read_cond_lit_repeat1, - STATE(1762), 3, + STATE(1707), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170177] = 5, + [178173] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2799), 1, + ACTIONS(3654), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10932), 1, sym__ws, - STATE(3321), 1, + STATE(3446), 1, aux_sym_read_cond_lit_repeat1, - STATE(926), 3, + STATE(1532), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170195] = 5, + [178191] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3207), 1, + ACTIONS(3654), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10934), 1, sym__ws, - STATE(3321), 1, + STATE(3434), 1, aux_sym_read_cond_lit_repeat1, - STATE(840), 3, + STATE(1492), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170213] = 5, + [178209] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3207), 1, + ACTIONS(3654), 1, anon_sym_LPAREN, - ACTIONS(9261), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3232), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(826), 3, + STATE(1502), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170231] = 5, + [178227] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9263), 1, + ACTIONS(7095), 1, anon_sym_DQUOTE, - ACTIONS(9267), 1, + ACTIONS(10936), 1, anon_sym_TILDE, - ACTIONS(9265), 2, + ACTIONS(10910), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3221), 2, + STATE(3496), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [170249] = 5, + [178245] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3654), 1, anon_sym_LPAREN, - ACTIONS(9269), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3223), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(2368), 3, + STATE(1503), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170267] = 5, + [178263] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2799), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(9271), 1, + ACTIONS(10938), 1, sym__ws, - STATE(3224), 1, + STATE(3413), 1, aux_sym_read_cond_lit_repeat1, - STATE(1007), 3, + STATE(2441), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170285] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9273), 1, - anon_sym_DQUOTE, - ACTIONS(9277), 1, - anon_sym_TILDE, - ACTIONS(9275), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3230), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [170303] = 5, + [178281] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(6518), 1, + ACTIONS(7109), 1, anon_sym_DQUOTE, - ACTIONS(9279), 1, + ACTIONS(10940), 1, anon_sym_TILDE, - ACTIONS(9219), 2, + ACTIONS(10910), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3281), 2, + STATE(3496), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [170321] = 5, + [178299] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3127), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3233), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1240), 3, + STATE(2587), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170339] = 5, + [178317] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3321), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(2397), 3, + STATE(1040), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170357] = 5, + [178335] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2799), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10942), 1, sym__ws, - STATE(3321), 1, + STATE(3456), 1, aux_sym_read_cond_lit_repeat1, - STATE(966), 3, + STATE(2588), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170375] = 5, + [178353] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(9283), 1, + ACTIONS(10944), 1, sym__ws, - STATE(3234), 1, + STATE(3458), 1, aux_sym_read_cond_lit_repeat1, - STATE(1862), 3, + STATE(1052), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170393] = 5, + [178371] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3654), 1, anon_sym_LPAREN, - ACTIONS(9285), 1, + ACTIONS(10946), 1, sym__ws, - STATE(3228), 1, + STATE(3444), 1, aux_sym_read_cond_lit_repeat1, - STATE(2395), 3, + STATE(1531), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170411] = 5, + [178389] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2799), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(9287), 1, + ACTIONS(10948), 1, sym__ws, - STATE(3229), 1, + STATE(3412), 1, aux_sym_read_cond_lit_repeat1, - STATE(955), 3, + STATE(2608), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170429] = 5, - ACTIONS(47), 1, + [178407] = 5, + ACTIONS(3), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(9217), 1, - sym__ws, - STATE(3321), 1, - aux_sym_read_cond_lit_repeat1, - STATE(2381), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [170447] = 5, + ACTIONS(10950), 1, + anon_sym_DQUOTE, + ACTIONS(10954), 1, + anon_sym_TILDE, + ACTIONS(10952), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3448), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [178425] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2799), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3321), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(925), 3, + STATE(2590), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170465] = 5, + [178443] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(6520), 1, + ACTIONS(10956), 1, anon_sym_DQUOTE, - ACTIONS(9289), 1, + ACTIONS(10960), 1, anon_sym_TILDE, - ACTIONS(9219), 2, + ACTIONS(10958), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3281), 2, + STATE(3471), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [170483] = 5, + [178461] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3127), 1, + ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3321), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1159), 3, + STATE(985), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170501] = 5, + [178479] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3207), 1, + ACTIONS(3758), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10962), 1, sym__ws, - STATE(3321), 1, + STATE(3472), 1, aux_sym_read_cond_lit_repeat1, - STATE(839), 3, + STATE(854), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170519] = 5, + [178497] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3127), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10964), 1, sym__ws, - STATE(3321), 1, + STATE(3473), 1, aux_sym_read_cond_lit_repeat1, - STATE(1205), 3, + STATE(1221), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170537] = 5, + [178515] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3321), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1937), 3, + STATE(1647), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170555] = 5, + [178533] = 5, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9217), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3321), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1558), 3, + STATE(1617), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170573] = 5, + [178551] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3127), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(9291), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3240), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1191), 3, + STATE(2590), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170591] = 5, - ACTIONS(47), 1, + [178569] = 5, + ACTIONS(3), 1, sym_block_comment, - ACTIONS(2999), 1, - anon_sym_LPAREN, - ACTIONS(9293), 1, - sym__ws, - STATE(3241), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1931), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [170609] = 5, + ACTIONS(10966), 1, + anon_sym_DQUOTE, + ACTIONS(10970), 1, + anon_sym_TILDE, + ACTIONS(10968), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3469), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [178587] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3127), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(9295), 1, + ACTIONS(10972), 1, sym__ws, - STATE(3231), 1, + STATE(3470), 1, aux_sym_read_cond_lit_repeat1, - STATE(1190), 3, + STATE(2357), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170627] = 5, + [178605] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9297), 1, + ACTIONS(7105), 1, anon_sym_DQUOTE, - ACTIONS(9301), 1, + ACTIONS(10974), 1, anon_sym_TILDE, - ACTIONS(9299), 2, + ACTIONS(10910), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3290), 2, + STATE(3496), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [170645] = 5, + [178623] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3127), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3321), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1161), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170663] = 5, + [178641] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10976), 1, sym__ws, - STATE(3321), 1, + STATE(3415), 1, aux_sym_read_cond_lit_repeat1, - STATE(1922), 3, + STATE(2155), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170681] = 5, + [178659] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(6534), 1, + ACTIONS(7115), 1, anon_sym_DQUOTE, - ACTIONS(9303), 1, + ACTIONS(10978), 1, anon_sym_TILDE, - ACTIONS(9219), 2, + ACTIONS(10910), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3281), 2, + STATE(3496), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [170699] = 5, + [178677] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3153), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3321), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(2088), 3, + STATE(2373), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170717] = 5, + [178695] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(7079), 1, + anon_sym_DQUOTE, + ACTIONS(10980), 1, + anon_sym_TILDE, + ACTIONS(10910), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3496), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [178713] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3153), 1, + ACTIONS(3758), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3321), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(2218), 3, + STATE(873), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170735] = 5, + [178731] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3153), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(9305), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3249), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(2090), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170753] = 5, + [178749] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3153), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(9307), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3250), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(2233), 3, + STATE(2444), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170771] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [178767] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9217), 1, - sym__ws, - STATE(3321), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1529), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [170789] = 5, - ACTIONS(29), 1, + ACTIONS(3758), 1, anon_sym_LPAREN, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(9217), 1, + ACTIONS(10982), 1, sym__ws, - STATE(3321), 1, + STATE(3492), 1, aux_sym_read_cond_lit_repeat1, - STATE(1579), 3, + STATE(882), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170807] = 5, + [178785] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3153), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10984), 1, sym__ws, - STATE(3321), 1, + STATE(3494), 1, aux_sym_read_cond_lit_repeat1, - STATE(2114), 3, + STATE(1180), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170825] = 5, + [178803] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3153), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10986), 1, sym__ws, - STATE(3321), 1, + STATE(3479), 1, aux_sym_read_cond_lit_repeat1, - STATE(2297), 3, + STATE(2354), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170843] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [178821] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9309), 1, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(10988), 1, sym__ws, - STATE(3235), 1, + STATE(3480), 1, aux_sym_read_cond_lit_repeat1, - STATE(1571), 3, + STATE(2458), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170861] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [178839] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9311), 1, + ACTIONS(2928), 1, + anon_sym_LPAREN, + ACTIONS(10882), 1, sym__ws, - STATE(3288), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1570), 3, + STATE(2356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170879] = 5, + [178857] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3375), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3321), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1326), 3, + STATE(2466), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170897] = 5, + [178875] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(7119), 1, + anon_sym_DQUOTE, + ACTIONS(10990), 1, + anon_sym_TILDE, + ACTIONS(10910), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3496), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [178893] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3375), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(9313), 1, + ACTIONS(10992), 1, sym__ws, - STATE(3253), 1, + STATE(3485), 1, aux_sym_read_cond_lit_repeat1, - STATE(1299), 3, + STATE(1397), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170915] = 5, + [178911] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9315), 1, + ACTIONS(10994), 1, anon_sym_DQUOTE, - ACTIONS(9319), 1, + ACTIONS(10998), 1, anon_sym_TILDE, - ACTIONS(9317), 2, + ACTIONS(10996), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3266), 2, + STATE(3514), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [170933] = 5, + [178929] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2339), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, + ACTIONS(11000), 1, sym__ws, - STATE(3270), 1, + STATE(3486), 1, aux_sym_read_cond_lit_repeat1, - STATE(2131), 3, + STATE(1834), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170951] = 5, + [178947] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(9323), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3271), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(2256), 3, + STATE(1388), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170969] = 5, + [178965] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3375), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3321), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1287), 3, + STATE(1821), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170987] = 5, + [178983] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3127), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(11002), 1, sym__ws, - STATE(3321), 1, + STATE(3495), 1, aux_sym_read_cond_lit_repeat1, - STATE(1204), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171005] = 5, + [179001] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3375), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(9325), 1, + ACTIONS(11004), 1, sym__ws, - STATE(3258), 1, + STATE(3463), 1, aux_sym_read_cond_lit_repeat1, - STATE(1374), 3, + STATE(2588), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171023] = 5, + [179019] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3207), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(11006), 1, sym__ws, - STATE(3321), 1, + STATE(3513), 1, aux_sym_read_cond_lit_repeat1, - STATE(817), 3, + STATE(2346), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171041] = 5, + [179037] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4093), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3321), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1444), 3, + STATE(1803), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171059] = 5, + [179055] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4093), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3321), 1, + STATE(3572), 1, + aux_sym_read_cond_lit_repeat1, + STATE(2186), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [179073] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(3758), 1, + anon_sym_LPAREN, + ACTIONS(10882), 1, + sym__ws, + STATE(3572), 1, + aux_sym_read_cond_lit_repeat1, + STATE(895), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [179091] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(2928), 1, + anon_sym_LPAREN, + ACTIONS(11008), 1, + sym__ws, + STATE(3497), 1, aux_sym_read_cond_lit_repeat1, - STATE(1443), 3, + STATE(1812), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171077] = 5, + [179109] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4093), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(9327), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3262), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1431), 3, + STATE(1167), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171095] = 5, + [179127] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4093), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(9329), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3263), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1430), 3, + STATE(1383), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171113] = 5, + [179145] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(6546), 1, + ACTIONS(11010), 1, anon_sym_DQUOTE, - ACTIONS(9331), 1, + ACTIONS(11015), 1, anon_sym_TILDE, - ACTIONS(9219), 2, + ACTIONS(11012), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3281), 2, + STATE(3496), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [171131] = 5, + [179163] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4093), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3321), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1387), 3, + STATE(1803), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171149] = 5, + [179181] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4093), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(11018), 1, sym__ws, - STATE(3321), 1, + STATE(3503), 1, aux_sym_read_cond_lit_repeat1, - STATE(1422), 3, + STATE(1363), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171167] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6494), 1, - aux_sym_num_lit_token1, - ACTIONS(6502), 1, - anon_sym_SQUOTE, - ACTIONS(7460), 1, - anon_sym_COMMA, - ACTIONS(7464), 1, - aux_sym_format_directive_type_token11, - STATE(2376), 2, - sym__format_token, - aux_sym_format_modifiers_repeat1, - [171187] = 5, + [179199] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2339), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(11020), 1, sym__ws, - STATE(3321), 1, + STATE(3418), 1, aux_sym_read_cond_lit_repeat1, - STATE(2120), 3, + STATE(2458), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171205] = 5, + [179217] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3321), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(2218), 3, + STATE(2466), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171223] = 5, + [179235] = 5, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9333), 1, - sym__ws, - STATE(3247), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1602), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [171241] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4093), 1, - anon_sym_LPAREN, - ACTIONS(9335), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3267), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1404), 3, + STATE(1641), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171259] = 5, + [179253] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4093), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(9337), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3268), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1403), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171277] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9339), 1, - anon_sym_DQUOTE, - ACTIONS(9343), 1, - anon_sym_TILDE, - ACTIONS(9341), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3196), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [171295] = 5, + [179271] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3375), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3321), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1257), 3, + STATE(1346), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171313] = 5, + [179289] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(9345), 1, + ACTIONS(11022), 1, sym__ws, - STATE(3285), 1, + STATE(3490), 1, aux_sym_read_cond_lit_repeat1, - STATE(2233), 3, + STATE(1812), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171331] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(6542), 1, - anon_sym_DQUOTE, - ACTIONS(9347), 1, - anon_sym_TILDE, - ACTIONS(9219), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3281), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [171349] = 5, + [179307] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2339), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(11024), 1, sym__ws, - STATE(3321), 1, + STATE(3491), 1, aux_sym_read_cond_lit_repeat1, - STATE(1762), 3, + STATE(2194), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171367] = 5, + [179325] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3375), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(11026), 1, sym__ws, - STATE(3321), 1, + STATE(3411), 1, aux_sym_read_cond_lit_repeat1, - STATE(1310), 3, + STATE(1338), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171385] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(9349), 1, - anon_sym_DQUOTE, - ACTIONS(9354), 1, - anon_sym_TILDE, - ACTIONS(9351), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3281), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [171403] = 5, + [179343] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2339), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(9357), 1, + ACTIONS(11028), 1, sym__ws, - STATE(3279), 1, + STATE(3508), 1, aux_sym_read_cond_lit_repeat1, - STATE(1743), 3, + STATE(1834), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171421] = 5, + [179361] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2339), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3321), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(2126), 3, + STATE(1821), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171439] = 5, + [179379] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3375), 1, + ACTIONS(3772), 1, anon_sym_LPAREN, - ACTIONS(9359), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3280), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1288), 3, + STATE(2196), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171457] = 5, + [179397] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(11030), 1, sym__ws, - STATE(3321), 1, + STATE(3500), 1, aux_sym_read_cond_lit_repeat1, - STATE(2297), 3, + STATE(2458), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171475] = 5, + [179415] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2339), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(11032), 1, sym__ws, - STATE(3321), 1, + STATE(3502), 1, aux_sym_read_cond_lit_repeat1, - STATE(1732), 3, + STATE(2317), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171493] = 5, + [179433] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2339), 1, - anon_sym_LPAREN, - ACTIONS(9361), 1, - sym__ws, - STATE(3283), 1, - aux_sym_read_cond_lit_repeat1, - STATE(2128), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [171511] = 5, - ACTIONS(29), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(9217), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3321), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1557), 3, + STATE(2444), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171529] = 5, + [179451] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2999), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(9217), 1, + ACTIONS(10882), 1, sym__ws, - STATE(3321), 1, + STATE(3572), 1, aux_sym_read_cond_lit_repeat1, - STATE(1829), 3, + STATE(2320), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171547] = 5, + [179469] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(6538), 1, + ACTIONS(7101), 1, anon_sym_DQUOTE, - ACTIONS(9363), 1, + ACTIONS(11034), 1, anon_sym_TILDE, - ACTIONS(9219), 2, + ACTIONS(10910), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3281), 2, + STATE(3496), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [171565] = 5, + [179487] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9365), 1, + ACTIONS(7125), 1, anon_sym_DQUOTE, - ACTIONS(9369), 1, + ACTIONS(11036), 1, anon_sym_TILDE, - ACTIONS(9367), 2, + ACTIONS(10910), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3278), 2, + STATE(3496), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [171583] = 5, + [179505] = 5, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9371), 1, + ACTIONS(11038), 1, sym__ws, - STATE(3248), 1, + STATE(3461), 1, aux_sym_read_cond_lit_repeat1, - STATE(1601), 3, + STATE(1649), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171601] = 5, + [179523] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3127), 1, - anon_sym_LPAREN, - ACTIONS(9373), 1, + ACTIONS(11040), 1, sym__ws, - STATE(3259), 1, + STATE(3462), 1, aux_sym_read_cond_lit_repeat1, - STATE(1241), 3, + STATE(1656), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171619] = 5, + [179541] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(11042), 1, + anon_sym_DQUOTE, + ACTIONS(11046), 1, + anon_sym_TILDE, + ACTIONS(11044), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3481), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [179559] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3207), 1, + ACTIONS(3852), 1, anon_sym_LPAREN, - ACTIONS(9375), 1, + ACTIONS(11048), 1, sym__ws, - STATE(3261), 1, + STATE(3512), 1, aux_sym_read_cond_lit_repeat1, - STATE(798), 3, + STATE(2441), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [171637] = 5, + [179577] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(7093), 1, + anon_sym_DQUOTE, + ACTIONS(11050), 1, + anon_sym_TILDE, + ACTIONS(10910), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3496), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [179595] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9377), 1, - anon_sym_COLON, - ACTIONS(9381), 1, - aux_sym__sym_lit_without_slash_token1, - STATE(3296), 1, - aux_sym__sym_lit_without_slash_repeat1, - ACTIONS(9379), 2, - anon_sym_COLON_COLON, - anon_sym_SLASH, - [171654] = 5, + ACTIONS(7075), 1, + aux_sym_num_lit_token1, + ACTIONS(7083), 1, + anon_sym_SQUOTE, + ACTIONS(9162), 1, + anon_sym_COMMA, + ACTIONS(9166), 1, + aux_sym_format_directive_type_token11, + STATE(2589), 2, + sym__format_token, + aux_sym_format_modifiers_repeat1, + [179615] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(11052), 1, + anon_sym_DQUOTE, + ACTIONS(11056), 1, + anon_sym_TILDE, + ACTIONS(11054), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3515), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [179633] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9383), 1, - anon_sym_COLON, - ACTIONS(9387), 1, - aux_sym__sym_lit_without_slash_token1, - STATE(3296), 1, - aux_sym__sym_lit_without_slash_repeat1, - ACTIONS(9385), 2, - anon_sym_COLON_COLON, - anon_sym_SLASH, - [171671] = 3, + ACTIONS(3772), 1, + anon_sym_LPAREN, + ACTIONS(11058), 1, + sym__ws, + STATE(3509), 1, + aux_sym_read_cond_lit_repeat1, + STATE(2207), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [179651] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9390), 1, + ACTIONS(11060), 1, anon_sym_loop, - ACTIONS(9392), 4, + ACTIONS(11062), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [171684] = 3, + [179664] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9394), 1, + ACTIONS(11064), 1, anon_sym_loop, - ACTIONS(9392), 4, + ACTIONS(11062), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [171697] = 3, + [179677] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9396), 1, + ACTIONS(11066), 1, anon_sym_loop, - ACTIONS(9392), 4, + ACTIONS(11062), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [171710] = 3, + [179690] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9398), 1, + ACTIONS(11068), 1, anon_sym_loop, - ACTIONS(9392), 4, + ACTIONS(11062), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [171723] = 3, + [179703] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9400), 1, + ACTIONS(11070), 1, anon_sym_loop, - ACTIONS(9392), 4, + ACTIONS(11062), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [171736] = 3, + [179716] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(11072), 1, + anon_sym_COLON, + ACTIONS(11076), 1, + aux_sym__sym_lit_without_slash_token1, + STATE(3530), 1, + aux_sym__sym_lit_without_slash_repeat1, + ACTIONS(11074), 2, + anon_sym_COLON_COLON, + anon_sym_SLASH, + [179733] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9402), 1, + ACTIONS(11078), 1, + anon_sym_COLON, + ACTIONS(11082), 1, + aux_sym__sym_lit_without_slash_token1, + STATE(3530), 1, + aux_sym__sym_lit_without_slash_repeat1, + ACTIONS(11080), 2, + anon_sym_COLON_COLON, + anon_sym_SLASH, + [179750] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(11085), 1, anon_sym_loop, - ACTIONS(9392), 4, + ACTIONS(11062), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [171749] = 3, + [179763] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9404), 1, + ACTIONS(11087), 1, anon_sym_loop, - ACTIONS(9392), 4, + ACTIONS(11062), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [171762] = 3, + [179776] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9406), 1, + ACTIONS(11089), 1, anon_sym_loop, - ACTIONS(9392), 4, + ACTIONS(11062), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [171775] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(9408), 1, - anon_sym_cl, - ACTIONS(9410), 1, - aux_sym__sym_lit_without_slash_token1, - STATE(3295), 1, - aux_sym__sym_lit_without_slash_repeat1, - STATE(3328), 1, - sym__sym_lit_without_slash, - STATE(3391), 1, - sym__package_lit_without_slash, - [171794] = 3, + [179789] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9412), 1, + ACTIONS(11091), 1, anon_sym_loop, - ACTIONS(9392), 4, + ACTIONS(11062), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [171807] = 3, + [179802] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9414), 1, + ACTIONS(11093), 1, anon_sym_loop, - ACTIONS(9392), 4, + ACTIONS(11062), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [171820] = 2, + [179815] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(11095), 1, + anon_sym_cl, + ACTIONS(11097), 1, + aux_sym__sym_lit_without_slash_token1, + STATE(3529), 1, + aux_sym__sym_lit_without_slash_repeat1, + STATE(3548), 1, + sym__sym_lit_without_slash, + STATE(3596), 1, + sym__package_lit_without_slash, + [179834] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9416), 4, + ACTIONS(11099), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [171830] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(9418), 1, - anon_sym_COLON, - ACTIONS(9420), 3, - anon_sym_COLON_COLON, - anon_sym_SLASH, - aux_sym__sym_lit_without_slash_token1, - [171842] = 2, + [179844] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9422), 4, + ACTIONS(11101), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [171852] = 2, + [179854] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9424), 4, + ACTIONS(11103), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [171862] = 2, + [179864] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9426), 4, + ACTIONS(11105), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [171872] = 2, + [179874] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(11107), 1, + anon_sym_COLON, + ACTIONS(11109), 3, + anon_sym_COLON_COLON, + anon_sym_SLASH, + aux_sym__sym_lit_without_slash_token1, + [179886] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9428), 4, + ACTIONS(11111), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [171882] = 2, + [179896] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9430), 4, + ACTIONS(11113), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [171892] = 2, + [179906] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9432), 4, + ACTIONS(11115), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [171902] = 2, + [179916] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9434), 4, + ACTIONS(11117), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [171912] = 2, + [179926] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(9436), 4, + ACTIONS(11119), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [171922] = 4, + [179936] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(166), 1, + ACTIONS(11076), 1, + aux_sym__sym_lit_without_slash_token1, + STATE(3529), 1, + aux_sym__sym_lit_without_slash_repeat1, + STATE(3608), 1, + sym__sym_lit_without_slash, + [179949] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(11121), 1, + anon_sym_COLON, + ACTIONS(11123), 1, + anon_sym_COLON_COLON, + ACTIONS(11125), 1, + anon_sym_SLASH, + [179962] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(9438), 1, + ACTIONS(11127), 1, anon_sym_EQ, - STATE(1935), 1, + STATE(880), 1, sym_sym_lit, - [171935] = 4, + [179975] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(166), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(9440), 1, + ACTIONS(11129), 1, anon_sym_EQ, - STATE(1935), 1, + STATE(880), 1, sym_sym_lit, - [171948] = 4, + [179988] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(166), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(9442), 1, + ACTIONS(11131), 1, anon_sym_EQ, - STATE(1935), 1, + STATE(880), 1, sym_sym_lit, - [171961] = 4, + [180001] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9444), 1, - sym__ws, - ACTIONS(9447), 1, - anon_sym_LPAREN, - STATE(3321), 1, - aux_sym_read_cond_lit_repeat1, - [171974] = 4, + ACTIONS(141), 1, + aux_sym_sym_lit_token1, + ACTIONS(11133), 1, + anon_sym_EQ, + STATE(2152), 1, + sym_sym_lit, + [180014] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(166), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(9449), 1, + ACTIONS(11135), 1, anon_sym_EQ, - STATE(1935), 1, + STATE(880), 1, sym_sym_lit, - [171987] = 4, + [180027] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(9451), 1, + ACTIONS(11137), 1, anon_sym_EQ, - STATE(1935), 1, + STATE(2152), 1, sym_sym_lit, - [172000] = 4, + [180040] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9381), 1, - aux_sym__sym_lit_without_slash_token1, - STATE(3295), 1, - aux_sym__sym_lit_without_slash_repeat1, - STATE(3371), 1, - sym__sym_lit_without_slash, - [172013] = 4, + ACTIONS(141), 1, + aux_sym_sym_lit_token1, + ACTIONS(11139), 1, + anon_sym_EQ, + STATE(2152), 1, + sym_sym_lit, + [180053] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(9453), 1, + ACTIONS(11141), 1, anon_sym_EQ, - STATE(1935), 1, + STATE(2152), 1, sym_sym_lit, - [172026] = 4, + [180066] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(9455), 1, + ACTIONS(11143), 1, anon_sym_EQ, - STATE(1935), 1, + STATE(2152), 1, sym_sym_lit, - [172039] = 4, + [180079] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(9457), 1, + ACTIONS(11145), 1, anon_sym_EQ, - STATE(1935), 1, + STATE(2152), 1, sym_sym_lit, - [172052] = 4, + [180092] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9459), 1, - anon_sym_COLON, - ACTIONS(9461), 1, - anon_sym_COLON_COLON, - ACTIONS(9463), 1, - anon_sym_SLASH, - [172065] = 4, + ACTIONS(141), 1, + aux_sym_sym_lit_token1, + ACTIONS(11147), 1, + anon_sym_EQ, + STATE(2152), 1, + sym_sym_lit, + [180105] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(166), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - ACTIONS(9465), 1, + ACTIONS(11149), 1, anon_sym_EQ, - STATE(1935), 1, + STATE(880), 1, sym_sym_lit, - [172078] = 4, + [180118] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(9467), 1, + ACTIONS(11151), 1, anon_sym_EQ, - STATE(1935), 1, + STATE(2152), 1, sym_sym_lit, - [172091] = 4, + [180131] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(9469), 1, + ACTIONS(11153), 1, anon_sym_EQ, - STATE(1935), 1, + STATE(2152), 1, sym_sym_lit, - [172104] = 4, + [180144] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(166), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - ACTIONS(9471), 1, + ACTIONS(11155), 1, anon_sym_EQ, - STATE(1935), 1, + STATE(2152), 1, sym_sym_lit, - [172117] = 3, + [180157] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6946), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - STATE(1573), 1, + ACTIONS(11157), 1, + anon_sym_EQ, + STATE(880), 1, sym_sym_lit, - [172127] = 3, + [180170] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9473), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - STATE(1297), 1, + ACTIONS(11159), 1, + anon_sym_EQ, + STATE(880), 1, sym_sym_lit, - [172137] = 3, + [180183] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9459), 1, - anon_sym_COLON, - ACTIONS(9461), 1, - anon_sym_COLON_COLON, - [172147] = 3, + ACTIONS(141), 1, + aux_sym_sym_lit_token1, + ACTIONS(11161), 1, + anon_sym_EQ, + STATE(2152), 1, + sym_sym_lit, + [180196] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9475), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - STATE(1196), 1, + ACTIONS(11163), 1, + anon_sym_EQ, + STATE(2152), 1, sym_sym_lit, - [172157] = 3, + [180209] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9477), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - STATE(1941), 1, - sym_kwd_symbol, - [172167] = 3, + ACTIONS(11165), 1, + anon_sym_EQ, + STATE(2152), 1, + sym_sym_lit, + [180222] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9479), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - STATE(1236), 1, - sym_kwd_symbol, - [172177] = 3, + ACTIONS(11167), 1, + anon_sym_EQ, + STATE(2152), 1, + sym_sym_lit, + [180235] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9481), 1, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - STATE(1738), 1, + ACTIONS(11169), 1, + anon_sym_EQ, + STATE(2152), 1, sym_sym_lit, - [172187] = 3, + [180248] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9483), 1, + ACTIONS(77), 1, aux_sym_sym_lit_token1, - STATE(2139), 1, - sym_kwd_symbol, - [172197] = 3, + ACTIONS(11171), 1, + anon_sym_EQ, + STATE(880), 1, + sym_sym_lit, + [180261] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9485), 1, + ACTIONS(11173), 1, + sym__ws, + ACTIONS(11176), 1, + anon_sym_LPAREN, + STATE(3572), 1, + aux_sym_read_cond_lit_repeat1, + [180274] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(141), 1, aux_sym_sym_lit_token1, - STATE(2099), 1, - sym_kwd_symbol, - [172207] = 3, + ACTIONS(11178), 1, + anon_sym_EQ, + STATE(2152), 1, + sym_sym_lit, + [180287] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9487), 1, + ACTIONS(11121), 1, + anon_sym_COLON, + ACTIONS(11123), 1, + anon_sym_COLON_COLON, + [180297] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8619), 1, + aux_sym_sym_lit_token1, + STATE(2456), 1, + sym_sym_lit, + [180307] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(11180), 1, aux_sym_sym_lit_token1, - STATE(1428), 1, + STATE(1184), 1, sym_sym_lit, - [172217] = 3, + [180317] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9489), 1, + ACTIONS(11182), 1, aux_sym_sym_lit_token1, - STATE(1608), 1, + STATE(1226), 1, sym_kwd_symbol, - [172227] = 3, + [180327] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6936), 1, + ACTIONS(11184), 1, aux_sym_sym_lit_token1, - STATE(2230), 1, + STATE(1496), 1, sym_sym_lit, - [172237] = 3, + [180337] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9491), 1, + ACTIONS(11186), 1, aux_sym_sym_lit_token1, - STATE(794), 1, + STATE(1049), 1, + sym_sym_lit, + [180347] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(11188), 1, + aux_sym_sym_lit_token1, + STATE(2342), 1, sym_kwd_symbol, - [172247] = 3, + [180357] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9493), 1, + ACTIONS(11190), 1, aux_sym_sym_lit_token1, - STATE(1320), 1, + STATE(2606), 1, sym_kwd_symbol, - [172257] = 3, + [180367] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6954), 1, + ACTIONS(11192), 1, aux_sym_sym_lit_token1, - STATE(2230), 1, - sym_sym_lit, - [172267] = 3, + STATE(1400), 1, + sym_kwd_symbol, + [180377] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(11194), 1, + aux_sym_sym_lit_token1, + STATE(1005), 1, + sym_kwd_symbol, + [180387] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9495), 1, + ACTIONS(8631), 1, aux_sym_sym_lit_token1, - STATE(960), 1, + STATE(1815), 1, sym_sym_lit, - [172277] = 3, + [180397] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9497), 1, + ACTIONS(11196), 1, aux_sym_sym_lit_token1, - STATE(2373), 1, - sym_kwd_symbol, - [172287] = 3, + STATE(880), 1, + sym_sym_lit, + [180407] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6954), 1, + ACTIONS(8631), 1, aux_sym_sym_lit_token1, - STATE(1738), 1, + STATE(2456), 1, sym_sym_lit, - [172297] = 3, + [180417] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9499), 1, + ACTIONS(11198), 1, aux_sym_sym_lit_token1, - STATE(1014), 1, + STATE(1620), 1, sym_kwd_symbol, - [172307] = 3, + [180427] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9501), 1, + ACTIONS(11200), 1, aux_sym_sym_lit_token1, - STATE(1399), 1, + STATE(1536), 1, sym_kwd_symbol, - [172317] = 3, + [180437] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9503), 1, + ACTIONS(11202), 1, aux_sym_sym_lit_token1, - STATE(824), 1, + STATE(850), 1, + sym_kwd_symbol, + [180447] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8639), 1, + aux_sym_sym_lit_token1, + STATE(1714), 1, sym_sym_lit, - [172327] = 3, + [180457] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9505), 1, + ACTIONS(11204), 1, aux_sym_sym_lit_token1, - STATE(1935), 1, + STATE(1815), 1, sym_sym_lit, - [172337] = 2, + [180467] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5451), 1, - anon_sym_LBRACE, - [172344] = 2, + ACTIONS(11206), 1, + aux_sym_sym_lit_token1, + STATE(2360), 1, + sym_kwd_symbol, + [180477] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9507), 1, - anon_sym_into, - [172351] = 2, + ACTIONS(11208), 1, + aux_sym_sym_lit_token1, + STATE(2218), 1, + sym_kwd_symbol, + [180487] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9509), 1, - anon_sym_COLON, - [172358] = 2, + ACTIONS(11210), 1, + aux_sym_sym_lit_token1, + STATE(1340), 1, + sym_sym_lit, + [180497] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9511), 1, - anon_sym_COLON, - [172365] = 2, + ACTIONS(11212), 1, + aux_sym_sym_lit_token1, + STATE(2152), 1, + sym_sym_lit, + [180507] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(11214), 1, + anon_sym_SLASH, + [180514] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9513), 1, + ACTIONS(11216), 1, aux_sym_regex_lit_token1, - [172372] = 2, + [180521] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9515), 1, + ACTIONS(11218), 1, anon_sym_COLON, - [172379] = 2, + [180528] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5463), 1, + ACTIONS(6046), 1, anon_sym_LBRACE, - [172386] = 2, + [180535] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9517), 1, + ACTIONS(11220), 1, anon_sym_COLON, - [172393] = 2, + [180542] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9519), 1, + ACTIONS(11222), 1, anon_sym_COLON, - [172400] = 2, + [180549] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9521), 1, - anon_sym_into, - [172407] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(9523), 1, + ACTIONS(11224), 1, aux_sym_regex_lit_token1, - [172414] = 2, + [180556] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9525), 1, + ACTIONS(11226), 1, anon_sym_COLON, - [172421] = 2, + [180563] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9527), 1, + ACTIONS(11228), 1, aux_sym_regex_lit_token1, - [172428] = 2, + [180570] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9529), 1, + ACTIONS(11230), 1, anon_sym_COLON, - [172435] = 2, + [180577] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5479), 1, + ACTIONS(6070), 1, anon_sym_LBRACE, - [172442] = 2, + [180584] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5427), 1, + ACTIONS(6022), 1, anon_sym_LBRACE, - [172449] = 2, + [180591] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9531), 1, + ACTIONS(11232), 1, anon_sym_SLASH, - [172456] = 2, + [180598] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9533), 1, + ACTIONS(11234), 1, anon_sym_COLON, - [172463] = 2, + [180605] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9535), 1, - ts_builtin_sym_end, - [172470] = 2, + ACTIONS(6034), 1, + anon_sym_LBRACE, + [180612] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9537), 1, + ACTIONS(11236), 1, + aux_sym_regex_lit_token1, + [180619] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(11238), 1, anon_sym_COLON, - [172477] = 2, + [180626] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9539), 1, + ACTIONS(11240), 1, anon_sym_into, - [172484] = 2, + [180633] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9541), 1, + ACTIONS(11242), 1, anon_sym_COLON, - [172491] = 2, + [180640] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9543), 1, + ACTIONS(11244), 1, anon_sym_COLON, - [172498] = 2, + [180647] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5519), 1, - anon_sym_LBRACE, - [172505] = 2, + ACTIONS(11246), 1, + anon_sym_COLON, + [180654] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9545), 1, - anon_sym_COLON, - [172512] = 2, + ACTIONS(11248), 1, + anon_sym_into, + [180661] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5535), 1, + ACTIONS(6082), 1, anon_sym_LBRACE, - [172519] = 2, + [180668] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9547), 1, - aux_sym__format_token_token1, - [172526] = 2, + ACTIONS(11250), 1, + anon_sym_COLON, + [180675] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9549), 1, + ACTIONS(11252), 1, aux_sym_regex_lit_token1, - [172533] = 2, + [180682] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5503), 1, - anon_sym_LBRACE, - [172540] = 2, + ACTIONS(11254), 1, + anon_sym_COLON, + [180689] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9551), 1, - aux_sym_regex_lit_token1, - [172547] = 2, + ACTIONS(5982), 1, + anon_sym_LBRACE, + [180696] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5439), 1, + ACTIONS(6010), 1, anon_sym_LBRACE, - [172554] = 2, + [180703] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5491), 1, + ACTIONS(11256), 1, + ts_builtin_sym_end, + [180710] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5998), 1, anon_sym_LBRACE, - [172561] = 2, + [180717] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9553), 1, - anon_sym_COLON, - [172568] = 2, + ACTIONS(11258), 1, + aux_sym_regex_lit_token1, + [180724] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9555), 1, + ACTIONS(11260), 1, anon_sym_COLON, - [172575] = 2, + [180731] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9557), 1, - aux_sym_regex_lit_token1, - [172582] = 2, + ACTIONS(11262), 1, + aux_sym__format_token_token1, + [180738] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9559), 1, + ACTIONS(11264), 1, aux_sym_regex_lit_token1, - [172589] = 2, + [180745] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9561), 1, - anon_sym_SLASH, - [172596] = 2, + ACTIONS(11266), 1, + anon_sym_COLON, + [180752] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9563), 1, - aux_sym_regex_lit_token1, - [172603] = 2, + ACTIONS(11268), 1, + anon_sym_COLON, + [180759] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9565), 1, + ACTIONS(11270), 1, + anon_sym_COLON, + [180766] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(11272), 1, anon_sym_into, - [172610] = 2, + [180773] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9567), 1, + ACTIONS(11274), 1, aux_sym_regex_lit_token1, - [172617] = 2, + [180780] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9569), 1, - anon_sym_COLON, - [172624] = 2, + ACTIONS(11276), 1, + aux_sym_regex_lit_token1, + [180787] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9571), 1, - anon_sym_COLON, + ACTIONS(11278), 1, + anon_sym_into, + [180794] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6058), 1, + anon_sym_LBRACE, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(208)] = 0, - [SMALL_STATE(209)] = 135, - [SMALL_STATE(210)] = 270, - [SMALL_STATE(211)] = 405, - [SMALL_STATE(212)] = 540, - [SMALL_STATE(213)] = 675, - [SMALL_STATE(214)] = 810, - [SMALL_STATE(215)] = 945, - [SMALL_STATE(216)] = 1080, - [SMALL_STATE(217)] = 1215, - [SMALL_STATE(218)] = 1350, - [SMALL_STATE(219)] = 1485, - [SMALL_STATE(220)] = 1620, - [SMALL_STATE(221)] = 1755, - [SMALL_STATE(222)] = 1890, - [SMALL_STATE(223)] = 2025, - [SMALL_STATE(224)] = 2160, - [SMALL_STATE(225)] = 2295, - [SMALL_STATE(226)] = 2430, - [SMALL_STATE(227)] = 2565, - [SMALL_STATE(228)] = 2700, - [SMALL_STATE(229)] = 2835, - [SMALL_STATE(230)] = 2970, - [SMALL_STATE(231)] = 3105, - [SMALL_STATE(232)] = 3240, - [SMALL_STATE(233)] = 3375, - [SMALL_STATE(234)] = 3510, - [SMALL_STATE(235)] = 3645, - [SMALL_STATE(236)] = 3780, - [SMALL_STATE(237)] = 3915, - [SMALL_STATE(238)] = 4050, - [SMALL_STATE(239)] = 4185, - [SMALL_STATE(240)] = 4320, - [SMALL_STATE(241)] = 4455, - [SMALL_STATE(242)] = 4590, - [SMALL_STATE(243)] = 4725, - [SMALL_STATE(244)] = 4860, - [SMALL_STATE(245)] = 4995, - [SMALL_STATE(246)] = 5130, - [SMALL_STATE(247)] = 5265, - [SMALL_STATE(248)] = 5400, - [SMALL_STATE(249)] = 5535, - [SMALL_STATE(250)] = 5670, - [SMALL_STATE(251)] = 5805, - [SMALL_STATE(252)] = 5940, - [SMALL_STATE(253)] = 6075, - [SMALL_STATE(254)] = 6210, - [SMALL_STATE(255)] = 6345, - [SMALL_STATE(256)] = 6480, - [SMALL_STATE(257)] = 6615, - [SMALL_STATE(258)] = 6750, - [SMALL_STATE(259)] = 6885, - [SMALL_STATE(260)] = 7020, - [SMALL_STATE(261)] = 7155, - [SMALL_STATE(262)] = 7290, - [SMALL_STATE(263)] = 7425, - [SMALL_STATE(264)] = 7560, - [SMALL_STATE(265)] = 7695, - [SMALL_STATE(266)] = 7830, - [SMALL_STATE(267)] = 7965, - [SMALL_STATE(268)] = 8100, - [SMALL_STATE(269)] = 8235, - [SMALL_STATE(270)] = 8370, - [SMALL_STATE(271)] = 8505, - [SMALL_STATE(272)] = 8640, - [SMALL_STATE(273)] = 8775, - [SMALL_STATE(274)] = 8910, - [SMALL_STATE(275)] = 9045, - [SMALL_STATE(276)] = 9180, - [SMALL_STATE(277)] = 9315, - [SMALL_STATE(278)] = 9450, - [SMALL_STATE(279)] = 9585, - [SMALL_STATE(280)] = 9720, - [SMALL_STATE(281)] = 9855, - [SMALL_STATE(282)] = 9990, - [SMALL_STATE(283)] = 10125, - [SMALL_STATE(284)] = 10260, - [SMALL_STATE(285)] = 10395, - [SMALL_STATE(286)] = 10530, - [SMALL_STATE(287)] = 10665, - [SMALL_STATE(288)] = 10800, - [SMALL_STATE(289)] = 10935, - [SMALL_STATE(290)] = 11070, - [SMALL_STATE(291)] = 11205, - [SMALL_STATE(292)] = 11340, - [SMALL_STATE(293)] = 11475, - [SMALL_STATE(294)] = 11610, - [SMALL_STATE(295)] = 11745, - [SMALL_STATE(296)] = 11880, - [SMALL_STATE(297)] = 12015, - [SMALL_STATE(298)] = 12150, - [SMALL_STATE(299)] = 12285, - [SMALL_STATE(300)] = 12420, - [SMALL_STATE(301)] = 12555, - [SMALL_STATE(302)] = 12690, - [SMALL_STATE(303)] = 12825, - [SMALL_STATE(304)] = 12960, - [SMALL_STATE(305)] = 13095, - [SMALL_STATE(306)] = 13230, - [SMALL_STATE(307)] = 13365, - [SMALL_STATE(308)] = 13500, - [SMALL_STATE(309)] = 13635, - [SMALL_STATE(310)] = 13770, - [SMALL_STATE(311)] = 13905, - [SMALL_STATE(312)] = 14040, - [SMALL_STATE(313)] = 14175, - [SMALL_STATE(314)] = 14310, - [SMALL_STATE(315)] = 14445, - [SMALL_STATE(316)] = 14580, - [SMALL_STATE(317)] = 14715, - [SMALL_STATE(318)] = 14850, - [SMALL_STATE(319)] = 14985, - [SMALL_STATE(320)] = 15120, - [SMALL_STATE(321)] = 15255, - [SMALL_STATE(322)] = 15390, - [SMALL_STATE(323)] = 15525, - [SMALL_STATE(324)] = 15660, - [SMALL_STATE(325)] = 15795, - [SMALL_STATE(326)] = 15930, - [SMALL_STATE(327)] = 16065, - [SMALL_STATE(328)] = 16200, - [SMALL_STATE(329)] = 16335, - [SMALL_STATE(330)] = 16470, - [SMALL_STATE(331)] = 16605, - [SMALL_STATE(332)] = 16740, - [SMALL_STATE(333)] = 16875, - [SMALL_STATE(334)] = 17010, - [SMALL_STATE(335)] = 17145, - [SMALL_STATE(336)] = 17280, - [SMALL_STATE(337)] = 17415, - [SMALL_STATE(338)] = 17550, - [SMALL_STATE(339)] = 17685, - [SMALL_STATE(340)] = 17820, - [SMALL_STATE(341)] = 17955, - [SMALL_STATE(342)] = 18090, - [SMALL_STATE(343)] = 18225, - [SMALL_STATE(344)] = 18360, - [SMALL_STATE(345)] = 18495, - [SMALL_STATE(346)] = 18630, - [SMALL_STATE(347)] = 18765, - [SMALL_STATE(348)] = 18900, - [SMALL_STATE(349)] = 19035, - [SMALL_STATE(350)] = 19170, - [SMALL_STATE(351)] = 19305, - [SMALL_STATE(352)] = 19440, - [SMALL_STATE(353)] = 19575, - [SMALL_STATE(354)] = 19710, - [SMALL_STATE(355)] = 19845, - [SMALL_STATE(356)] = 19980, - [SMALL_STATE(357)] = 20115, - [SMALL_STATE(358)] = 20250, - [SMALL_STATE(359)] = 20385, - [SMALL_STATE(360)] = 20520, - [SMALL_STATE(361)] = 20655, - [SMALL_STATE(362)] = 20790, - [SMALL_STATE(363)] = 20925, - [SMALL_STATE(364)] = 21060, - [SMALL_STATE(365)] = 21195, - [SMALL_STATE(366)] = 21330, - [SMALL_STATE(367)] = 21465, - [SMALL_STATE(368)] = 21600, - [SMALL_STATE(369)] = 21735, - [SMALL_STATE(370)] = 21870, - [SMALL_STATE(371)] = 22005, - [SMALL_STATE(372)] = 22140, - [SMALL_STATE(373)] = 22275, - [SMALL_STATE(374)] = 22410, - [SMALL_STATE(375)] = 22545, - [SMALL_STATE(376)] = 22680, - [SMALL_STATE(377)] = 22815, - [SMALL_STATE(378)] = 22950, - [SMALL_STATE(379)] = 23085, - [SMALL_STATE(380)] = 23220, - [SMALL_STATE(381)] = 23355, - [SMALL_STATE(382)] = 23490, - [SMALL_STATE(383)] = 23625, - [SMALL_STATE(384)] = 23760, - [SMALL_STATE(385)] = 23895, - [SMALL_STATE(386)] = 24030, - [SMALL_STATE(387)] = 24165, - [SMALL_STATE(388)] = 24300, - [SMALL_STATE(389)] = 24435, - [SMALL_STATE(390)] = 24570, - [SMALL_STATE(391)] = 24705, - [SMALL_STATE(392)] = 24840, - [SMALL_STATE(393)] = 24975, - [SMALL_STATE(394)] = 25110, - [SMALL_STATE(395)] = 25245, - [SMALL_STATE(396)] = 25380, - [SMALL_STATE(397)] = 25515, - [SMALL_STATE(398)] = 25650, - [SMALL_STATE(399)] = 25785, - [SMALL_STATE(400)] = 25920, - [SMALL_STATE(401)] = 26055, - [SMALL_STATE(402)] = 26190, - [SMALL_STATE(403)] = 26325, - [SMALL_STATE(404)] = 26460, - [SMALL_STATE(405)] = 26595, - [SMALL_STATE(406)] = 26730, - [SMALL_STATE(407)] = 26865, - [SMALL_STATE(408)] = 27000, - [SMALL_STATE(409)] = 27135, - [SMALL_STATE(410)] = 27270, - [SMALL_STATE(411)] = 27405, - [SMALL_STATE(412)] = 27540, - [SMALL_STATE(413)] = 27675, - [SMALL_STATE(414)] = 27810, - [SMALL_STATE(415)] = 27945, - [SMALL_STATE(416)] = 28080, - [SMALL_STATE(417)] = 28215, - [SMALL_STATE(418)] = 28350, - [SMALL_STATE(419)] = 28485, - [SMALL_STATE(420)] = 28620, - [SMALL_STATE(421)] = 28755, - [SMALL_STATE(422)] = 28890, - [SMALL_STATE(423)] = 29025, - [SMALL_STATE(424)] = 29160, - [SMALL_STATE(425)] = 29295, - [SMALL_STATE(426)] = 29430, - [SMALL_STATE(427)] = 29565, - [SMALL_STATE(428)] = 29700, - [SMALL_STATE(429)] = 29835, - [SMALL_STATE(430)] = 29970, - [SMALL_STATE(431)] = 30105, - [SMALL_STATE(432)] = 30240, - [SMALL_STATE(433)] = 30375, - [SMALL_STATE(434)] = 30510, - [SMALL_STATE(435)] = 30645, - [SMALL_STATE(436)] = 30780, - [SMALL_STATE(437)] = 30915, - [SMALL_STATE(438)] = 31050, - [SMALL_STATE(439)] = 31185, - [SMALL_STATE(440)] = 31320, - [SMALL_STATE(441)] = 31455, - [SMALL_STATE(442)] = 31590, - [SMALL_STATE(443)] = 31725, - [SMALL_STATE(444)] = 31860, - [SMALL_STATE(445)] = 31995, - [SMALL_STATE(446)] = 32130, - [SMALL_STATE(447)] = 32265, - [SMALL_STATE(448)] = 32400, - [SMALL_STATE(449)] = 32535, - [SMALL_STATE(450)] = 32670, - [SMALL_STATE(451)] = 32805, - [SMALL_STATE(452)] = 32940, - [SMALL_STATE(453)] = 33075, - [SMALL_STATE(454)] = 33210, - [SMALL_STATE(455)] = 33345, - [SMALL_STATE(456)] = 33480, - [SMALL_STATE(457)] = 33615, - [SMALL_STATE(458)] = 33750, - [SMALL_STATE(459)] = 33885, - [SMALL_STATE(460)] = 34020, - [SMALL_STATE(461)] = 34155, - [SMALL_STATE(462)] = 34290, - [SMALL_STATE(463)] = 34425, - [SMALL_STATE(464)] = 34560, - [SMALL_STATE(465)] = 34695, - [SMALL_STATE(466)] = 34830, - [SMALL_STATE(467)] = 34965, - [SMALL_STATE(468)] = 35100, - [SMALL_STATE(469)] = 35235, - [SMALL_STATE(470)] = 35370, - [SMALL_STATE(471)] = 35505, - [SMALL_STATE(472)] = 35640, - [SMALL_STATE(473)] = 35775, - [SMALL_STATE(474)] = 35910, - [SMALL_STATE(475)] = 36045, - [SMALL_STATE(476)] = 36180, - [SMALL_STATE(477)] = 36315, - [SMALL_STATE(478)] = 36450, - [SMALL_STATE(479)] = 36585, - [SMALL_STATE(480)] = 36720, - [SMALL_STATE(481)] = 36855, - [SMALL_STATE(482)] = 36990, - [SMALL_STATE(483)] = 37125, - [SMALL_STATE(484)] = 37260, - [SMALL_STATE(485)] = 37395, - [SMALL_STATE(486)] = 37530, - [SMALL_STATE(487)] = 37665, - [SMALL_STATE(488)] = 37800, - [SMALL_STATE(489)] = 37935, - [SMALL_STATE(490)] = 38070, - [SMALL_STATE(491)] = 38205, - [SMALL_STATE(492)] = 38340, - [SMALL_STATE(493)] = 38475, - [SMALL_STATE(494)] = 38610, - [SMALL_STATE(495)] = 38745, - [SMALL_STATE(496)] = 38880, - [SMALL_STATE(497)] = 39015, - [SMALL_STATE(498)] = 39150, - [SMALL_STATE(499)] = 39285, - [SMALL_STATE(500)] = 39420, - [SMALL_STATE(501)] = 39555, - [SMALL_STATE(502)] = 39690, - [SMALL_STATE(503)] = 39825, - [SMALL_STATE(504)] = 39960, - [SMALL_STATE(505)] = 40095, - [SMALL_STATE(506)] = 40230, - [SMALL_STATE(507)] = 40365, - [SMALL_STATE(508)] = 40500, - [SMALL_STATE(509)] = 40635, - [SMALL_STATE(510)] = 40770, - [SMALL_STATE(511)] = 40905, - [SMALL_STATE(512)] = 41040, - [SMALL_STATE(513)] = 41175, - [SMALL_STATE(514)] = 41310, - [SMALL_STATE(515)] = 41445, - [SMALL_STATE(516)] = 41580, - [SMALL_STATE(517)] = 41715, - [SMALL_STATE(518)] = 41850, - [SMALL_STATE(519)] = 41985, - [SMALL_STATE(520)] = 42120, - [SMALL_STATE(521)] = 42255, - [SMALL_STATE(522)] = 42390, - [SMALL_STATE(523)] = 42525, - [SMALL_STATE(524)] = 42660, - [SMALL_STATE(525)] = 42795, - [SMALL_STATE(526)] = 42930, - [SMALL_STATE(527)] = 43065, - [SMALL_STATE(528)] = 43200, - [SMALL_STATE(529)] = 43335, - [SMALL_STATE(530)] = 43470, - [SMALL_STATE(531)] = 43605, - [SMALL_STATE(532)] = 43740, - [SMALL_STATE(533)] = 43875, - [SMALL_STATE(534)] = 44010, - [SMALL_STATE(535)] = 44145, - [SMALL_STATE(536)] = 44280, - [SMALL_STATE(537)] = 44415, - [SMALL_STATE(538)] = 44550, - [SMALL_STATE(539)] = 44685, - [SMALL_STATE(540)] = 44820, - [SMALL_STATE(541)] = 44955, - [SMALL_STATE(542)] = 45090, - [SMALL_STATE(543)] = 45225, - [SMALL_STATE(544)] = 45360, - [SMALL_STATE(545)] = 45495, - [SMALL_STATE(546)] = 45630, - [SMALL_STATE(547)] = 45765, - [SMALL_STATE(548)] = 45900, - [SMALL_STATE(549)] = 46035, - [SMALL_STATE(550)] = 46170, - [SMALL_STATE(551)] = 46305, - [SMALL_STATE(552)] = 46440, - [SMALL_STATE(553)] = 46575, - [SMALL_STATE(554)] = 46710, - [SMALL_STATE(555)] = 46845, - [SMALL_STATE(556)] = 46980, - [SMALL_STATE(557)] = 47115, - [SMALL_STATE(558)] = 47250, - [SMALL_STATE(559)] = 47385, - [SMALL_STATE(560)] = 47520, - [SMALL_STATE(561)] = 47655, - [SMALL_STATE(562)] = 47790, - [SMALL_STATE(563)] = 47925, - [SMALL_STATE(564)] = 48060, - [SMALL_STATE(565)] = 48195, - [SMALL_STATE(566)] = 48330, - [SMALL_STATE(567)] = 48465, - [SMALL_STATE(568)] = 48600, - [SMALL_STATE(569)] = 48735, - [SMALL_STATE(570)] = 48870, - [SMALL_STATE(571)] = 49005, - [SMALL_STATE(572)] = 49140, - [SMALL_STATE(573)] = 49275, - [SMALL_STATE(574)] = 49410, - [SMALL_STATE(575)] = 49545, - [SMALL_STATE(576)] = 49680, - [SMALL_STATE(577)] = 49815, - [SMALL_STATE(578)] = 49950, - [SMALL_STATE(579)] = 50085, - [SMALL_STATE(580)] = 50220, - [SMALL_STATE(581)] = 50355, - [SMALL_STATE(582)] = 50490, - [SMALL_STATE(583)] = 50625, - [SMALL_STATE(584)] = 50760, - [SMALL_STATE(585)] = 50895, - [SMALL_STATE(586)] = 51030, - [SMALL_STATE(587)] = 51165, - [SMALL_STATE(588)] = 51300, - [SMALL_STATE(589)] = 51435, - [SMALL_STATE(590)] = 51570, - [SMALL_STATE(591)] = 51705, - [SMALL_STATE(592)] = 51840, - [SMALL_STATE(593)] = 51975, - [SMALL_STATE(594)] = 52110, - [SMALL_STATE(595)] = 52245, - [SMALL_STATE(596)] = 52380, - [SMALL_STATE(597)] = 52515, - [SMALL_STATE(598)] = 52650, - [SMALL_STATE(599)] = 52785, - [SMALL_STATE(600)] = 52920, - [SMALL_STATE(601)] = 53055, - [SMALL_STATE(602)] = 53190, - [SMALL_STATE(603)] = 53325, - [SMALL_STATE(604)] = 53460, - [SMALL_STATE(605)] = 53595, - [SMALL_STATE(606)] = 53730, - [SMALL_STATE(607)] = 53865, - [SMALL_STATE(608)] = 54000, - [SMALL_STATE(609)] = 54135, - [SMALL_STATE(610)] = 54270, - [SMALL_STATE(611)] = 54405, - [SMALL_STATE(612)] = 54540, - [SMALL_STATE(613)] = 54675, - [SMALL_STATE(614)] = 54810, - [SMALL_STATE(615)] = 54945, - [SMALL_STATE(616)] = 55080, - [SMALL_STATE(617)] = 55215, - [SMALL_STATE(618)] = 55350, - [SMALL_STATE(619)] = 55485, - [SMALL_STATE(620)] = 55620, - [SMALL_STATE(621)] = 55755, - [SMALL_STATE(622)] = 55890, - [SMALL_STATE(623)] = 56025, - [SMALL_STATE(624)] = 56160, - [SMALL_STATE(625)] = 56295, - [SMALL_STATE(626)] = 56430, - [SMALL_STATE(627)] = 56565, - [SMALL_STATE(628)] = 56700, - [SMALL_STATE(629)] = 56835, - [SMALL_STATE(630)] = 56970, - [SMALL_STATE(631)] = 57105, - [SMALL_STATE(632)] = 57240, - [SMALL_STATE(633)] = 57375, - [SMALL_STATE(634)] = 57510, - [SMALL_STATE(635)] = 57645, - [SMALL_STATE(636)] = 57780, - [SMALL_STATE(637)] = 57915, - [SMALL_STATE(638)] = 58050, - [SMALL_STATE(639)] = 58185, - [SMALL_STATE(640)] = 58320, - [SMALL_STATE(641)] = 58455, - [SMALL_STATE(642)] = 58590, - [SMALL_STATE(643)] = 58725, - [SMALL_STATE(644)] = 58860, - [SMALL_STATE(645)] = 58995, - [SMALL_STATE(646)] = 59130, - [SMALL_STATE(647)] = 59265, - [SMALL_STATE(648)] = 59400, - [SMALL_STATE(649)] = 59535, - [SMALL_STATE(650)] = 59670, - [SMALL_STATE(651)] = 59805, - [SMALL_STATE(652)] = 59940, - [SMALL_STATE(653)] = 60075, - [SMALL_STATE(654)] = 60210, - [SMALL_STATE(655)] = 60345, - [SMALL_STATE(656)] = 60480, - [SMALL_STATE(657)] = 60615, - [SMALL_STATE(658)] = 60750, - [SMALL_STATE(659)] = 60885, - [SMALL_STATE(660)] = 61020, - [SMALL_STATE(661)] = 61155, - [SMALL_STATE(662)] = 61290, - [SMALL_STATE(663)] = 61425, - [SMALL_STATE(664)] = 61560, - [SMALL_STATE(665)] = 61695, - [SMALL_STATE(666)] = 61830, - [SMALL_STATE(667)] = 61965, - [SMALL_STATE(668)] = 62100, - [SMALL_STATE(669)] = 62235, - [SMALL_STATE(670)] = 62370, - [SMALL_STATE(671)] = 62505, - [SMALL_STATE(672)] = 62640, - [SMALL_STATE(673)] = 62775, - [SMALL_STATE(674)] = 62910, - [SMALL_STATE(675)] = 63045, - [SMALL_STATE(676)] = 63180, - [SMALL_STATE(677)] = 63315, - [SMALL_STATE(678)] = 63450, - [SMALL_STATE(679)] = 63585, - [SMALL_STATE(680)] = 63720, - [SMALL_STATE(681)] = 63855, - [SMALL_STATE(682)] = 63990, - [SMALL_STATE(683)] = 64125, - [SMALL_STATE(684)] = 64260, - [SMALL_STATE(685)] = 64395, - [SMALL_STATE(686)] = 64530, - [SMALL_STATE(687)] = 64665, - [SMALL_STATE(688)] = 64800, - [SMALL_STATE(689)] = 64935, - [SMALL_STATE(690)] = 65070, - [SMALL_STATE(691)] = 65205, - [SMALL_STATE(692)] = 65340, - [SMALL_STATE(693)] = 65475, - [SMALL_STATE(694)] = 65610, - [SMALL_STATE(695)] = 65745, - [SMALL_STATE(696)] = 65880, - [SMALL_STATE(697)] = 66015, - [SMALL_STATE(698)] = 66150, - [SMALL_STATE(699)] = 66285, - [SMALL_STATE(700)] = 66420, - [SMALL_STATE(701)] = 66555, - [SMALL_STATE(702)] = 66690, - [SMALL_STATE(703)] = 66825, - [SMALL_STATE(704)] = 66960, - [SMALL_STATE(705)] = 67095, - [SMALL_STATE(706)] = 67230, - [SMALL_STATE(707)] = 67365, - [SMALL_STATE(708)] = 67500, - [SMALL_STATE(709)] = 67635, - [SMALL_STATE(710)] = 67770, - [SMALL_STATE(711)] = 67905, - [SMALL_STATE(712)] = 68040, - [SMALL_STATE(713)] = 68175, - [SMALL_STATE(714)] = 68310, - [SMALL_STATE(715)] = 68445, - [SMALL_STATE(716)] = 68580, - [SMALL_STATE(717)] = 68715, - [SMALL_STATE(718)] = 68850, - [SMALL_STATE(719)] = 68985, - [SMALL_STATE(720)] = 69120, - [SMALL_STATE(721)] = 69255, - [SMALL_STATE(722)] = 69390, - [SMALL_STATE(723)] = 69525, - [SMALL_STATE(724)] = 69660, - [SMALL_STATE(725)] = 69795, - [SMALL_STATE(726)] = 69930, - [SMALL_STATE(727)] = 70065, - [SMALL_STATE(728)] = 70200, - [SMALL_STATE(729)] = 70335, - [SMALL_STATE(730)] = 70470, - [SMALL_STATE(731)] = 70605, - [SMALL_STATE(732)] = 70740, - [SMALL_STATE(733)] = 70875, - [SMALL_STATE(734)] = 71010, - [SMALL_STATE(735)] = 71145, - [SMALL_STATE(736)] = 71280, - [SMALL_STATE(737)] = 71415, - [SMALL_STATE(738)] = 71550, - [SMALL_STATE(739)] = 71685, - [SMALL_STATE(740)] = 71820, - [SMALL_STATE(741)] = 71955, - [SMALL_STATE(742)] = 72090, - [SMALL_STATE(743)] = 72225, - [SMALL_STATE(744)] = 72360, - [SMALL_STATE(745)] = 72495, - [SMALL_STATE(746)] = 72630, - [SMALL_STATE(747)] = 72765, - [SMALL_STATE(748)] = 72900, - [SMALL_STATE(749)] = 73035, - [SMALL_STATE(750)] = 73170, - [SMALL_STATE(751)] = 73305, - [SMALL_STATE(752)] = 73440, - [SMALL_STATE(753)] = 73575, - [SMALL_STATE(754)] = 73710, - [SMALL_STATE(755)] = 73845, - [SMALL_STATE(756)] = 73980, - [SMALL_STATE(757)] = 74115, - [SMALL_STATE(758)] = 74250, - [SMALL_STATE(759)] = 74385, - [SMALL_STATE(760)] = 74521, - [SMALL_STATE(761)] = 74657, - [SMALL_STATE(762)] = 74793, - [SMALL_STATE(763)] = 74929, - [SMALL_STATE(764)] = 75065, - [SMALL_STATE(765)] = 75201, - [SMALL_STATE(766)] = 75337, - [SMALL_STATE(767)] = 75473, - [SMALL_STATE(768)] = 75609, - [SMALL_STATE(769)] = 75745, - [SMALL_STATE(770)] = 75881, - [SMALL_STATE(771)] = 76017, - [SMALL_STATE(772)] = 76153, - [SMALL_STATE(773)] = 76289, - [SMALL_STATE(774)] = 76359, - [SMALL_STATE(775)] = 76424, - [SMALL_STATE(776)] = 76493, - [SMALL_STATE(777)] = 76562, - [SMALL_STATE(778)] = 76627, - [SMALL_STATE(779)] = 76696, - [SMALL_STATE(780)] = 76760, - [SMALL_STATE(781)] = 76821, - [SMALL_STATE(782)] = 76882, - [SMALL_STATE(783)] = 76943, - [SMALL_STATE(784)] = 77004, - [SMALL_STATE(785)] = 77065, - [SMALL_STATE(786)] = 77126, - [SMALL_STATE(787)] = 77191, - [SMALL_STATE(788)] = 77256, - [SMALL_STATE(789)] = 77317, - [SMALL_STATE(790)] = 77380, - [SMALL_STATE(791)] = 77445, - [SMALL_STATE(792)] = 77506, - [SMALL_STATE(793)] = 77567, - [SMALL_STATE(794)] = 77628, - [SMALL_STATE(795)] = 77689, - [SMALL_STATE(796)] = 77750, - [SMALL_STATE(797)] = 77811, - [SMALL_STATE(798)] = 77872, - [SMALL_STATE(799)] = 77933, - [SMALL_STATE(800)] = 77994, - [SMALL_STATE(801)] = 78055, - [SMALL_STATE(802)] = 78116, - [SMALL_STATE(803)] = 78177, - [SMALL_STATE(804)] = 78238, - [SMALL_STATE(805)] = 78299, - [SMALL_STATE(806)] = 78360, - [SMALL_STATE(807)] = 78421, - [SMALL_STATE(808)] = 78482, - [SMALL_STATE(809)] = 78543, - [SMALL_STATE(810)] = 78604, - [SMALL_STATE(811)] = 78665, - [SMALL_STATE(812)] = 78726, - [SMALL_STATE(813)] = 78787, - [SMALL_STATE(814)] = 78848, - [SMALL_STATE(815)] = 78909, - [SMALL_STATE(816)] = 78970, - [SMALL_STATE(817)] = 79031, - [SMALL_STATE(818)] = 79092, - [SMALL_STATE(819)] = 79153, - [SMALL_STATE(820)] = 79214, - [SMALL_STATE(821)] = 79275, - [SMALL_STATE(822)] = 79336, - [SMALL_STATE(823)] = 79397, - [SMALL_STATE(824)] = 79458, - [SMALL_STATE(825)] = 79519, - [SMALL_STATE(826)] = 79580, - [SMALL_STATE(827)] = 79641, - [SMALL_STATE(828)] = 79702, - [SMALL_STATE(829)] = 79763, - [SMALL_STATE(830)] = 79824, - [SMALL_STATE(831)] = 79885, - [SMALL_STATE(832)] = 79946, - [SMALL_STATE(833)] = 80007, - [SMALL_STATE(834)] = 80068, - [SMALL_STATE(835)] = 80129, - [SMALL_STATE(836)] = 80190, - [SMALL_STATE(837)] = 80251, - [SMALL_STATE(838)] = 80312, - [SMALL_STATE(839)] = 80373, - [SMALL_STATE(840)] = 80434, - [SMALL_STATE(841)] = 80495, - [SMALL_STATE(842)] = 80556, - [SMALL_STATE(843)] = 80617, - [SMALL_STATE(844)] = 80678, - [SMALL_STATE(845)] = 80739, - [SMALL_STATE(846)] = 80800, - [SMALL_STATE(847)] = 80861, - [SMALL_STATE(848)] = 80922, - [SMALL_STATE(849)] = 80983, - [SMALL_STATE(850)] = 81044, - [SMALL_STATE(851)] = 81105, - [SMALL_STATE(852)] = 81166, - [SMALL_STATE(853)] = 81227, - [SMALL_STATE(854)] = 81288, - [SMALL_STATE(855)] = 81349, - [SMALL_STATE(856)] = 81410, - [SMALL_STATE(857)] = 81471, - [SMALL_STATE(858)] = 81532, - [SMALL_STATE(859)] = 81593, - [SMALL_STATE(860)] = 81654, - [SMALL_STATE(861)] = 81715, - [SMALL_STATE(862)] = 81776, - [SMALL_STATE(863)] = 81837, - [SMALL_STATE(864)] = 81898, - [SMALL_STATE(865)] = 81959, - [SMALL_STATE(866)] = 82020, - [SMALL_STATE(867)] = 82081, - [SMALL_STATE(868)] = 82142, - [SMALL_STATE(869)] = 82203, - [SMALL_STATE(870)] = 82264, - [SMALL_STATE(871)] = 82325, - [SMALL_STATE(872)] = 82386, - [SMALL_STATE(873)] = 82447, - [SMALL_STATE(874)] = 82508, - [SMALL_STATE(875)] = 82569, - [SMALL_STATE(876)] = 82630, - [SMALL_STATE(877)] = 82691, - [SMALL_STATE(878)] = 82752, - [SMALL_STATE(879)] = 82813, - [SMALL_STATE(880)] = 82874, - [SMALL_STATE(881)] = 82935, - [SMALL_STATE(882)] = 82996, - [SMALL_STATE(883)] = 83057, - [SMALL_STATE(884)] = 83118, - [SMALL_STATE(885)] = 83179, - [SMALL_STATE(886)] = 83240, - [SMALL_STATE(887)] = 83301, - [SMALL_STATE(888)] = 83362, - [SMALL_STATE(889)] = 83423, - [SMALL_STATE(890)] = 83484, - [SMALL_STATE(891)] = 83545, - [SMALL_STATE(892)] = 83606, - [SMALL_STATE(893)] = 83667, - [SMALL_STATE(894)] = 83728, - [SMALL_STATE(895)] = 83789, - [SMALL_STATE(896)] = 83850, - [SMALL_STATE(897)] = 83911, - [SMALL_STATE(898)] = 83972, - [SMALL_STATE(899)] = 84033, - [SMALL_STATE(900)] = 84094, - [SMALL_STATE(901)] = 84155, - [SMALL_STATE(902)] = 84216, - [SMALL_STATE(903)] = 84277, - [SMALL_STATE(904)] = 84337, - [SMALL_STATE(905)] = 84397, - [SMALL_STATE(906)] = 84457, - [SMALL_STATE(907)] = 84517, - [SMALL_STATE(908)] = 84577, - [SMALL_STATE(909)] = 84637, - [SMALL_STATE(910)] = 84697, - [SMALL_STATE(911)] = 84757, - [SMALL_STATE(912)] = 84817, - [SMALL_STATE(913)] = 84877, - [SMALL_STATE(914)] = 84937, - [SMALL_STATE(915)] = 84997, - [SMALL_STATE(916)] = 85057, - [SMALL_STATE(917)] = 85117, - [SMALL_STATE(918)] = 85177, - [SMALL_STATE(919)] = 85237, - [SMALL_STATE(920)] = 85297, - [SMALL_STATE(921)] = 85357, - [SMALL_STATE(922)] = 85417, - [SMALL_STATE(923)] = 85477, - [SMALL_STATE(924)] = 85537, - [SMALL_STATE(925)] = 85597, - [SMALL_STATE(926)] = 85657, - [SMALL_STATE(927)] = 85717, - [SMALL_STATE(928)] = 85777, - [SMALL_STATE(929)] = 85837, - [SMALL_STATE(930)] = 85897, - [SMALL_STATE(931)] = 85957, - [SMALL_STATE(932)] = 86017, - [SMALL_STATE(933)] = 86077, - [SMALL_STATE(934)] = 86137, - [SMALL_STATE(935)] = 86197, - [SMALL_STATE(936)] = 86257, - [SMALL_STATE(937)] = 86317, - [SMALL_STATE(938)] = 86377, - [SMALL_STATE(939)] = 86437, - [SMALL_STATE(940)] = 86497, - [SMALL_STATE(941)] = 86557, - [SMALL_STATE(942)] = 86617, - [SMALL_STATE(943)] = 86677, - [SMALL_STATE(944)] = 86737, - [SMALL_STATE(945)] = 86797, - [SMALL_STATE(946)] = 86857, - [SMALL_STATE(947)] = 86917, - [SMALL_STATE(948)] = 86977, - [SMALL_STATE(949)] = 87037, - [SMALL_STATE(950)] = 87097, - [SMALL_STATE(951)] = 87157, - [SMALL_STATE(952)] = 87217, - [SMALL_STATE(953)] = 87277, - [SMALL_STATE(954)] = 87337, - [SMALL_STATE(955)] = 87397, - [SMALL_STATE(956)] = 87457, - [SMALL_STATE(957)] = 87517, - [SMALL_STATE(958)] = 87577, - [SMALL_STATE(959)] = 87637, - [SMALL_STATE(960)] = 87697, - [SMALL_STATE(961)] = 87757, - [SMALL_STATE(962)] = 87817, - [SMALL_STATE(963)] = 87877, - [SMALL_STATE(964)] = 87937, - [SMALL_STATE(965)] = 87997, - [SMALL_STATE(966)] = 88057, - [SMALL_STATE(967)] = 88117, - [SMALL_STATE(968)] = 88177, - [SMALL_STATE(969)] = 88237, - [SMALL_STATE(970)] = 88297, - [SMALL_STATE(971)] = 88357, - [SMALL_STATE(972)] = 88417, - [SMALL_STATE(973)] = 88477, - [SMALL_STATE(974)] = 88537, - [SMALL_STATE(975)] = 88597, - [SMALL_STATE(976)] = 88657, - [SMALL_STATE(977)] = 88717, - [SMALL_STATE(978)] = 88777, - [SMALL_STATE(979)] = 88837, - [SMALL_STATE(980)] = 88897, - [SMALL_STATE(981)] = 88957, - [SMALL_STATE(982)] = 89017, - [SMALL_STATE(983)] = 89077, - [SMALL_STATE(984)] = 89137, - [SMALL_STATE(985)] = 89197, - [SMALL_STATE(986)] = 89257, - [SMALL_STATE(987)] = 89317, - [SMALL_STATE(988)] = 89377, - [SMALL_STATE(989)] = 89437, - [SMALL_STATE(990)] = 89501, - [SMALL_STATE(991)] = 89561, - [SMALL_STATE(992)] = 89621, - [SMALL_STATE(993)] = 89681, - [SMALL_STATE(994)] = 89741, - [SMALL_STATE(995)] = 89801, - [SMALL_STATE(996)] = 89861, - [SMALL_STATE(997)] = 89921, - [SMALL_STATE(998)] = 89981, - [SMALL_STATE(999)] = 90041, - [SMALL_STATE(1000)] = 90101, - [SMALL_STATE(1001)] = 90161, - [SMALL_STATE(1002)] = 90221, - [SMALL_STATE(1003)] = 90281, - [SMALL_STATE(1004)] = 90345, - [SMALL_STATE(1005)] = 90405, - [SMALL_STATE(1006)] = 90465, - [SMALL_STATE(1007)] = 90525, - [SMALL_STATE(1008)] = 90585, - [SMALL_STATE(1009)] = 90645, - [SMALL_STATE(1010)] = 90705, - [SMALL_STATE(1011)] = 90765, - [SMALL_STATE(1012)] = 90825, - [SMALL_STATE(1013)] = 90885, - [SMALL_STATE(1014)] = 90945, - [SMALL_STATE(1015)] = 91005, - [SMALL_STATE(1016)] = 91065, - [SMALL_STATE(1017)] = 91125, - [SMALL_STATE(1018)] = 91185, - [SMALL_STATE(1019)] = 91249, - [SMALL_STATE(1020)] = 91309, - [SMALL_STATE(1021)] = 91369, - [SMALL_STATE(1022)] = 91429, - [SMALL_STATE(1023)] = 91489, - [SMALL_STATE(1024)] = 91549, - [SMALL_STATE(1025)] = 91609, - [SMALL_STATE(1026)] = 91674, - [SMALL_STATE(1027)] = 91749, - [SMALL_STATE(1028)] = 91824, - [SMALL_STATE(1029)] = 91899, - [SMALL_STATE(1030)] = 91974, - [SMALL_STATE(1031)] = 92049, - [SMALL_STATE(1032)] = 92124, - [SMALL_STATE(1033)] = 92199, - [SMALL_STATE(1034)] = 92274, - [SMALL_STATE(1035)] = 92349, - [SMALL_STATE(1036)] = 92424, - [SMALL_STATE(1037)] = 92499, - [SMALL_STATE(1038)] = 92574, - [SMALL_STATE(1039)] = 92649, - [SMALL_STATE(1040)] = 92724, - [SMALL_STATE(1041)] = 92799, - [SMALL_STATE(1042)] = 92874, - [SMALL_STATE(1043)] = 92949, - [SMALL_STATE(1044)] = 93024, - [SMALL_STATE(1045)] = 93099, - [SMALL_STATE(1046)] = 93158, - [SMALL_STATE(1047)] = 93260, - [SMALL_STATE(1048)] = 93362, - [SMALL_STATE(1049)] = 93464, - [SMALL_STATE(1050)] = 93566, - [SMALL_STATE(1051)] = 93668, - [SMALL_STATE(1052)] = 93770, - [SMALL_STATE(1053)] = 93826, - [SMALL_STATE(1054)] = 93928, - [SMALL_STATE(1055)] = 94030, - [SMALL_STATE(1056)] = 94132, - [SMALL_STATE(1057)] = 94234, - [SMALL_STATE(1058)] = 94336, - [SMALL_STATE(1059)] = 94438, - [SMALL_STATE(1060)] = 94494, - [SMALL_STATE(1061)] = 94550, - [SMALL_STATE(1062)] = 94606, - [SMALL_STATE(1063)] = 94662, - [SMALL_STATE(1064)] = 94718, - [SMALL_STATE(1065)] = 94774, - [SMALL_STATE(1066)] = 94830, - [SMALL_STATE(1067)] = 94886, - [SMALL_STATE(1068)] = 94942, - [SMALL_STATE(1069)] = 94998, - [SMALL_STATE(1070)] = 95054, - [SMALL_STATE(1071)] = 95110, - [SMALL_STATE(1072)] = 95212, - [SMALL_STATE(1073)] = 95314, - [SMALL_STATE(1074)] = 95416, - [SMALL_STATE(1075)] = 95518, - [SMALL_STATE(1076)] = 95620, - [SMALL_STATE(1077)] = 95676, - [SMALL_STATE(1078)] = 95778, - [SMALL_STATE(1079)] = 95880, - [SMALL_STATE(1080)] = 95982, - [SMALL_STATE(1081)] = 96084, - [SMALL_STATE(1082)] = 96186, - [SMALL_STATE(1083)] = 96288, - [SMALL_STATE(1084)] = 96390, - [SMALL_STATE(1085)] = 96492, - [SMALL_STATE(1086)] = 96548, - [SMALL_STATE(1087)] = 96604, - [SMALL_STATE(1088)] = 96660, - [SMALL_STATE(1089)] = 96716, - [SMALL_STATE(1090)] = 96818, - [SMALL_STATE(1091)] = 96874, - [SMALL_STATE(1092)] = 96976, - [SMALL_STATE(1093)] = 97078, - [SMALL_STATE(1094)] = 97180, - [SMALL_STATE(1095)] = 97236, - [SMALL_STATE(1096)] = 97292, - [SMALL_STATE(1097)] = 97348, - [SMALL_STATE(1098)] = 97404, - [SMALL_STATE(1099)] = 97506, - [SMALL_STATE(1100)] = 97562, - [SMALL_STATE(1101)] = 97618, - [SMALL_STATE(1102)] = 97674, - [SMALL_STATE(1103)] = 97730, - [SMALL_STATE(1104)] = 97832, - [SMALL_STATE(1105)] = 97888, - [SMALL_STATE(1106)] = 97944, - [SMALL_STATE(1107)] = 98000, - [SMALL_STATE(1108)] = 98056, - [SMALL_STATE(1109)] = 98158, - [SMALL_STATE(1110)] = 98214, - [SMALL_STATE(1111)] = 98270, - [SMALL_STATE(1112)] = 98372, - [SMALL_STATE(1113)] = 98428, - [SMALL_STATE(1114)] = 98484, - [SMALL_STATE(1115)] = 98586, - [SMALL_STATE(1116)] = 98642, - [SMALL_STATE(1117)] = 98744, - [SMALL_STATE(1118)] = 98800, - [SMALL_STATE(1119)] = 98902, - [SMALL_STATE(1120)] = 99004, - [SMALL_STATE(1121)] = 99060, - [SMALL_STATE(1122)] = 99116, - [SMALL_STATE(1123)] = 99172, - [SMALL_STATE(1124)] = 99228, - [SMALL_STATE(1125)] = 99284, - [SMALL_STATE(1126)] = 99340, - [SMALL_STATE(1127)] = 99442, - [SMALL_STATE(1128)] = 99498, - [SMALL_STATE(1129)] = 99554, - [SMALL_STATE(1130)] = 99610, - [SMALL_STATE(1131)] = 99666, - [SMALL_STATE(1132)] = 99768, - [SMALL_STATE(1133)] = 99824, - [SMALL_STATE(1134)] = 99880, - [SMALL_STATE(1135)] = 99936, - [SMALL_STATE(1136)] = 100038, - [SMALL_STATE(1137)] = 100094, - [SMALL_STATE(1138)] = 100150, - [SMALL_STATE(1139)] = 100206, - [SMALL_STATE(1140)] = 100262, - [SMALL_STATE(1141)] = 100318, - [SMALL_STATE(1142)] = 100374, - [SMALL_STATE(1143)] = 100476, - [SMALL_STATE(1144)] = 100532, - [SMALL_STATE(1145)] = 100588, - [SMALL_STATE(1146)] = 100644, - [SMALL_STATE(1147)] = 100746, - [SMALL_STATE(1148)] = 100802, - [SMALL_STATE(1149)] = 100858, - [SMALL_STATE(1150)] = 100960, - [SMALL_STATE(1151)] = 101062, - [SMALL_STATE(1152)] = 101164, - [SMALL_STATE(1153)] = 101220, - [SMALL_STATE(1154)] = 101276, - [SMALL_STATE(1155)] = 101332, - [SMALL_STATE(1156)] = 101434, - [SMALL_STATE(1157)] = 101490, - [SMALL_STATE(1158)] = 101592, - [SMALL_STATE(1159)] = 101694, - [SMALL_STATE(1160)] = 101750, - [SMALL_STATE(1161)] = 101852, - [SMALL_STATE(1162)] = 101908, - [SMALL_STATE(1163)] = 102010, - [SMALL_STATE(1164)] = 102112, - [SMALL_STATE(1165)] = 102214, - [SMALL_STATE(1166)] = 102316, - [SMALL_STATE(1167)] = 102418, - [SMALL_STATE(1168)] = 102520, - [SMALL_STATE(1169)] = 102622, - [SMALL_STATE(1170)] = 102724, - [SMALL_STATE(1171)] = 102826, - [SMALL_STATE(1172)] = 102928, - [SMALL_STATE(1173)] = 102984, - [SMALL_STATE(1174)] = 103040, - [SMALL_STATE(1175)] = 103096, - [SMALL_STATE(1176)] = 103152, - [SMALL_STATE(1177)] = 103208, - [SMALL_STATE(1178)] = 103264, - [SMALL_STATE(1179)] = 103320, - [SMALL_STATE(1180)] = 103422, - [SMALL_STATE(1181)] = 103524, - [SMALL_STATE(1182)] = 103580, - [SMALL_STATE(1183)] = 103636, - [SMALL_STATE(1184)] = 103738, - [SMALL_STATE(1185)] = 103840, - [SMALL_STATE(1186)] = 103942, - [SMALL_STATE(1187)] = 103998, - [SMALL_STATE(1188)] = 104100, - [SMALL_STATE(1189)] = 104156, - [SMALL_STATE(1190)] = 104212, - [SMALL_STATE(1191)] = 104268, - [SMALL_STATE(1192)] = 104324, - [SMALL_STATE(1193)] = 104426, - [SMALL_STATE(1194)] = 104528, - [SMALL_STATE(1195)] = 104630, - [SMALL_STATE(1196)] = 104686, - [SMALL_STATE(1197)] = 104742, - [SMALL_STATE(1198)] = 104844, - [SMALL_STATE(1199)] = 104946, - [SMALL_STATE(1200)] = 105002, - [SMALL_STATE(1201)] = 105058, - [SMALL_STATE(1202)] = 105114, - [SMALL_STATE(1203)] = 105170, - [SMALL_STATE(1204)] = 105226, - [SMALL_STATE(1205)] = 105282, - [SMALL_STATE(1206)] = 105338, - [SMALL_STATE(1207)] = 105394, - [SMALL_STATE(1208)] = 105496, - [SMALL_STATE(1209)] = 105598, - [SMALL_STATE(1210)] = 105654, - [SMALL_STATE(1211)] = 105756, - [SMALL_STATE(1212)] = 105812, - [SMALL_STATE(1213)] = 105914, - [SMALL_STATE(1214)] = 106016, - [SMALL_STATE(1215)] = 106072, - [SMALL_STATE(1216)] = 106174, - [SMALL_STATE(1217)] = 106230, - [SMALL_STATE(1218)] = 106286, - [SMALL_STATE(1219)] = 106342, - [SMALL_STATE(1220)] = 106398, - [SMALL_STATE(1221)] = 106454, - [SMALL_STATE(1222)] = 106556, - [SMALL_STATE(1223)] = 106612, - [SMALL_STATE(1224)] = 106714, - [SMALL_STATE(1225)] = 106774, - [SMALL_STATE(1226)] = 106834, - [SMALL_STATE(1227)] = 106890, - [SMALL_STATE(1228)] = 106946, - [SMALL_STATE(1229)] = 107002, - [SMALL_STATE(1230)] = 107104, - [SMALL_STATE(1231)] = 107160, - [SMALL_STATE(1232)] = 107216, - [SMALL_STATE(1233)] = 107276, - [SMALL_STATE(1234)] = 107332, - [SMALL_STATE(1235)] = 107388, - [SMALL_STATE(1236)] = 107444, - [SMALL_STATE(1237)] = 107500, - [SMALL_STATE(1238)] = 107556, - [SMALL_STATE(1239)] = 107612, - [SMALL_STATE(1240)] = 107668, - [SMALL_STATE(1241)] = 107724, - [SMALL_STATE(1242)] = 107780, - [SMALL_STATE(1243)] = 107836, - [SMALL_STATE(1244)] = 107892, - [SMALL_STATE(1245)] = 107948, - [SMALL_STATE(1246)] = 108050, - [SMALL_STATE(1247)] = 108106, - [SMALL_STATE(1248)] = 108208, - [SMALL_STATE(1249)] = 108264, - [SMALL_STATE(1250)] = 108317, - [SMALL_STATE(1251)] = 108374, - [SMALL_STATE(1252)] = 108431, - [SMALL_STATE(1253)] = 108488, - [SMALL_STATE(1254)] = 108542, - [SMALL_STATE(1255)] = 108593, - [SMALL_STATE(1256)] = 108644, - [SMALL_STATE(1257)] = 108695, - [SMALL_STATE(1258)] = 108746, - [SMALL_STATE(1259)] = 108797, - [SMALL_STATE(1260)] = 108848, - [SMALL_STATE(1261)] = 108899, - [SMALL_STATE(1262)] = 108950, - [SMALL_STATE(1263)] = 109001, - [SMALL_STATE(1264)] = 109052, - [SMALL_STATE(1265)] = 109103, - [SMALL_STATE(1266)] = 109154, - [SMALL_STATE(1267)] = 109205, - [SMALL_STATE(1268)] = 109256, - [SMALL_STATE(1269)] = 109307, - [SMALL_STATE(1270)] = 109358, - [SMALL_STATE(1271)] = 109409, - [SMALL_STATE(1272)] = 109460, - [SMALL_STATE(1273)] = 109511, - [SMALL_STATE(1274)] = 109562, - [SMALL_STATE(1275)] = 109613, - [SMALL_STATE(1276)] = 109664, - [SMALL_STATE(1277)] = 109715, - [SMALL_STATE(1278)] = 109766, - [SMALL_STATE(1279)] = 109817, - [SMALL_STATE(1280)] = 109868, - [SMALL_STATE(1281)] = 109919, - [SMALL_STATE(1282)] = 109970, - [SMALL_STATE(1283)] = 110021, - [SMALL_STATE(1284)] = 110072, - [SMALL_STATE(1285)] = 110123, - [SMALL_STATE(1286)] = 110174, - [SMALL_STATE(1287)] = 110225, - [SMALL_STATE(1288)] = 110276, - [SMALL_STATE(1289)] = 110327, - [SMALL_STATE(1290)] = 110378, - [SMALL_STATE(1291)] = 110429, - [SMALL_STATE(1292)] = 110480, - [SMALL_STATE(1293)] = 110531, - [SMALL_STATE(1294)] = 110582, - [SMALL_STATE(1295)] = 110633, - [SMALL_STATE(1296)] = 110684, - [SMALL_STATE(1297)] = 110735, - [SMALL_STATE(1298)] = 110786, - [SMALL_STATE(1299)] = 110837, - [SMALL_STATE(1300)] = 110888, - [SMALL_STATE(1301)] = 110939, - [SMALL_STATE(1302)] = 110990, - [SMALL_STATE(1303)] = 111041, - [SMALL_STATE(1304)] = 111092, - [SMALL_STATE(1305)] = 111143, - [SMALL_STATE(1306)] = 111194, - [SMALL_STATE(1307)] = 111245, - [SMALL_STATE(1308)] = 111296, - [SMALL_STATE(1309)] = 111347, - [SMALL_STATE(1310)] = 111398, - [SMALL_STATE(1311)] = 111449, - [SMALL_STATE(1312)] = 111500, - [SMALL_STATE(1313)] = 111551, - [SMALL_STATE(1314)] = 111602, - [SMALL_STATE(1315)] = 111653, - [SMALL_STATE(1316)] = 111704, - [SMALL_STATE(1317)] = 111755, - [SMALL_STATE(1318)] = 111806, - [SMALL_STATE(1319)] = 111857, - [SMALL_STATE(1320)] = 111908, - [SMALL_STATE(1321)] = 111959, - [SMALL_STATE(1322)] = 112010, - [SMALL_STATE(1323)] = 112061, - [SMALL_STATE(1324)] = 112112, - [SMALL_STATE(1325)] = 112163, - [SMALL_STATE(1326)] = 112214, - [SMALL_STATE(1327)] = 112265, - [SMALL_STATE(1328)] = 112316, - [SMALL_STATE(1329)] = 112367, - [SMALL_STATE(1330)] = 112418, - [SMALL_STATE(1331)] = 112469, - [SMALL_STATE(1332)] = 112520, - [SMALL_STATE(1333)] = 112571, - [SMALL_STATE(1334)] = 112622, - [SMALL_STATE(1335)] = 112673, - [SMALL_STATE(1336)] = 112724, - [SMALL_STATE(1337)] = 112775, - [SMALL_STATE(1338)] = 112826, - [SMALL_STATE(1339)] = 112877, - [SMALL_STATE(1340)] = 112928, - [SMALL_STATE(1341)] = 112979, - [SMALL_STATE(1342)] = 113030, - [SMALL_STATE(1343)] = 113081, - [SMALL_STATE(1344)] = 113132, - [SMALL_STATE(1345)] = 113183, - [SMALL_STATE(1346)] = 113234, - [SMALL_STATE(1347)] = 113285, - [SMALL_STATE(1348)] = 113336, - [SMALL_STATE(1349)] = 113387, - [SMALL_STATE(1350)] = 113438, - [SMALL_STATE(1351)] = 113489, - [SMALL_STATE(1352)] = 113540, - [SMALL_STATE(1353)] = 113591, - [SMALL_STATE(1354)] = 113642, - [SMALL_STATE(1355)] = 113693, - [SMALL_STATE(1356)] = 113744, - [SMALL_STATE(1357)] = 113795, - [SMALL_STATE(1358)] = 113846, - [SMALL_STATE(1359)] = 113897, - [SMALL_STATE(1360)] = 113948, - [SMALL_STATE(1361)] = 113999, - [SMALL_STATE(1362)] = 114050, - [SMALL_STATE(1363)] = 114101, - [SMALL_STATE(1364)] = 114152, - [SMALL_STATE(1365)] = 114203, - [SMALL_STATE(1366)] = 114254, - [SMALL_STATE(1367)] = 114305, - [SMALL_STATE(1368)] = 114356, - [SMALL_STATE(1369)] = 114407, - [SMALL_STATE(1370)] = 114458, - [SMALL_STATE(1371)] = 114509, - [SMALL_STATE(1372)] = 114560, - [SMALL_STATE(1373)] = 114611, - [SMALL_STATE(1374)] = 114662, - [SMALL_STATE(1375)] = 114713, - [SMALL_STATE(1376)] = 114774, - [SMALL_STATE(1377)] = 114835, - [SMALL_STATE(1378)] = 114896, - [SMALL_STATE(1379)] = 114957, - [SMALL_STATE(1380)] = 115018, - [SMALL_STATE(1381)] = 115079, - [SMALL_STATE(1382)] = 115140, - [SMALL_STATE(1383)] = 115201, - [SMALL_STATE(1384)] = 115262, - [SMALL_STATE(1385)] = 115323, - [SMALL_STATE(1386)] = 115373, - [SMALL_STATE(1387)] = 115420, - [SMALL_STATE(1388)] = 115467, - [SMALL_STATE(1389)] = 115518, - [SMALL_STATE(1390)] = 115569, - [SMALL_STATE(1391)] = 115616, - [SMALL_STATE(1392)] = 115663, - [SMALL_STATE(1393)] = 115710, - [SMALL_STATE(1394)] = 115757, - [SMALL_STATE(1395)] = 115804, - [SMALL_STATE(1396)] = 115855, - [SMALL_STATE(1397)] = 115902, - [SMALL_STATE(1398)] = 115949, - [SMALL_STATE(1399)] = 115996, - [SMALL_STATE(1400)] = 116043, - [SMALL_STATE(1401)] = 116090, - [SMALL_STATE(1402)] = 116137, - [SMALL_STATE(1403)] = 116184, - [SMALL_STATE(1404)] = 116231, - [SMALL_STATE(1405)] = 116278, - [SMALL_STATE(1406)] = 116325, - [SMALL_STATE(1407)] = 116372, - [SMALL_STATE(1408)] = 116419, - [SMALL_STATE(1409)] = 116466, - [SMALL_STATE(1410)] = 116513, - [SMALL_STATE(1411)] = 116560, - [SMALL_STATE(1412)] = 116607, - [SMALL_STATE(1413)] = 116654, - [SMALL_STATE(1414)] = 116701, - [SMALL_STATE(1415)] = 116748, - [SMALL_STATE(1416)] = 116795, - [SMALL_STATE(1417)] = 116842, - [SMALL_STATE(1418)] = 116889, - [SMALL_STATE(1419)] = 116936, - [SMALL_STATE(1420)] = 116983, - [SMALL_STATE(1421)] = 117030, - [SMALL_STATE(1422)] = 117077, - [SMALL_STATE(1423)] = 117124, - [SMALL_STATE(1424)] = 117171, - [SMALL_STATE(1425)] = 117218, - [SMALL_STATE(1426)] = 117265, - [SMALL_STATE(1427)] = 117312, - [SMALL_STATE(1428)] = 117359, - [SMALL_STATE(1429)] = 117406, - [SMALL_STATE(1430)] = 117453, - [SMALL_STATE(1431)] = 117500, - [SMALL_STATE(1432)] = 117547, - [SMALL_STATE(1433)] = 117594, - [SMALL_STATE(1434)] = 117641, - [SMALL_STATE(1435)] = 117688, - [SMALL_STATE(1436)] = 117735, - [SMALL_STATE(1437)] = 117782, - [SMALL_STATE(1438)] = 117829, - [SMALL_STATE(1439)] = 117876, - [SMALL_STATE(1440)] = 117923, - [SMALL_STATE(1441)] = 117970, - [SMALL_STATE(1442)] = 118017, - [SMALL_STATE(1443)] = 118064, - [SMALL_STATE(1444)] = 118111, - [SMALL_STATE(1445)] = 118158, - [SMALL_STATE(1446)] = 118205, - [SMALL_STATE(1447)] = 118252, - [SMALL_STATE(1448)] = 118299, - [SMALL_STATE(1449)] = 118346, - [SMALL_STATE(1450)] = 118393, - [SMALL_STATE(1451)] = 118440, - [SMALL_STATE(1452)] = 118487, - [SMALL_STATE(1453)] = 118534, - [SMALL_STATE(1454)] = 118581, - [SMALL_STATE(1455)] = 118628, - [SMALL_STATE(1456)] = 118675, - [SMALL_STATE(1457)] = 118722, - [SMALL_STATE(1458)] = 118769, - [SMALL_STATE(1459)] = 118816, - [SMALL_STATE(1460)] = 118863, - [SMALL_STATE(1461)] = 118910, - [SMALL_STATE(1462)] = 118957, - [SMALL_STATE(1463)] = 119004, - [SMALL_STATE(1464)] = 119051, - [SMALL_STATE(1465)] = 119098, - [SMALL_STATE(1466)] = 119145, - [SMALL_STATE(1467)] = 119192, - [SMALL_STATE(1468)] = 119239, - [SMALL_STATE(1469)] = 119286, - [SMALL_STATE(1470)] = 119333, - [SMALL_STATE(1471)] = 119380, - [SMALL_STATE(1472)] = 119427, - [SMALL_STATE(1473)] = 119474, - [SMALL_STATE(1474)] = 119521, - [SMALL_STATE(1475)] = 119568, - [SMALL_STATE(1476)] = 119615, - [SMALL_STATE(1477)] = 119662, - [SMALL_STATE(1478)] = 119709, - [SMALL_STATE(1479)] = 119756, - [SMALL_STATE(1480)] = 119803, - [SMALL_STATE(1481)] = 119850, - [SMALL_STATE(1482)] = 119897, - [SMALL_STATE(1483)] = 119944, - [SMALL_STATE(1484)] = 119991, - [SMALL_STATE(1485)] = 120038, - [SMALL_STATE(1486)] = 120085, - [SMALL_STATE(1487)] = 120132, - [SMALL_STATE(1488)] = 120179, - [SMALL_STATE(1489)] = 120226, - [SMALL_STATE(1490)] = 120273, - [SMALL_STATE(1491)] = 120320, - [SMALL_STATE(1492)] = 120367, - [SMALL_STATE(1493)] = 120414, - [SMALL_STATE(1494)] = 120461, - [SMALL_STATE(1495)] = 120508, - [SMALL_STATE(1496)] = 120555, - [SMALL_STATE(1497)] = 120602, - [SMALL_STATE(1498)] = 120649, - [SMALL_STATE(1499)] = 120696, - [SMALL_STATE(1500)] = 120743, - [SMALL_STATE(1501)] = 120790, - [SMALL_STATE(1502)] = 120837, - [SMALL_STATE(1503)] = 120884, - [SMALL_STATE(1504)] = 120931, - [SMALL_STATE(1505)] = 120978, - [SMALL_STATE(1506)] = 121025, - [SMALL_STATE(1507)] = 121072, - [SMALL_STATE(1508)] = 121119, - [SMALL_STATE(1509)] = 121191, - [SMALL_STATE(1510)] = 121263, - [SMALL_STATE(1511)] = 121335, - [SMALL_STATE(1512)] = 121407, - [SMALL_STATE(1513)] = 121479, - [SMALL_STATE(1514)] = 121551, - [SMALL_STATE(1515)] = 121623, - [SMALL_STATE(1516)] = 121695, - [SMALL_STATE(1517)] = 121767, - [SMALL_STATE(1518)] = 121839, - [SMALL_STATE(1519)] = 121911, - [SMALL_STATE(1520)] = 121983, - [SMALL_STATE(1521)] = 122055, - [SMALL_STATE(1522)] = 122127, - [SMALL_STATE(1523)] = 122199, - [SMALL_STATE(1524)] = 122271, - [SMALL_STATE(1525)] = 122343, - [SMALL_STATE(1526)] = 122415, - [SMALL_STATE(1527)] = 122487, - [SMALL_STATE(1528)] = 122559, - [SMALL_STATE(1529)] = 122628, - [SMALL_STATE(1530)] = 122672, - [SMALL_STATE(1531)] = 122716, - [SMALL_STATE(1532)] = 122760, - [SMALL_STATE(1533)] = 122804, - [SMALL_STATE(1534)] = 122848, - [SMALL_STATE(1535)] = 122892, - [SMALL_STATE(1536)] = 122936, - [SMALL_STATE(1537)] = 122980, - [SMALL_STATE(1538)] = 123024, - [SMALL_STATE(1539)] = 123068, - [SMALL_STATE(1540)] = 123112, - [SMALL_STATE(1541)] = 123156, - [SMALL_STATE(1542)] = 123200, - [SMALL_STATE(1543)] = 123244, - [SMALL_STATE(1544)] = 123288, - [SMALL_STATE(1545)] = 123332, - [SMALL_STATE(1546)] = 123376, - [SMALL_STATE(1547)] = 123420, - [SMALL_STATE(1548)] = 123464, - [SMALL_STATE(1549)] = 123508, - [SMALL_STATE(1550)] = 123552, - [SMALL_STATE(1551)] = 123596, - [SMALL_STATE(1552)] = 123640, - [SMALL_STATE(1553)] = 123684, - [SMALL_STATE(1554)] = 123728, - [SMALL_STATE(1555)] = 123772, - [SMALL_STATE(1556)] = 123816, - [SMALL_STATE(1557)] = 123860, - [SMALL_STATE(1558)] = 123904, - [SMALL_STATE(1559)] = 123948, - [SMALL_STATE(1560)] = 123992, - [SMALL_STATE(1561)] = 124036, - [SMALL_STATE(1562)] = 124080, - [SMALL_STATE(1563)] = 124124, - [SMALL_STATE(1564)] = 124168, - [SMALL_STATE(1565)] = 124212, - [SMALL_STATE(1566)] = 124256, - [SMALL_STATE(1567)] = 124300, - [SMALL_STATE(1568)] = 124344, - [SMALL_STATE(1569)] = 124388, - [SMALL_STATE(1570)] = 124432, - [SMALL_STATE(1571)] = 124476, - [SMALL_STATE(1572)] = 124520, - [SMALL_STATE(1573)] = 124564, - [SMALL_STATE(1574)] = 124608, - [SMALL_STATE(1575)] = 124652, - [SMALL_STATE(1576)] = 124696, - [SMALL_STATE(1577)] = 124740, - [SMALL_STATE(1578)] = 124784, - [SMALL_STATE(1579)] = 124828, - [SMALL_STATE(1580)] = 124872, - [SMALL_STATE(1581)] = 124916, - [SMALL_STATE(1582)] = 124960, - [SMALL_STATE(1583)] = 125004, - [SMALL_STATE(1584)] = 125050, - [SMALL_STATE(1585)] = 125094, - [SMALL_STATE(1586)] = 125138, - [SMALL_STATE(1587)] = 125182, - [SMALL_STATE(1588)] = 125226, - [SMALL_STATE(1589)] = 125270, - [SMALL_STATE(1590)] = 125314, - [SMALL_STATE(1591)] = 125358, - [SMALL_STATE(1592)] = 125402, - [SMALL_STATE(1593)] = 125446, - [SMALL_STATE(1594)] = 125490, - [SMALL_STATE(1595)] = 125534, - [SMALL_STATE(1596)] = 125578, - [SMALL_STATE(1597)] = 125622, - [SMALL_STATE(1598)] = 125666, - [SMALL_STATE(1599)] = 125710, - [SMALL_STATE(1600)] = 125754, - [SMALL_STATE(1601)] = 125798, - [SMALL_STATE(1602)] = 125842, - [SMALL_STATE(1603)] = 125886, - [SMALL_STATE(1604)] = 125930, - [SMALL_STATE(1605)] = 125974, - [SMALL_STATE(1606)] = 126018, - [SMALL_STATE(1607)] = 126062, - [SMALL_STATE(1608)] = 126106, - [SMALL_STATE(1609)] = 126150, - [SMALL_STATE(1610)] = 126194, - [SMALL_STATE(1611)] = 126238, - [SMALL_STATE(1612)] = 126282, - [SMALL_STATE(1613)] = 126330, - [SMALL_STATE(1614)] = 126374, - [SMALL_STATE(1615)] = 126418, - [SMALL_STATE(1616)] = 126462, - [SMALL_STATE(1617)] = 126506, - [SMALL_STATE(1618)] = 126550, - [SMALL_STATE(1619)] = 126598, - [SMALL_STATE(1620)] = 126646, - [SMALL_STATE(1621)] = 126690, - [SMALL_STATE(1622)] = 126734, - [SMALL_STATE(1623)] = 126778, - [SMALL_STATE(1624)] = 126822, - [SMALL_STATE(1625)] = 126866, - [SMALL_STATE(1626)] = 126910, - [SMALL_STATE(1627)] = 126954, - [SMALL_STATE(1628)] = 126998, - [SMALL_STATE(1629)] = 127042, - [SMALL_STATE(1630)] = 127086, - [SMALL_STATE(1631)] = 127130, - [SMALL_STATE(1632)] = 127174, - [SMALL_STATE(1633)] = 127218, - [SMALL_STATE(1634)] = 127262, - [SMALL_STATE(1635)] = 127306, - [SMALL_STATE(1636)] = 127350, - [SMALL_STATE(1637)] = 127394, - [SMALL_STATE(1638)] = 127438, - [SMALL_STATE(1639)] = 127482, - [SMALL_STATE(1640)] = 127526, - [SMALL_STATE(1641)] = 127570, - [SMALL_STATE(1642)] = 127614, - [SMALL_STATE(1643)] = 127658, - [SMALL_STATE(1644)] = 127702, - [SMALL_STATE(1645)] = 127746, - [SMALL_STATE(1646)] = 127790, - [SMALL_STATE(1647)] = 127834, - [SMALL_STATE(1648)] = 127878, - [SMALL_STATE(1649)] = 127922, - [SMALL_STATE(1650)] = 127966, - [SMALL_STATE(1651)] = 128010, - [SMALL_STATE(1652)] = 128054, - [SMALL_STATE(1653)] = 128103, - [SMALL_STATE(1654)] = 128145, - [SMALL_STATE(1655)] = 128186, - [SMALL_STATE(1656)] = 128227, - [SMALL_STATE(1657)] = 128272, - [SMALL_STATE(1658)] = 128317, - [SMALL_STATE(1659)] = 128362, - [SMALL_STATE(1660)] = 128407, - [SMALL_STATE(1661)] = 128452, - [SMALL_STATE(1662)] = 128497, - [SMALL_STATE(1663)] = 128542, - [SMALL_STATE(1664)] = 128587, - [SMALL_STATE(1665)] = 128628, - [SMALL_STATE(1666)] = 128673, - [SMALL_STATE(1667)] = 128718, - [SMALL_STATE(1668)] = 128777, - [SMALL_STATE(1669)] = 128818, - [SMALL_STATE(1670)] = 128859, - [SMALL_STATE(1671)] = 128900, - [SMALL_STATE(1672)] = 128941, - [SMALL_STATE(1673)] = 128982, - [SMALL_STATE(1674)] = 129023, - [SMALL_STATE(1675)] = 129064, - [SMALL_STATE(1676)] = 129105, - [SMALL_STATE(1677)] = 129146, - [SMALL_STATE(1678)] = 129187, - [SMALL_STATE(1679)] = 129228, - [SMALL_STATE(1680)] = 129269, - [SMALL_STATE(1681)] = 129310, - [SMALL_STATE(1682)] = 129351, - [SMALL_STATE(1683)] = 129392, - [SMALL_STATE(1684)] = 129433, - [SMALL_STATE(1685)] = 129474, - [SMALL_STATE(1686)] = 129515, - [SMALL_STATE(1687)] = 129556, - [SMALL_STATE(1688)] = 129597, - [SMALL_STATE(1689)] = 129638, - [SMALL_STATE(1690)] = 129679, - [SMALL_STATE(1691)] = 129720, - [SMALL_STATE(1692)] = 129761, - [SMALL_STATE(1693)] = 129802, - [SMALL_STATE(1694)] = 129843, - [SMALL_STATE(1695)] = 129884, - [SMALL_STATE(1696)] = 129925, - [SMALL_STATE(1697)] = 129966, - [SMALL_STATE(1698)] = 130007, - [SMALL_STATE(1699)] = 130048, - [SMALL_STATE(1700)] = 130089, - [SMALL_STATE(1701)] = 130130, - [SMALL_STATE(1702)] = 130171, - [SMALL_STATE(1703)] = 130212, - [SMALL_STATE(1704)] = 130253, - [SMALL_STATE(1705)] = 130294, - [SMALL_STATE(1706)] = 130335, - [SMALL_STATE(1707)] = 130376, - [SMALL_STATE(1708)] = 130417, - [SMALL_STATE(1709)] = 130458, - [SMALL_STATE(1710)] = 130499, - [SMALL_STATE(1711)] = 130540, - [SMALL_STATE(1712)] = 130581, - [SMALL_STATE(1713)] = 130622, - [SMALL_STATE(1714)] = 130663, - [SMALL_STATE(1715)] = 130704, - [SMALL_STATE(1716)] = 130745, - [SMALL_STATE(1717)] = 130786, - [SMALL_STATE(1718)] = 130827, - [SMALL_STATE(1719)] = 130868, - [SMALL_STATE(1720)] = 130909, - [SMALL_STATE(1721)] = 130950, - [SMALL_STATE(1722)] = 130991, - [SMALL_STATE(1723)] = 131032, - [SMALL_STATE(1724)] = 131073, - [SMALL_STATE(1725)] = 131114, - [SMALL_STATE(1726)] = 131155, - [SMALL_STATE(1727)] = 131196, - [SMALL_STATE(1728)] = 131237, - [SMALL_STATE(1729)] = 131278, - [SMALL_STATE(1730)] = 131319, - [SMALL_STATE(1731)] = 131360, - [SMALL_STATE(1732)] = 131401, - [SMALL_STATE(1733)] = 131442, - [SMALL_STATE(1734)] = 131483, - [SMALL_STATE(1735)] = 131524, - [SMALL_STATE(1736)] = 131565, - [SMALL_STATE(1737)] = 131606, - [SMALL_STATE(1738)] = 131647, - [SMALL_STATE(1739)] = 131688, - [SMALL_STATE(1740)] = 131729, - [SMALL_STATE(1741)] = 131770, - [SMALL_STATE(1742)] = 131811, - [SMALL_STATE(1743)] = 131852, - [SMALL_STATE(1744)] = 131893, - [SMALL_STATE(1745)] = 131934, - [SMALL_STATE(1746)] = 131975, - [SMALL_STATE(1747)] = 132016, - [SMALL_STATE(1748)] = 132057, - [SMALL_STATE(1749)] = 132098, - [SMALL_STATE(1750)] = 132139, - [SMALL_STATE(1751)] = 132180, - [SMALL_STATE(1752)] = 132221, - [SMALL_STATE(1753)] = 132262, - [SMALL_STATE(1754)] = 132303, - [SMALL_STATE(1755)] = 132344, - [SMALL_STATE(1756)] = 132385, - [SMALL_STATE(1757)] = 132426, - [SMALL_STATE(1758)] = 132467, - [SMALL_STATE(1759)] = 132508, - [SMALL_STATE(1760)] = 132549, - [SMALL_STATE(1761)] = 132590, - [SMALL_STATE(1762)] = 132631, - [SMALL_STATE(1763)] = 132672, - [SMALL_STATE(1764)] = 132713, - [SMALL_STATE(1765)] = 132754, - [SMALL_STATE(1766)] = 132795, - [SMALL_STATE(1767)] = 132836, - [SMALL_STATE(1768)] = 132877, - [SMALL_STATE(1769)] = 132918, - [SMALL_STATE(1770)] = 132959, - [SMALL_STATE(1771)] = 133000, - [SMALL_STATE(1772)] = 133041, - [SMALL_STATE(1773)] = 133082, - [SMALL_STATE(1774)] = 133123, - [SMALL_STATE(1775)] = 133164, - [SMALL_STATE(1776)] = 133205, - [SMALL_STATE(1777)] = 133246, - [SMALL_STATE(1778)] = 133287, - [SMALL_STATE(1779)] = 133328, - [SMALL_STATE(1780)] = 133369, - [SMALL_STATE(1781)] = 133410, - [SMALL_STATE(1782)] = 133451, - [SMALL_STATE(1783)] = 133492, - [SMALL_STATE(1784)] = 133533, - [SMALL_STATE(1785)] = 133574, - [SMALL_STATE(1786)] = 133615, - [SMALL_STATE(1787)] = 133656, - [SMALL_STATE(1788)] = 133697, - [SMALL_STATE(1789)] = 133738, - [SMALL_STATE(1790)] = 133779, - [SMALL_STATE(1791)] = 133820, - [SMALL_STATE(1792)] = 133861, - [SMALL_STATE(1793)] = 133902, - [SMALL_STATE(1794)] = 133943, - [SMALL_STATE(1795)] = 133984, - [SMALL_STATE(1796)] = 134025, - [SMALL_STATE(1797)] = 134066, - [SMALL_STATE(1798)] = 134107, - [SMALL_STATE(1799)] = 134148, - [SMALL_STATE(1800)] = 134189, - [SMALL_STATE(1801)] = 134230, - [SMALL_STATE(1802)] = 134270, - [SMALL_STATE(1803)] = 134310, - [SMALL_STATE(1804)] = 134350, - [SMALL_STATE(1805)] = 134390, - [SMALL_STATE(1806)] = 134430, - [SMALL_STATE(1807)] = 134470, - [SMALL_STATE(1808)] = 134511, - [SMALL_STATE(1809)] = 134552, - [SMALL_STATE(1810)] = 134599, - [SMALL_STATE(1811)] = 134638, - [SMALL_STATE(1812)] = 134679, - [SMALL_STATE(1813)] = 134726, - [SMALL_STATE(1814)] = 134762, - [SMALL_STATE(1815)] = 134798, - [SMALL_STATE(1816)] = 134834, - [SMALL_STATE(1817)] = 134870, - [SMALL_STATE(1818)] = 134906, - [SMALL_STATE(1819)] = 134942, - [SMALL_STATE(1820)] = 134978, - [SMALL_STATE(1821)] = 135014, - [SMALL_STATE(1822)] = 135050, - [SMALL_STATE(1823)] = 135086, - [SMALL_STATE(1824)] = 135122, - [SMALL_STATE(1825)] = 135158, - [SMALL_STATE(1826)] = 135194, - [SMALL_STATE(1827)] = 135230, - [SMALL_STATE(1828)] = 135266, - [SMALL_STATE(1829)] = 135302, - [SMALL_STATE(1830)] = 135337, - [SMALL_STATE(1831)] = 135372, - [SMALL_STATE(1832)] = 135407, - [SMALL_STATE(1833)] = 135442, - [SMALL_STATE(1834)] = 135477, - [SMALL_STATE(1835)] = 135516, - [SMALL_STATE(1836)] = 135555, - [SMALL_STATE(1837)] = 135590, - [SMALL_STATE(1838)] = 135625, - [SMALL_STATE(1839)] = 135660, - [SMALL_STATE(1840)] = 135695, - [SMALL_STATE(1841)] = 135730, - [SMALL_STATE(1842)] = 135765, - [SMALL_STATE(1843)] = 135800, - [SMALL_STATE(1844)] = 135839, - [SMALL_STATE(1845)] = 135874, - [SMALL_STATE(1846)] = 135913, - [SMALL_STATE(1847)] = 135948, - [SMALL_STATE(1848)] = 135983, - [SMALL_STATE(1849)] = 136018, - [SMALL_STATE(1850)] = 136053, - [SMALL_STATE(1851)] = 136088, - [SMALL_STATE(1852)] = 136123, - [SMALL_STATE(1853)] = 136158, - [SMALL_STATE(1854)] = 136193, - [SMALL_STATE(1855)] = 136228, - [SMALL_STATE(1856)] = 136263, - [SMALL_STATE(1857)] = 136298, - [SMALL_STATE(1858)] = 136333, - [SMALL_STATE(1859)] = 136368, - [SMALL_STATE(1860)] = 136403, - [SMALL_STATE(1861)] = 136438, - [SMALL_STATE(1862)] = 136473, - [SMALL_STATE(1863)] = 136508, - [SMALL_STATE(1864)] = 136543, - [SMALL_STATE(1865)] = 136578, - [SMALL_STATE(1866)] = 136613, - [SMALL_STATE(1867)] = 136648, - [SMALL_STATE(1868)] = 136683, - [SMALL_STATE(1869)] = 136718, - [SMALL_STATE(1870)] = 136753, - [SMALL_STATE(1871)] = 136788, - [SMALL_STATE(1872)] = 136823, - [SMALL_STATE(1873)] = 136858, - [SMALL_STATE(1874)] = 136893, - [SMALL_STATE(1875)] = 136928, - [SMALL_STATE(1876)] = 136963, - [SMALL_STATE(1877)] = 136998, - [SMALL_STATE(1878)] = 137033, - [SMALL_STATE(1879)] = 137068, - [SMALL_STATE(1880)] = 137103, - [SMALL_STATE(1881)] = 137142, - [SMALL_STATE(1882)] = 137177, - [SMALL_STATE(1883)] = 137212, - [SMALL_STATE(1884)] = 137249, - [SMALL_STATE(1885)] = 137288, - [SMALL_STATE(1886)] = 137323, - [SMALL_STATE(1887)] = 137358, - [SMALL_STATE(1888)] = 137393, - [SMALL_STATE(1889)] = 137428, - [SMALL_STATE(1890)] = 137463, - [SMALL_STATE(1891)] = 137498, - [SMALL_STATE(1892)] = 137533, - [SMALL_STATE(1893)] = 137568, - [SMALL_STATE(1894)] = 137607, - [SMALL_STATE(1895)] = 137642, - [SMALL_STATE(1896)] = 137677, - [SMALL_STATE(1897)] = 137712, - [SMALL_STATE(1898)] = 137747, - [SMALL_STATE(1899)] = 137782, - [SMALL_STATE(1900)] = 137817, - [SMALL_STATE(1901)] = 137852, - [SMALL_STATE(1902)] = 137887, - [SMALL_STATE(1903)] = 137922, - [SMALL_STATE(1904)] = 137957, - [SMALL_STATE(1905)] = 137992, - [SMALL_STATE(1906)] = 138027, - [SMALL_STATE(1907)] = 138062, - [SMALL_STATE(1908)] = 138097, - [SMALL_STATE(1909)] = 138132, - [SMALL_STATE(1910)] = 138167, - [SMALL_STATE(1911)] = 138202, - [SMALL_STATE(1912)] = 138241, - [SMALL_STATE(1913)] = 138276, - [SMALL_STATE(1914)] = 138311, - [SMALL_STATE(1915)] = 138346, - [SMALL_STATE(1916)] = 138385, - [SMALL_STATE(1917)] = 138420, - [SMALL_STATE(1918)] = 138455, - [SMALL_STATE(1919)] = 138490, - [SMALL_STATE(1920)] = 138525, - [SMALL_STATE(1921)] = 138560, - [SMALL_STATE(1922)] = 138599, - [SMALL_STATE(1923)] = 138634, - [SMALL_STATE(1924)] = 138673, - [SMALL_STATE(1925)] = 138708, - [SMALL_STATE(1926)] = 138743, - [SMALL_STATE(1927)] = 138778, - [SMALL_STATE(1928)] = 138813, - [SMALL_STATE(1929)] = 138848, - [SMALL_STATE(1930)] = 138883, - [SMALL_STATE(1931)] = 138918, - [SMALL_STATE(1932)] = 138953, - [SMALL_STATE(1933)] = 138992, - [SMALL_STATE(1934)] = 139027, - [SMALL_STATE(1935)] = 139062, - [SMALL_STATE(1936)] = 139097, - [SMALL_STATE(1937)] = 139132, - [SMALL_STATE(1938)] = 139167, - [SMALL_STATE(1939)] = 139202, - [SMALL_STATE(1940)] = 139237, - [SMALL_STATE(1941)] = 139272, - [SMALL_STATE(1942)] = 139307, - [SMALL_STATE(1943)] = 139342, - [SMALL_STATE(1944)] = 139379, - [SMALL_STATE(1945)] = 139414, - [SMALL_STATE(1946)] = 139462, - [SMALL_STATE(1947)] = 139510, - [SMALL_STATE(1948)] = 139543, - [SMALL_STATE(1949)] = 139576, - [SMALL_STATE(1950)] = 139609, - [SMALL_STATE(1951)] = 139642, - [SMALL_STATE(1952)] = 139675, - [SMALL_STATE(1953)] = 139708, - [SMALL_STATE(1954)] = 139741, - [SMALL_STATE(1955)] = 139774, - [SMALL_STATE(1956)] = 139807, - [SMALL_STATE(1957)] = 139840, - [SMALL_STATE(1958)] = 139873, - [SMALL_STATE(1959)] = 139906, - [SMALL_STATE(1960)] = 139939, - [SMALL_STATE(1961)] = 139972, - [SMALL_STATE(1962)] = 140005, - [SMALL_STATE(1963)] = 140038, - [SMALL_STATE(1964)] = 140071, - [SMALL_STATE(1965)] = 140104, - [SMALL_STATE(1966)] = 140137, - [SMALL_STATE(1967)] = 140170, - [SMALL_STATE(1968)] = 140203, - [SMALL_STATE(1969)] = 140236, - [SMALL_STATE(1970)] = 140269, - [SMALL_STATE(1971)] = 140302, - [SMALL_STATE(1972)] = 140335, - [SMALL_STATE(1973)] = 140368, - [SMALL_STATE(1974)] = 140401, - [SMALL_STATE(1975)] = 140434, - [SMALL_STATE(1976)] = 140467, - [SMALL_STATE(1977)] = 140500, - [SMALL_STATE(1978)] = 140533, - [SMALL_STATE(1979)] = 140566, - [SMALL_STATE(1980)] = 140599, - [SMALL_STATE(1981)] = 140632, - [SMALL_STATE(1982)] = 140665, - [SMALL_STATE(1983)] = 140698, - [SMALL_STATE(1984)] = 140731, - [SMALL_STATE(1985)] = 140764, - [SMALL_STATE(1986)] = 140797, - [SMALL_STATE(1987)] = 140830, - [SMALL_STATE(1988)] = 140863, - [SMALL_STATE(1989)] = 140896, - [SMALL_STATE(1990)] = 140929, - [SMALL_STATE(1991)] = 140962, - [SMALL_STATE(1992)] = 140995, - [SMALL_STATE(1993)] = 141028, - [SMALL_STATE(1994)] = 141061, - [SMALL_STATE(1995)] = 141094, - [SMALL_STATE(1996)] = 141127, - [SMALL_STATE(1997)] = 141160, - [SMALL_STATE(1998)] = 141193, - [SMALL_STATE(1999)] = 141226, - [SMALL_STATE(2000)] = 141259, - [SMALL_STATE(2001)] = 141292, - [SMALL_STATE(2002)] = 141325, - [SMALL_STATE(2003)] = 141358, - [SMALL_STATE(2004)] = 141391, - [SMALL_STATE(2005)] = 141424, - [SMALL_STATE(2006)] = 141457, - [SMALL_STATE(2007)] = 141490, - [SMALL_STATE(2008)] = 141523, - [SMALL_STATE(2009)] = 141556, - [SMALL_STATE(2010)] = 141589, - [SMALL_STATE(2011)] = 141622, - [SMALL_STATE(2012)] = 141655, - [SMALL_STATE(2013)] = 141688, - [SMALL_STATE(2014)] = 141721, - [SMALL_STATE(2015)] = 141754, - [SMALL_STATE(2016)] = 141787, - [SMALL_STATE(2017)] = 141820, - [SMALL_STATE(2018)] = 141853, - [SMALL_STATE(2019)] = 141886, - [SMALL_STATE(2020)] = 141919, - [SMALL_STATE(2021)] = 141952, - [SMALL_STATE(2022)] = 141985, - [SMALL_STATE(2023)] = 142018, - [SMALL_STATE(2024)] = 142051, - [SMALL_STATE(2025)] = 142084, - [SMALL_STATE(2026)] = 142117, - [SMALL_STATE(2027)] = 142150, - [SMALL_STATE(2028)] = 142183, - [SMALL_STATE(2029)] = 142216, - [SMALL_STATE(2030)] = 142249, - [SMALL_STATE(2031)] = 142282, - [SMALL_STATE(2032)] = 142315, - [SMALL_STATE(2033)] = 142348, - [SMALL_STATE(2034)] = 142381, - [SMALL_STATE(2035)] = 142414, - [SMALL_STATE(2036)] = 142447, - [SMALL_STATE(2037)] = 142480, - [SMALL_STATE(2038)] = 142513, - [SMALL_STATE(2039)] = 142546, - [SMALL_STATE(2040)] = 142579, - [SMALL_STATE(2041)] = 142612, - [SMALL_STATE(2042)] = 142645, - [SMALL_STATE(2043)] = 142678, - [SMALL_STATE(2044)] = 142711, - [SMALL_STATE(2045)] = 142744, - [SMALL_STATE(2046)] = 142777, - [SMALL_STATE(2047)] = 142825, - [SMALL_STATE(2048)] = 142873, - [SMALL_STATE(2049)] = 142921, - [SMALL_STATE(2050)] = 142969, - [SMALL_STATE(2051)] = 143017, - [SMALL_STATE(2052)] = 143065, - [SMALL_STATE(2053)] = 143113, - [SMALL_STATE(2054)] = 143161, - [SMALL_STATE(2055)] = 143209, - [SMALL_STATE(2056)] = 143257, - [SMALL_STATE(2057)] = 143305, - [SMALL_STATE(2058)] = 143353, - [SMALL_STATE(2059)] = 143384, - [SMALL_STATE(2060)] = 143415, - [SMALL_STATE(2061)] = 143481, - [SMALL_STATE(2062)] = 143547, - [SMALL_STATE(2063)] = 143609, - [SMALL_STATE(2064)] = 143671, - [SMALL_STATE(2065)] = 143733, - [SMALL_STATE(2066)] = 143795, - [SMALL_STATE(2067)] = 143857, - [SMALL_STATE(2068)] = 143919, - [SMALL_STATE(2069)] = 143985, - [SMALL_STATE(2070)] = 144051, - [SMALL_STATE(2071)] = 144113, - [SMALL_STATE(2072)] = 144175, - [SMALL_STATE(2073)] = 144217, - [SMALL_STATE(2074)] = 144254, - [SMALL_STATE(2075)] = 144284, - [SMALL_STATE(2076)] = 144318, - [SMALL_STATE(2077)] = 144352, - [SMALL_STATE(2078)] = 144386, - [SMALL_STATE(2079)] = 144420, - [SMALL_STATE(2080)] = 144449, - [SMALL_STATE(2081)] = 144478, - [SMALL_STATE(2082)] = 144541, - [SMALL_STATE(2083)] = 144604, - [SMALL_STATE(2084)] = 144633, - [SMALL_STATE(2085)] = 144662, - [SMALL_STATE(2086)] = 144691, - [SMALL_STATE(2087)] = 144720, - [SMALL_STATE(2088)] = 144749, - [SMALL_STATE(2089)] = 144778, - [SMALL_STATE(2090)] = 144841, - [SMALL_STATE(2091)] = 144870, - [SMALL_STATE(2092)] = 144901, - [SMALL_STATE(2093)] = 144964, - [SMALL_STATE(2094)] = 145027, - [SMALL_STATE(2095)] = 145056, - [SMALL_STATE(2096)] = 145085, - [SMALL_STATE(2097)] = 145114, - [SMALL_STATE(2098)] = 145143, - [SMALL_STATE(2099)] = 145206, - [SMALL_STATE(2100)] = 145235, - [SMALL_STATE(2101)] = 145264, - [SMALL_STATE(2102)] = 145327, - [SMALL_STATE(2103)] = 145390, - [SMALL_STATE(2104)] = 145453, - [SMALL_STATE(2105)] = 145516, - [SMALL_STATE(2106)] = 145545, - [SMALL_STATE(2107)] = 145608, - [SMALL_STATE(2108)] = 145637, - [SMALL_STATE(2109)] = 145666, - [SMALL_STATE(2110)] = 145729, - [SMALL_STATE(2111)] = 145792, - [SMALL_STATE(2112)] = 145821, - [SMALL_STATE(2113)] = 145850, - [SMALL_STATE(2114)] = 145879, - [SMALL_STATE(2115)] = 145908, - [SMALL_STATE(2116)] = 145937, - [SMALL_STATE(2117)] = 145966, - [SMALL_STATE(2118)] = 145995, - [SMALL_STATE(2119)] = 146058, - [SMALL_STATE(2120)] = 146087, - [SMALL_STATE(2121)] = 146115, - [SMALL_STATE(2122)] = 146143, - [SMALL_STATE(2123)] = 146171, - [SMALL_STATE(2124)] = 146199, - [SMALL_STATE(2125)] = 146227, - [SMALL_STATE(2126)] = 146255, - [SMALL_STATE(2127)] = 146283, - [SMALL_STATE(2128)] = 146311, - [SMALL_STATE(2129)] = 146339, - [SMALL_STATE(2130)] = 146367, - [SMALL_STATE(2131)] = 146395, - [SMALL_STATE(2132)] = 146423, - [SMALL_STATE(2133)] = 146451, - [SMALL_STATE(2134)] = 146479, - [SMALL_STATE(2135)] = 146507, - [SMALL_STATE(2136)] = 146535, - [SMALL_STATE(2137)] = 146563, - [SMALL_STATE(2138)] = 146591, - [SMALL_STATE(2139)] = 146619, - [SMALL_STATE(2140)] = 146647, - [SMALL_STATE(2141)] = 146675, - [SMALL_STATE(2142)] = 146703, - [SMALL_STATE(2143)] = 146731, - [SMALL_STATE(2144)] = 146759, - [SMALL_STATE(2145)] = 146787, - [SMALL_STATE(2146)] = 146838, - [SMALL_STATE(2147)] = 146881, - [SMALL_STATE(2148)] = 146914, - [SMALL_STATE(2149)] = 146947, - [SMALL_STATE(2150)] = 146996, - [SMALL_STATE(2151)] = 147047, - [SMALL_STATE(2152)] = 147080, - [SMALL_STATE(2153)] = 147113, - [SMALL_STATE(2154)] = 147164, - [SMALL_STATE(2155)] = 147213, - [SMALL_STATE(2156)] = 147264, - [SMALL_STATE(2157)] = 147315, - [SMALL_STATE(2158)] = 147366, - [SMALL_STATE(2159)] = 147399, - [SMALL_STATE(2160)] = 147450, - [SMALL_STATE(2161)] = 147501, - [SMALL_STATE(2162)] = 147552, - [SMALL_STATE(2163)] = 147603, - [SMALL_STATE(2164)] = 147654, - [SMALL_STATE(2165)] = 147705, - [SMALL_STATE(2166)] = 147756, - [SMALL_STATE(2167)] = 147807, - [SMALL_STATE(2168)] = 147858, - [SMALL_STATE(2169)] = 147909, - [SMALL_STATE(2170)] = 147939, - [SMALL_STATE(2171)] = 147969, - [SMALL_STATE(2172)] = 147999, - [SMALL_STATE(2173)] = 148029, - [SMALL_STATE(2174)] = 148054, - [SMALL_STATE(2175)] = 148079, - [SMALL_STATE(2176)] = 148104, - [SMALL_STATE(2177)] = 148129, - [SMALL_STATE(2178)] = 148166, - [SMALL_STATE(2179)] = 148193, - [SMALL_STATE(2180)] = 148218, - [SMALL_STATE(2181)] = 148243, - [SMALL_STATE(2182)] = 148268, - [SMALL_STATE(2183)] = 148293, - [SMALL_STATE(2184)] = 148317, - [SMALL_STATE(2185)] = 148362, - [SMALL_STATE(2186)] = 148407, - [SMALL_STATE(2187)] = 148452, - [SMALL_STATE(2188)] = 148497, - [SMALL_STATE(2189)] = 148542, - [SMALL_STATE(2190)] = 148587, - [SMALL_STATE(2191)] = 148632, - [SMALL_STATE(2192)] = 148677, - [SMALL_STATE(2193)] = 148722, - [SMALL_STATE(2194)] = 148767, - [SMALL_STATE(2195)] = 148812, - [SMALL_STATE(2196)] = 148857, - [SMALL_STATE(2197)] = 148881, - [SMALL_STATE(2198)] = 148903, - [SMALL_STATE(2199)] = 148931, - [SMALL_STATE(2200)] = 148957, - [SMALL_STATE(2201)] = 148978, - [SMALL_STATE(2202)] = 149003, - [SMALL_STATE(2203)] = 149024, - [SMALL_STATE(2204)] = 149045, - [SMALL_STATE(2205)] = 149066, - [SMALL_STATE(2206)] = 149087, - [SMALL_STATE(2207)] = 149108, - [SMALL_STATE(2208)] = 149129, - [SMALL_STATE(2209)] = 149150, - [SMALL_STATE(2210)] = 149171, - [SMALL_STATE(2211)] = 149192, - [SMALL_STATE(2212)] = 149213, - [SMALL_STATE(2213)] = 149234, - [SMALL_STATE(2214)] = 149255, - [SMALL_STATE(2215)] = 149276, - [SMALL_STATE(2216)] = 149297, - [SMALL_STATE(2217)] = 149318, - [SMALL_STATE(2218)] = 149339, - [SMALL_STATE(2219)] = 149360, - [SMALL_STATE(2220)] = 149381, - [SMALL_STATE(2221)] = 149402, - [SMALL_STATE(2222)] = 149423, - [SMALL_STATE(2223)] = 149444, - [SMALL_STATE(2224)] = 149465, - [SMALL_STATE(2225)] = 149486, - [SMALL_STATE(2226)] = 149507, - [SMALL_STATE(2227)] = 149528, - [SMALL_STATE(2228)] = 149549, - [SMALL_STATE(2229)] = 149570, - [SMALL_STATE(2230)] = 149591, - [SMALL_STATE(2231)] = 149612, - [SMALL_STATE(2232)] = 149633, - [SMALL_STATE(2233)] = 149654, - [SMALL_STATE(2234)] = 149675, - [SMALL_STATE(2235)] = 149696, - [SMALL_STATE(2236)] = 149717, - [SMALL_STATE(2237)] = 149738, - [SMALL_STATE(2238)] = 149759, - [SMALL_STATE(2239)] = 149780, - [SMALL_STATE(2240)] = 149801, - [SMALL_STATE(2241)] = 149822, - [SMALL_STATE(2242)] = 149843, - [SMALL_STATE(2243)] = 149864, - [SMALL_STATE(2244)] = 149885, - [SMALL_STATE(2245)] = 149906, - [SMALL_STATE(2246)] = 149927, - [SMALL_STATE(2247)] = 149948, - [SMALL_STATE(2248)] = 149969, - [SMALL_STATE(2249)] = 149990, - [SMALL_STATE(2250)] = 150011, - [SMALL_STATE(2251)] = 150032, - [SMALL_STATE(2252)] = 150053, - [SMALL_STATE(2253)] = 150074, - [SMALL_STATE(2254)] = 150095, - [SMALL_STATE(2255)] = 150120, - [SMALL_STATE(2256)] = 150141, - [SMALL_STATE(2257)] = 150162, - [SMALL_STATE(2258)] = 150183, - [SMALL_STATE(2259)] = 150204, - [SMALL_STATE(2260)] = 150225, - [SMALL_STATE(2261)] = 150246, - [SMALL_STATE(2262)] = 150267, - [SMALL_STATE(2263)] = 150288, - [SMALL_STATE(2264)] = 150309, - [SMALL_STATE(2265)] = 150336, - [SMALL_STATE(2266)] = 150357, - [SMALL_STATE(2267)] = 150378, - [SMALL_STATE(2268)] = 150399, - [SMALL_STATE(2269)] = 150420, - [SMALL_STATE(2270)] = 150441, - [SMALL_STATE(2271)] = 150462, - [SMALL_STATE(2272)] = 150483, - [SMALL_STATE(2273)] = 150504, - [SMALL_STATE(2274)] = 150525, - [SMALL_STATE(2275)] = 150546, - [SMALL_STATE(2276)] = 150567, - [SMALL_STATE(2277)] = 150588, - [SMALL_STATE(2278)] = 150609, - [SMALL_STATE(2279)] = 150630, - [SMALL_STATE(2280)] = 150655, - [SMALL_STATE(2281)] = 150676, - [SMALL_STATE(2282)] = 150701, - [SMALL_STATE(2283)] = 150722, - [SMALL_STATE(2284)] = 150743, - [SMALL_STATE(2285)] = 150764, - [SMALL_STATE(2286)] = 150785, - [SMALL_STATE(2287)] = 150806, - [SMALL_STATE(2288)] = 150827, - [SMALL_STATE(2289)] = 150848, - [SMALL_STATE(2290)] = 150869, - [SMALL_STATE(2291)] = 150890, - [SMALL_STATE(2292)] = 150911, - [SMALL_STATE(2293)] = 150932, - [SMALL_STATE(2294)] = 150953, - [SMALL_STATE(2295)] = 150974, - [SMALL_STATE(2296)] = 150995, - [SMALL_STATE(2297)] = 151016, - [SMALL_STATE(2298)] = 151037, - [SMALL_STATE(2299)] = 151058, - [SMALL_STATE(2300)] = 151079, - [SMALL_STATE(2301)] = 151104, - [SMALL_STATE(2302)] = 151124, - [SMALL_STATE(2303)] = 151157, - [SMALL_STATE(2304)] = 151190, - [SMALL_STATE(2305)] = 151219, - [SMALL_STATE(2306)] = 151252, - [SMALL_STATE(2307)] = 151281, - [SMALL_STATE(2308)] = 151314, - [SMALL_STATE(2309)] = 151343, - [SMALL_STATE(2310)] = 151372, - [SMALL_STATE(2311)] = 151405, - [SMALL_STATE(2312)] = 151438, - [SMALL_STATE(2313)] = 151467, - [SMALL_STATE(2314)] = 151496, - [SMALL_STATE(2315)] = 151525, - [SMALL_STATE(2316)] = 151554, - [SMALL_STATE(2317)] = 151587, - [SMALL_STATE(2318)] = 151616, - [SMALL_STATE(2319)] = 151645, - [SMALL_STATE(2320)] = 151678, - [SMALL_STATE(2321)] = 151707, - [SMALL_STATE(2322)] = 151740, - [SMALL_STATE(2323)] = 151773, - [SMALL_STATE(2324)] = 151806, - [SMALL_STATE(2325)] = 151835, - [SMALL_STATE(2326)] = 151868, - [SMALL_STATE(2327)] = 151901, - [SMALL_STATE(2328)] = 151934, - [SMALL_STATE(2329)] = 151955, - [SMALL_STATE(2330)] = 151976, - [SMALL_STATE(2331)] = 152005, - [SMALL_STATE(2332)] = 152034, - [SMALL_STATE(2333)] = 152067, - [SMALL_STATE(2334)] = 152100, - [SMALL_STATE(2335)] = 152133, - [SMALL_STATE(2336)] = 152166, - [SMALL_STATE(2337)] = 152195, - [SMALL_STATE(2338)] = 152228, - [SMALL_STATE(2339)] = 152249, - [SMALL_STATE(2340)] = 152278, - [SMALL_STATE(2341)] = 152307, - [SMALL_STATE(2342)] = 152336, - [SMALL_STATE(2343)] = 152369, - [SMALL_STATE(2344)] = 152398, - [SMALL_STATE(2345)] = 152427, - [SMALL_STATE(2346)] = 152460, - [SMALL_STATE(2347)] = 152489, - [SMALL_STATE(2348)] = 152518, - [SMALL_STATE(2349)] = 152551, - [SMALL_STATE(2350)] = 152584, - [SMALL_STATE(2351)] = 152613, - [SMALL_STATE(2352)] = 152646, - [SMALL_STATE(2353)] = 152679, - [SMALL_STATE(2354)] = 152708, - [SMALL_STATE(2355)] = 152737, - [SMALL_STATE(2356)] = 152767, - [SMALL_STATE(2357)] = 152797, - [SMALL_STATE(2358)] = 152825, - [SMALL_STATE(2359)] = 152855, - [SMALL_STATE(2360)] = 152875, - [SMALL_STATE(2361)] = 152893, - [SMALL_STATE(2362)] = 152911, - [SMALL_STATE(2363)] = 152941, - [SMALL_STATE(2364)] = 152959, - [SMALL_STATE(2365)] = 152989, - [SMALL_STATE(2366)] = 153007, - [SMALL_STATE(2367)] = 153025, - [SMALL_STATE(2368)] = 153043, - [SMALL_STATE(2369)] = 153061, - [SMALL_STATE(2370)] = 153079, - [SMALL_STATE(2371)] = 153109, - [SMALL_STATE(2372)] = 153127, - [SMALL_STATE(2373)] = 153145, - [SMALL_STATE(2374)] = 153163, - [SMALL_STATE(2375)] = 153181, - [SMALL_STATE(2376)] = 153199, - [SMALL_STATE(2377)] = 153225, - [SMALL_STATE(2378)] = 153243, - [SMALL_STATE(2379)] = 153263, - [SMALL_STATE(2380)] = 153285, - [SMALL_STATE(2381)] = 153315, - [SMALL_STATE(2382)] = 153333, - [SMALL_STATE(2383)] = 153363, - [SMALL_STATE(2384)] = 153393, - [SMALL_STATE(2385)] = 153423, - [SMALL_STATE(2386)] = 153441, - [SMALL_STATE(2387)] = 153471, - [SMALL_STATE(2388)] = 153489, - [SMALL_STATE(2389)] = 153507, - [SMALL_STATE(2390)] = 153525, - [SMALL_STATE(2391)] = 153543, - [SMALL_STATE(2392)] = 153561, - [SMALL_STATE(2393)] = 153579, - [SMALL_STATE(2394)] = 153597, - [SMALL_STATE(2395)] = 153627, - [SMALL_STATE(2396)] = 153645, - [SMALL_STATE(2397)] = 153665, - [SMALL_STATE(2398)] = 153683, - [SMALL_STATE(2399)] = 153701, - [SMALL_STATE(2400)] = 153722, - [SMALL_STATE(2401)] = 153753, - [SMALL_STATE(2402)] = 153784, - [SMALL_STATE(2403)] = 153806, - [SMALL_STATE(2404)] = 153828, - [SMALL_STATE(2405)] = 153850, - [SMALL_STATE(2406)] = 153872, - [SMALL_STATE(2407)] = 153894, - [SMALL_STATE(2408)] = 153916, - [SMALL_STATE(2409)] = 153938, - [SMALL_STATE(2410)] = 153960, - [SMALL_STATE(2411)] = 153982, - [SMALL_STATE(2412)] = 154004, - [SMALL_STATE(2413)] = 154026, - [SMALL_STATE(2414)] = 154048, - [SMALL_STATE(2415)] = 154070, - [SMALL_STATE(2416)] = 154092, - [SMALL_STATE(2417)] = 154114, - [SMALL_STATE(2418)] = 154136, - [SMALL_STATE(2419)] = 154158, - [SMALL_STATE(2420)] = 154180, - [SMALL_STATE(2421)] = 154202, - [SMALL_STATE(2422)] = 154224, - [SMALL_STATE(2423)] = 154246, - [SMALL_STATE(2424)] = 154268, - [SMALL_STATE(2425)] = 154290, - [SMALL_STATE(2426)] = 154312, - [SMALL_STATE(2427)] = 154334, - [SMALL_STATE(2428)] = 154356, - [SMALL_STATE(2429)] = 154378, - [SMALL_STATE(2430)] = 154400, - [SMALL_STATE(2431)] = 154422, - [SMALL_STATE(2432)] = 154444, - [SMALL_STATE(2433)] = 154466, - [SMALL_STATE(2434)] = 154488, - [SMALL_STATE(2435)] = 154510, - [SMALL_STATE(2436)] = 154532, - [SMALL_STATE(2437)] = 154554, - [SMALL_STATE(2438)] = 154576, - [SMALL_STATE(2439)] = 154598, - [SMALL_STATE(2440)] = 154620, - [SMALL_STATE(2441)] = 154642, - [SMALL_STATE(2442)] = 154664, - [SMALL_STATE(2443)] = 154686, - [SMALL_STATE(2444)] = 154708, - [SMALL_STATE(2445)] = 154730, - [SMALL_STATE(2446)] = 154752, - [SMALL_STATE(2447)] = 154774, - [SMALL_STATE(2448)] = 154796, - [SMALL_STATE(2449)] = 154818, - [SMALL_STATE(2450)] = 154840, - [SMALL_STATE(2451)] = 154862, - [SMALL_STATE(2452)] = 154884, - [SMALL_STATE(2453)] = 154906, - [SMALL_STATE(2454)] = 154928, - [SMALL_STATE(2455)] = 154950, - [SMALL_STATE(2456)] = 154972, - [SMALL_STATE(2457)] = 154994, - [SMALL_STATE(2458)] = 155016, - [SMALL_STATE(2459)] = 155038, - [SMALL_STATE(2460)] = 155060, - [SMALL_STATE(2461)] = 155082, - [SMALL_STATE(2462)] = 155104, - [SMALL_STATE(2463)] = 155126, - [SMALL_STATE(2464)] = 155148, - [SMALL_STATE(2465)] = 155170, - [SMALL_STATE(2466)] = 155192, - [SMALL_STATE(2467)] = 155214, - [SMALL_STATE(2468)] = 155236, - [SMALL_STATE(2469)] = 155258, - [SMALL_STATE(2470)] = 155280, - [SMALL_STATE(2471)] = 155302, - [SMALL_STATE(2472)] = 155324, - [SMALL_STATE(2473)] = 155346, - [SMALL_STATE(2474)] = 155368, - [SMALL_STATE(2475)] = 155390, - [SMALL_STATE(2476)] = 155412, - [SMALL_STATE(2477)] = 155434, - [SMALL_STATE(2478)] = 155456, - [SMALL_STATE(2479)] = 155478, - [SMALL_STATE(2480)] = 155500, - [SMALL_STATE(2481)] = 155522, - [SMALL_STATE(2482)] = 155544, - [SMALL_STATE(2483)] = 155566, - [SMALL_STATE(2484)] = 155588, - [SMALL_STATE(2485)] = 155610, - [SMALL_STATE(2486)] = 155632, - [SMALL_STATE(2487)] = 155654, - [SMALL_STATE(2488)] = 155676, - [SMALL_STATE(2489)] = 155698, - [SMALL_STATE(2490)] = 155720, - [SMALL_STATE(2491)] = 155742, - [SMALL_STATE(2492)] = 155764, - [SMALL_STATE(2493)] = 155786, - [SMALL_STATE(2494)] = 155808, - [SMALL_STATE(2495)] = 155830, - [SMALL_STATE(2496)] = 155852, - [SMALL_STATE(2497)] = 155874, - [SMALL_STATE(2498)] = 155896, - [SMALL_STATE(2499)] = 155918, - [SMALL_STATE(2500)] = 155940, - [SMALL_STATE(2501)] = 155962, - [SMALL_STATE(2502)] = 155984, - [SMALL_STATE(2503)] = 156006, - [SMALL_STATE(2504)] = 156028, - [SMALL_STATE(2505)] = 156050, - [SMALL_STATE(2506)] = 156072, - [SMALL_STATE(2507)] = 156094, - [SMALL_STATE(2508)] = 156116, - [SMALL_STATE(2509)] = 156138, - [SMALL_STATE(2510)] = 156160, - [SMALL_STATE(2511)] = 156182, - [SMALL_STATE(2512)] = 156204, - [SMALL_STATE(2513)] = 156226, - [SMALL_STATE(2514)] = 156248, - [SMALL_STATE(2515)] = 156270, - [SMALL_STATE(2516)] = 156292, - [SMALL_STATE(2517)] = 156314, - [SMALL_STATE(2518)] = 156336, - [SMALL_STATE(2519)] = 156358, - [SMALL_STATE(2520)] = 156380, - [SMALL_STATE(2521)] = 156402, - [SMALL_STATE(2522)] = 156424, - [SMALL_STATE(2523)] = 156446, - [SMALL_STATE(2524)] = 156468, - [SMALL_STATE(2525)] = 156490, - [SMALL_STATE(2526)] = 156512, - [SMALL_STATE(2527)] = 156534, - [SMALL_STATE(2528)] = 156556, - [SMALL_STATE(2529)] = 156578, - [SMALL_STATE(2530)] = 156600, - [SMALL_STATE(2531)] = 156622, - [SMALL_STATE(2532)] = 156644, - [SMALL_STATE(2533)] = 156666, - [SMALL_STATE(2534)] = 156688, - [SMALL_STATE(2535)] = 156710, - [SMALL_STATE(2536)] = 156732, - [SMALL_STATE(2537)] = 156754, - [SMALL_STATE(2538)] = 156776, - [SMALL_STATE(2539)] = 156798, - [SMALL_STATE(2540)] = 156820, - [SMALL_STATE(2541)] = 156842, - [SMALL_STATE(2542)] = 156864, - [SMALL_STATE(2543)] = 156886, - [SMALL_STATE(2544)] = 156908, - [SMALL_STATE(2545)] = 156930, - [SMALL_STATE(2546)] = 156952, - [SMALL_STATE(2547)] = 156974, - [SMALL_STATE(2548)] = 156996, - [SMALL_STATE(2549)] = 157018, - [SMALL_STATE(2550)] = 157040, - [SMALL_STATE(2551)] = 157062, - [SMALL_STATE(2552)] = 157084, - [SMALL_STATE(2553)] = 157106, - [SMALL_STATE(2554)] = 157128, - [SMALL_STATE(2555)] = 157150, - [SMALL_STATE(2556)] = 157172, - [SMALL_STATE(2557)] = 157194, - [SMALL_STATE(2558)] = 157216, - [SMALL_STATE(2559)] = 157238, - [SMALL_STATE(2560)] = 157260, - [SMALL_STATE(2561)] = 157282, - [SMALL_STATE(2562)] = 157304, - [SMALL_STATE(2563)] = 157326, - [SMALL_STATE(2564)] = 157348, - [SMALL_STATE(2565)] = 157370, - [SMALL_STATE(2566)] = 157392, - [SMALL_STATE(2567)] = 157414, - [SMALL_STATE(2568)] = 157436, - [SMALL_STATE(2569)] = 157458, - [SMALL_STATE(2570)] = 157480, - [SMALL_STATE(2571)] = 157502, - [SMALL_STATE(2572)] = 157524, - [SMALL_STATE(2573)] = 157546, - [SMALL_STATE(2574)] = 157568, - [SMALL_STATE(2575)] = 157590, - [SMALL_STATE(2576)] = 157612, - [SMALL_STATE(2577)] = 157634, - [SMALL_STATE(2578)] = 157656, - [SMALL_STATE(2579)] = 157678, - [SMALL_STATE(2580)] = 157700, - [SMALL_STATE(2581)] = 157722, - [SMALL_STATE(2582)] = 157744, - [SMALL_STATE(2583)] = 157766, - [SMALL_STATE(2584)] = 157788, - [SMALL_STATE(2585)] = 157810, - [SMALL_STATE(2586)] = 157832, - [SMALL_STATE(2587)] = 157854, - [SMALL_STATE(2588)] = 157876, - [SMALL_STATE(2589)] = 157898, - [SMALL_STATE(2590)] = 157920, - [SMALL_STATE(2591)] = 157942, - [SMALL_STATE(2592)] = 157964, - [SMALL_STATE(2593)] = 157986, - [SMALL_STATE(2594)] = 158008, - [SMALL_STATE(2595)] = 158030, - [SMALL_STATE(2596)] = 158052, - [SMALL_STATE(2597)] = 158074, - [SMALL_STATE(2598)] = 158096, - [SMALL_STATE(2599)] = 158118, - [SMALL_STATE(2600)] = 158140, - [SMALL_STATE(2601)] = 158162, - [SMALL_STATE(2602)] = 158184, - [SMALL_STATE(2603)] = 158206, - [SMALL_STATE(2604)] = 158228, - [SMALL_STATE(2605)] = 158250, - [SMALL_STATE(2606)] = 158272, - [SMALL_STATE(2607)] = 158294, - [SMALL_STATE(2608)] = 158316, - [SMALL_STATE(2609)] = 158338, - [SMALL_STATE(2610)] = 158360, - [SMALL_STATE(2611)] = 158382, - [SMALL_STATE(2612)] = 158410, - [SMALL_STATE(2613)] = 158432, - [SMALL_STATE(2614)] = 158454, - [SMALL_STATE(2615)] = 158476, - [SMALL_STATE(2616)] = 158498, - [SMALL_STATE(2617)] = 158520, - [SMALL_STATE(2618)] = 158542, - [SMALL_STATE(2619)] = 158564, - [SMALL_STATE(2620)] = 158586, - [SMALL_STATE(2621)] = 158608, - [SMALL_STATE(2622)] = 158630, - [SMALL_STATE(2623)] = 158652, - [SMALL_STATE(2624)] = 158674, - [SMALL_STATE(2625)] = 158696, - [SMALL_STATE(2626)] = 158718, - [SMALL_STATE(2627)] = 158740, - [SMALL_STATE(2628)] = 158762, - [SMALL_STATE(2629)] = 158784, - [SMALL_STATE(2630)] = 158806, - [SMALL_STATE(2631)] = 158828, - [SMALL_STATE(2632)] = 158850, - [SMALL_STATE(2633)] = 158872, - [SMALL_STATE(2634)] = 158894, - [SMALL_STATE(2635)] = 158916, - [SMALL_STATE(2636)] = 158938, - [SMALL_STATE(2637)] = 158960, - [SMALL_STATE(2638)] = 158982, - [SMALL_STATE(2639)] = 159004, - [SMALL_STATE(2640)] = 159026, - [SMALL_STATE(2641)] = 159048, - [SMALL_STATE(2642)] = 159070, - [SMALL_STATE(2643)] = 159092, - [SMALL_STATE(2644)] = 159114, - [SMALL_STATE(2645)] = 159136, - [SMALL_STATE(2646)] = 159158, - [SMALL_STATE(2647)] = 159180, - [SMALL_STATE(2648)] = 159202, - [SMALL_STATE(2649)] = 159224, - [SMALL_STATE(2650)] = 159246, - [SMALL_STATE(2651)] = 159268, - [SMALL_STATE(2652)] = 159290, - [SMALL_STATE(2653)] = 159312, - [SMALL_STATE(2654)] = 159334, - [SMALL_STATE(2655)] = 159356, - [SMALL_STATE(2656)] = 159378, - [SMALL_STATE(2657)] = 159400, - [SMALL_STATE(2658)] = 159422, - [SMALL_STATE(2659)] = 159444, - [SMALL_STATE(2660)] = 159466, - [SMALL_STATE(2661)] = 159488, - [SMALL_STATE(2662)] = 159510, - [SMALL_STATE(2663)] = 159532, - [SMALL_STATE(2664)] = 159554, - [SMALL_STATE(2665)] = 159576, - [SMALL_STATE(2666)] = 159598, - [SMALL_STATE(2667)] = 159620, - [SMALL_STATE(2668)] = 159642, - [SMALL_STATE(2669)] = 159664, - [SMALL_STATE(2670)] = 159686, - [SMALL_STATE(2671)] = 159708, - [SMALL_STATE(2672)] = 159730, - [SMALL_STATE(2673)] = 159752, - [SMALL_STATE(2674)] = 159774, - [SMALL_STATE(2675)] = 159796, - [SMALL_STATE(2676)] = 159818, - [SMALL_STATE(2677)] = 159840, - [SMALL_STATE(2678)] = 159862, - [SMALL_STATE(2679)] = 159884, - [SMALL_STATE(2680)] = 159906, - [SMALL_STATE(2681)] = 159928, - [SMALL_STATE(2682)] = 159950, - [SMALL_STATE(2683)] = 159972, - [SMALL_STATE(2684)] = 159994, - [SMALL_STATE(2685)] = 160016, - [SMALL_STATE(2686)] = 160038, - [SMALL_STATE(2687)] = 160054, - [SMALL_STATE(2688)] = 160076, - [SMALL_STATE(2689)] = 160098, - [SMALL_STATE(2690)] = 160120, - [SMALL_STATE(2691)] = 160142, - [SMALL_STATE(2692)] = 160164, - [SMALL_STATE(2693)] = 160186, - [SMALL_STATE(2694)] = 160208, - [SMALL_STATE(2695)] = 160230, - [SMALL_STATE(2696)] = 160252, - [SMALL_STATE(2697)] = 160274, - [SMALL_STATE(2698)] = 160296, - [SMALL_STATE(2699)] = 160318, - [SMALL_STATE(2700)] = 160340, - [SMALL_STATE(2701)] = 160362, - [SMALL_STATE(2702)] = 160384, - [SMALL_STATE(2703)] = 160406, - [SMALL_STATE(2704)] = 160428, - [SMALL_STATE(2705)] = 160450, - [SMALL_STATE(2706)] = 160472, - [SMALL_STATE(2707)] = 160494, - [SMALL_STATE(2708)] = 160516, - [SMALL_STATE(2709)] = 160538, - [SMALL_STATE(2710)] = 160560, - [SMALL_STATE(2711)] = 160588, - [SMALL_STATE(2712)] = 160616, - [SMALL_STATE(2713)] = 160638, - [SMALL_STATE(2714)] = 160666, - [SMALL_STATE(2715)] = 160694, - [SMALL_STATE(2716)] = 160722, - [SMALL_STATE(2717)] = 160750, - [SMALL_STATE(2718)] = 160772, - [SMALL_STATE(2719)] = 160800, - [SMALL_STATE(2720)] = 160828, - [SMALL_STATE(2721)] = 160847, - [SMALL_STATE(2722)] = 160866, - [SMALL_STATE(2723)] = 160885, - [SMALL_STATE(2724)] = 160904, - [SMALL_STATE(2725)] = 160923, - [SMALL_STATE(2726)] = 160942, - [SMALL_STATE(2727)] = 160961, - [SMALL_STATE(2728)] = 160980, - [SMALL_STATE(2729)] = 160999, - [SMALL_STATE(2730)] = 161018, - [SMALL_STATE(2731)] = 161037, - [SMALL_STATE(2732)] = 161056, - [SMALL_STATE(2733)] = 161075, - [SMALL_STATE(2734)] = 161094, - [SMALL_STATE(2735)] = 161113, - [SMALL_STATE(2736)] = 161132, - [SMALL_STATE(2737)] = 161151, - [SMALL_STATE(2738)] = 161170, - [SMALL_STATE(2739)] = 161189, - [SMALL_STATE(2740)] = 161208, - [SMALL_STATE(2741)] = 161227, - [SMALL_STATE(2742)] = 161246, - [SMALL_STATE(2743)] = 161265, - [SMALL_STATE(2744)] = 161284, - [SMALL_STATE(2745)] = 161303, - [SMALL_STATE(2746)] = 161322, - [SMALL_STATE(2747)] = 161341, - [SMALL_STATE(2748)] = 161356, - [SMALL_STATE(2749)] = 161375, - [SMALL_STATE(2750)] = 161394, - [SMALL_STATE(2751)] = 161413, - [SMALL_STATE(2752)] = 161432, - [SMALL_STATE(2753)] = 161451, - [SMALL_STATE(2754)] = 161470, - [SMALL_STATE(2755)] = 161489, - [SMALL_STATE(2756)] = 161508, - [SMALL_STATE(2757)] = 161527, - [SMALL_STATE(2758)] = 161546, - [SMALL_STATE(2759)] = 161565, - [SMALL_STATE(2760)] = 161584, - [SMALL_STATE(2761)] = 161603, - [SMALL_STATE(2762)] = 161622, - [SMALL_STATE(2763)] = 161641, - [SMALL_STATE(2764)] = 161660, - [SMALL_STATE(2765)] = 161679, - [SMALL_STATE(2766)] = 161698, - [SMALL_STATE(2767)] = 161717, - [SMALL_STATE(2768)] = 161736, - [SMALL_STATE(2769)] = 161755, - [SMALL_STATE(2770)] = 161774, - [SMALL_STATE(2771)] = 161793, - [SMALL_STATE(2772)] = 161812, - [SMALL_STATE(2773)] = 161831, - [SMALL_STATE(2774)] = 161850, - [SMALL_STATE(2775)] = 161869, - [SMALL_STATE(2776)] = 161888, - [SMALL_STATE(2777)] = 161907, - [SMALL_STATE(2778)] = 161926, - [SMALL_STATE(2779)] = 161945, - [SMALL_STATE(2780)] = 161964, - [SMALL_STATE(2781)] = 161983, - [SMALL_STATE(2782)] = 162002, - [SMALL_STATE(2783)] = 162021, - [SMALL_STATE(2784)] = 162040, - [SMALL_STATE(2785)] = 162059, - [SMALL_STATE(2786)] = 162078, - [SMALL_STATE(2787)] = 162097, - [SMALL_STATE(2788)] = 162116, - [SMALL_STATE(2789)] = 162135, - [SMALL_STATE(2790)] = 162154, - [SMALL_STATE(2791)] = 162173, - [SMALL_STATE(2792)] = 162192, - [SMALL_STATE(2793)] = 162211, - [SMALL_STATE(2794)] = 162230, - [SMALL_STATE(2795)] = 162249, - [SMALL_STATE(2796)] = 162268, - [SMALL_STATE(2797)] = 162287, - [SMALL_STATE(2798)] = 162306, - [SMALL_STATE(2799)] = 162325, - [SMALL_STATE(2800)] = 162344, - [SMALL_STATE(2801)] = 162363, - [SMALL_STATE(2802)] = 162382, - [SMALL_STATE(2803)] = 162401, - [SMALL_STATE(2804)] = 162420, - [SMALL_STATE(2805)] = 162439, - [SMALL_STATE(2806)] = 162458, - [SMALL_STATE(2807)] = 162477, - [SMALL_STATE(2808)] = 162496, - [SMALL_STATE(2809)] = 162515, - [SMALL_STATE(2810)] = 162534, - [SMALL_STATE(2811)] = 162553, - [SMALL_STATE(2812)] = 162572, - [SMALL_STATE(2813)] = 162591, - [SMALL_STATE(2814)] = 162610, - [SMALL_STATE(2815)] = 162629, - [SMALL_STATE(2816)] = 162648, - [SMALL_STATE(2817)] = 162667, - [SMALL_STATE(2818)] = 162686, - [SMALL_STATE(2819)] = 162705, - [SMALL_STATE(2820)] = 162724, - [SMALL_STATE(2821)] = 162743, - [SMALL_STATE(2822)] = 162762, - [SMALL_STATE(2823)] = 162781, - [SMALL_STATE(2824)] = 162800, - [SMALL_STATE(2825)] = 162819, - [SMALL_STATE(2826)] = 162838, - [SMALL_STATE(2827)] = 162857, - [SMALL_STATE(2828)] = 162876, - [SMALL_STATE(2829)] = 162895, - [SMALL_STATE(2830)] = 162914, - [SMALL_STATE(2831)] = 162933, - [SMALL_STATE(2832)] = 162952, - [SMALL_STATE(2833)] = 162971, - [SMALL_STATE(2834)] = 162990, - [SMALL_STATE(2835)] = 163009, - [SMALL_STATE(2836)] = 163028, - [SMALL_STATE(2837)] = 163047, - [SMALL_STATE(2838)] = 163066, - [SMALL_STATE(2839)] = 163085, - [SMALL_STATE(2840)] = 163104, - [SMALL_STATE(2841)] = 163123, - [SMALL_STATE(2842)] = 163142, - [SMALL_STATE(2843)] = 163161, - [SMALL_STATE(2844)] = 163180, - [SMALL_STATE(2845)] = 163199, - [SMALL_STATE(2846)] = 163218, - [SMALL_STATE(2847)] = 163237, - [SMALL_STATE(2848)] = 163256, - [SMALL_STATE(2849)] = 163275, - [SMALL_STATE(2850)] = 163294, - [SMALL_STATE(2851)] = 163313, - [SMALL_STATE(2852)] = 163332, - [SMALL_STATE(2853)] = 163351, - [SMALL_STATE(2854)] = 163370, - [SMALL_STATE(2855)] = 163389, - [SMALL_STATE(2856)] = 163408, - [SMALL_STATE(2857)] = 163427, - [SMALL_STATE(2858)] = 163446, - [SMALL_STATE(2859)] = 163465, - [SMALL_STATE(2860)] = 163484, - [SMALL_STATE(2861)] = 163503, - [SMALL_STATE(2862)] = 163522, - [SMALL_STATE(2863)] = 163541, - [SMALL_STATE(2864)] = 163560, - [SMALL_STATE(2865)] = 163579, - [SMALL_STATE(2866)] = 163598, - [SMALL_STATE(2867)] = 163617, - [SMALL_STATE(2868)] = 163636, - [SMALL_STATE(2869)] = 163655, - [SMALL_STATE(2870)] = 163674, - [SMALL_STATE(2871)] = 163693, - [SMALL_STATE(2872)] = 163712, - [SMALL_STATE(2873)] = 163731, - [SMALL_STATE(2874)] = 163750, - [SMALL_STATE(2875)] = 163769, - [SMALL_STATE(2876)] = 163788, - [SMALL_STATE(2877)] = 163807, - [SMALL_STATE(2878)] = 163826, - [SMALL_STATE(2879)] = 163845, - [SMALL_STATE(2880)] = 163864, - [SMALL_STATE(2881)] = 163883, - [SMALL_STATE(2882)] = 163902, - [SMALL_STATE(2883)] = 163921, - [SMALL_STATE(2884)] = 163940, - [SMALL_STATE(2885)] = 163959, - [SMALL_STATE(2886)] = 163978, - [SMALL_STATE(2887)] = 163997, - [SMALL_STATE(2888)] = 164016, - [SMALL_STATE(2889)] = 164035, - [SMALL_STATE(2890)] = 164054, - [SMALL_STATE(2891)] = 164073, - [SMALL_STATE(2892)] = 164092, - [SMALL_STATE(2893)] = 164111, - [SMALL_STATE(2894)] = 164130, - [SMALL_STATE(2895)] = 164149, - [SMALL_STATE(2896)] = 164168, - [SMALL_STATE(2897)] = 164187, - [SMALL_STATE(2898)] = 164206, - [SMALL_STATE(2899)] = 164225, - [SMALL_STATE(2900)] = 164244, - [SMALL_STATE(2901)] = 164263, - [SMALL_STATE(2902)] = 164282, - [SMALL_STATE(2903)] = 164301, - [SMALL_STATE(2904)] = 164320, - [SMALL_STATE(2905)] = 164339, - [SMALL_STATE(2906)] = 164358, - [SMALL_STATE(2907)] = 164377, - [SMALL_STATE(2908)] = 164396, - [SMALL_STATE(2909)] = 164415, - [SMALL_STATE(2910)] = 164434, - [SMALL_STATE(2911)] = 164453, - [SMALL_STATE(2912)] = 164472, - [SMALL_STATE(2913)] = 164491, - [SMALL_STATE(2914)] = 164510, - [SMALL_STATE(2915)] = 164529, - [SMALL_STATE(2916)] = 164548, - [SMALL_STATE(2917)] = 164567, - [SMALL_STATE(2918)] = 164586, - [SMALL_STATE(2919)] = 164605, - [SMALL_STATE(2920)] = 164624, - [SMALL_STATE(2921)] = 164643, - [SMALL_STATE(2922)] = 164662, - [SMALL_STATE(2923)] = 164681, - [SMALL_STATE(2924)] = 164700, - [SMALL_STATE(2925)] = 164719, - [SMALL_STATE(2926)] = 164738, - [SMALL_STATE(2927)] = 164757, - [SMALL_STATE(2928)] = 164776, - [SMALL_STATE(2929)] = 164795, - [SMALL_STATE(2930)] = 164814, - [SMALL_STATE(2931)] = 164833, - [SMALL_STATE(2932)] = 164852, - [SMALL_STATE(2933)] = 164871, - [SMALL_STATE(2934)] = 164890, - [SMALL_STATE(2935)] = 164909, - [SMALL_STATE(2936)] = 164928, - [SMALL_STATE(2937)] = 164947, - [SMALL_STATE(2938)] = 164966, - [SMALL_STATE(2939)] = 164985, - [SMALL_STATE(2940)] = 165004, - [SMALL_STATE(2941)] = 165023, - [SMALL_STATE(2942)] = 165042, - [SMALL_STATE(2943)] = 165061, - [SMALL_STATE(2944)] = 165080, - [SMALL_STATE(2945)] = 165099, - [SMALL_STATE(2946)] = 165118, - [SMALL_STATE(2947)] = 165137, - [SMALL_STATE(2948)] = 165156, - [SMALL_STATE(2949)] = 165175, - [SMALL_STATE(2950)] = 165194, - [SMALL_STATE(2951)] = 165213, - [SMALL_STATE(2952)] = 165232, - [SMALL_STATE(2953)] = 165251, - [SMALL_STATE(2954)] = 165270, - [SMALL_STATE(2955)] = 165289, - [SMALL_STATE(2956)] = 165308, - [SMALL_STATE(2957)] = 165327, - [SMALL_STATE(2958)] = 165346, - [SMALL_STATE(2959)] = 165365, - [SMALL_STATE(2960)] = 165384, - [SMALL_STATE(2961)] = 165403, - [SMALL_STATE(2962)] = 165422, - [SMALL_STATE(2963)] = 165441, - [SMALL_STATE(2964)] = 165460, - [SMALL_STATE(2965)] = 165479, - [SMALL_STATE(2966)] = 165498, - [SMALL_STATE(2967)] = 165517, - [SMALL_STATE(2968)] = 165536, - [SMALL_STATE(2969)] = 165555, - [SMALL_STATE(2970)] = 165574, - [SMALL_STATE(2971)] = 165593, - [SMALL_STATE(2972)] = 165612, - [SMALL_STATE(2973)] = 165631, - [SMALL_STATE(2974)] = 165650, - [SMALL_STATE(2975)] = 165669, - [SMALL_STATE(2976)] = 165688, - [SMALL_STATE(2977)] = 165707, - [SMALL_STATE(2978)] = 165726, - [SMALL_STATE(2979)] = 165745, - [SMALL_STATE(2980)] = 165764, - [SMALL_STATE(2981)] = 165783, - [SMALL_STATE(2982)] = 165802, - [SMALL_STATE(2983)] = 165821, - [SMALL_STATE(2984)] = 165840, - [SMALL_STATE(2985)] = 165859, - [SMALL_STATE(2986)] = 165878, - [SMALL_STATE(2987)] = 165897, - [SMALL_STATE(2988)] = 165916, - [SMALL_STATE(2989)] = 165935, - [SMALL_STATE(2990)] = 165954, - [SMALL_STATE(2991)] = 165973, - [SMALL_STATE(2992)] = 165992, - [SMALL_STATE(2993)] = 166011, - [SMALL_STATE(2994)] = 166030, - [SMALL_STATE(2995)] = 166049, - [SMALL_STATE(2996)] = 166068, - [SMALL_STATE(2997)] = 166087, - [SMALL_STATE(2998)] = 166106, - [SMALL_STATE(2999)] = 166125, - [SMALL_STATE(3000)] = 166144, - [SMALL_STATE(3001)] = 166163, - [SMALL_STATE(3002)] = 166182, - [SMALL_STATE(3003)] = 166201, - [SMALL_STATE(3004)] = 166220, - [SMALL_STATE(3005)] = 166239, - [SMALL_STATE(3006)] = 166258, - [SMALL_STATE(3007)] = 166277, - [SMALL_STATE(3008)] = 166296, - [SMALL_STATE(3009)] = 166315, - [SMALL_STATE(3010)] = 166334, - [SMALL_STATE(3011)] = 166353, - [SMALL_STATE(3012)] = 166372, - [SMALL_STATE(3013)] = 166391, - [SMALL_STATE(3014)] = 166410, - [SMALL_STATE(3015)] = 166429, - [SMALL_STATE(3016)] = 166448, - [SMALL_STATE(3017)] = 166467, - [SMALL_STATE(3018)] = 166486, - [SMALL_STATE(3019)] = 166505, - [SMALL_STATE(3020)] = 166524, - [SMALL_STATE(3021)] = 166543, - [SMALL_STATE(3022)] = 166562, - [SMALL_STATE(3023)] = 166581, - [SMALL_STATE(3024)] = 166600, - [SMALL_STATE(3025)] = 166619, - [SMALL_STATE(3026)] = 166638, - [SMALL_STATE(3027)] = 166657, - [SMALL_STATE(3028)] = 166676, - [SMALL_STATE(3029)] = 166695, - [SMALL_STATE(3030)] = 166714, - [SMALL_STATE(3031)] = 166733, - [SMALL_STATE(3032)] = 166752, - [SMALL_STATE(3033)] = 166771, - [SMALL_STATE(3034)] = 166790, - [SMALL_STATE(3035)] = 166809, - [SMALL_STATE(3036)] = 166828, - [SMALL_STATE(3037)] = 166847, - [SMALL_STATE(3038)] = 166866, - [SMALL_STATE(3039)] = 166885, - [SMALL_STATE(3040)] = 166904, - [SMALL_STATE(3041)] = 166923, - [SMALL_STATE(3042)] = 166942, - [SMALL_STATE(3043)] = 166961, - [SMALL_STATE(3044)] = 166980, - [SMALL_STATE(3045)] = 166999, - [SMALL_STATE(3046)] = 167018, - [SMALL_STATE(3047)] = 167037, - [SMALL_STATE(3048)] = 167056, - [SMALL_STATE(3049)] = 167075, - [SMALL_STATE(3050)] = 167094, - [SMALL_STATE(3051)] = 167113, - [SMALL_STATE(3052)] = 167132, - [SMALL_STATE(3053)] = 167151, - [SMALL_STATE(3054)] = 167170, - [SMALL_STATE(3055)] = 167189, - [SMALL_STATE(3056)] = 167208, - [SMALL_STATE(3057)] = 167227, - [SMALL_STATE(3058)] = 167246, - [SMALL_STATE(3059)] = 167265, - [SMALL_STATE(3060)] = 167284, - [SMALL_STATE(3061)] = 167303, - [SMALL_STATE(3062)] = 167322, - [SMALL_STATE(3063)] = 167341, - [SMALL_STATE(3064)] = 167360, - [SMALL_STATE(3065)] = 167379, - [SMALL_STATE(3066)] = 167398, - [SMALL_STATE(3067)] = 167417, - [SMALL_STATE(3068)] = 167436, - [SMALL_STATE(3069)] = 167455, - [SMALL_STATE(3070)] = 167474, - [SMALL_STATE(3071)] = 167493, - [SMALL_STATE(3072)] = 167512, - [SMALL_STATE(3073)] = 167531, - [SMALL_STATE(3074)] = 167550, - [SMALL_STATE(3075)] = 167569, - [SMALL_STATE(3076)] = 167588, - [SMALL_STATE(3077)] = 167607, - [SMALL_STATE(3078)] = 167626, - [SMALL_STATE(3079)] = 167645, - [SMALL_STATE(3080)] = 167664, - [SMALL_STATE(3081)] = 167683, - [SMALL_STATE(3082)] = 167702, - [SMALL_STATE(3083)] = 167721, - [SMALL_STATE(3084)] = 167740, - [SMALL_STATE(3085)] = 167759, - [SMALL_STATE(3086)] = 167778, - [SMALL_STATE(3087)] = 167797, - [SMALL_STATE(3088)] = 167816, - [SMALL_STATE(3089)] = 167835, - [SMALL_STATE(3090)] = 167854, - [SMALL_STATE(3091)] = 167873, - [SMALL_STATE(3092)] = 167892, - [SMALL_STATE(3093)] = 167911, - [SMALL_STATE(3094)] = 167930, - [SMALL_STATE(3095)] = 167949, - [SMALL_STATE(3096)] = 167968, - [SMALL_STATE(3097)] = 167987, - [SMALL_STATE(3098)] = 168006, - [SMALL_STATE(3099)] = 168025, - [SMALL_STATE(3100)] = 168044, - [SMALL_STATE(3101)] = 168063, - [SMALL_STATE(3102)] = 168082, - [SMALL_STATE(3103)] = 168101, - [SMALL_STATE(3104)] = 168120, - [SMALL_STATE(3105)] = 168139, - [SMALL_STATE(3106)] = 168158, - [SMALL_STATE(3107)] = 168177, - [SMALL_STATE(3108)] = 168196, - [SMALL_STATE(3109)] = 168215, - [SMALL_STATE(3110)] = 168234, - [SMALL_STATE(3111)] = 168253, - [SMALL_STATE(3112)] = 168272, - [SMALL_STATE(3113)] = 168291, - [SMALL_STATE(3114)] = 168310, - [SMALL_STATE(3115)] = 168329, - [SMALL_STATE(3116)] = 168348, - [SMALL_STATE(3117)] = 168367, - [SMALL_STATE(3118)] = 168386, - [SMALL_STATE(3119)] = 168405, - [SMALL_STATE(3120)] = 168424, - [SMALL_STATE(3121)] = 168443, - [SMALL_STATE(3122)] = 168462, - [SMALL_STATE(3123)] = 168481, - [SMALL_STATE(3124)] = 168500, - [SMALL_STATE(3125)] = 168519, - [SMALL_STATE(3126)] = 168538, - [SMALL_STATE(3127)] = 168557, - [SMALL_STATE(3128)] = 168576, - [SMALL_STATE(3129)] = 168595, - [SMALL_STATE(3130)] = 168614, - [SMALL_STATE(3131)] = 168633, - [SMALL_STATE(3132)] = 168652, - [SMALL_STATE(3133)] = 168671, - [SMALL_STATE(3134)] = 168690, - [SMALL_STATE(3135)] = 168709, - [SMALL_STATE(3136)] = 168728, - [SMALL_STATE(3137)] = 168747, - [SMALL_STATE(3138)] = 168766, - [SMALL_STATE(3139)] = 168785, - [SMALL_STATE(3140)] = 168804, - [SMALL_STATE(3141)] = 168823, - [SMALL_STATE(3142)] = 168842, - [SMALL_STATE(3143)] = 168861, - [SMALL_STATE(3144)] = 168880, - [SMALL_STATE(3145)] = 168899, - [SMALL_STATE(3146)] = 168918, - [SMALL_STATE(3147)] = 168937, - [SMALL_STATE(3148)] = 168956, - [SMALL_STATE(3149)] = 168975, - [SMALL_STATE(3150)] = 168994, - [SMALL_STATE(3151)] = 169013, - [SMALL_STATE(3152)] = 169032, - [SMALL_STATE(3153)] = 169051, - [SMALL_STATE(3154)] = 169070, - [SMALL_STATE(3155)] = 169089, - [SMALL_STATE(3156)] = 169108, - [SMALL_STATE(3157)] = 169127, - [SMALL_STATE(3158)] = 169146, - [SMALL_STATE(3159)] = 169165, - [SMALL_STATE(3160)] = 169184, - [SMALL_STATE(3161)] = 169203, - [SMALL_STATE(3162)] = 169222, - [SMALL_STATE(3163)] = 169241, - [SMALL_STATE(3164)] = 169260, - [SMALL_STATE(3165)] = 169279, - [SMALL_STATE(3166)] = 169298, - [SMALL_STATE(3167)] = 169317, - [SMALL_STATE(3168)] = 169336, - [SMALL_STATE(3169)] = 169355, - [SMALL_STATE(3170)] = 169374, - [SMALL_STATE(3171)] = 169393, - [SMALL_STATE(3172)] = 169412, - [SMALL_STATE(3173)] = 169431, - [SMALL_STATE(3174)] = 169450, - [SMALL_STATE(3175)] = 169469, - [SMALL_STATE(3176)] = 169488, - [SMALL_STATE(3177)] = 169507, - [SMALL_STATE(3178)] = 169526, - [SMALL_STATE(3179)] = 169545, - [SMALL_STATE(3180)] = 169564, - [SMALL_STATE(3181)] = 169583, - [SMALL_STATE(3182)] = 169601, - [SMALL_STATE(3183)] = 169619, - [SMALL_STATE(3184)] = 169637, - [SMALL_STATE(3185)] = 169655, - [SMALL_STATE(3186)] = 169673, - [SMALL_STATE(3187)] = 169691, - [SMALL_STATE(3188)] = 169709, - [SMALL_STATE(3189)] = 169727, - [SMALL_STATE(3190)] = 169745, - [SMALL_STATE(3191)] = 169763, - [SMALL_STATE(3192)] = 169781, - [SMALL_STATE(3193)] = 169799, - [SMALL_STATE(3194)] = 169817, - [SMALL_STATE(3195)] = 169835, - [SMALL_STATE(3196)] = 169853, - [SMALL_STATE(3197)] = 169871, - [SMALL_STATE(3198)] = 169889, - [SMALL_STATE(3199)] = 169907, - [SMALL_STATE(3200)] = 169925, - [SMALL_STATE(3201)] = 169943, - [SMALL_STATE(3202)] = 169961, - [SMALL_STATE(3203)] = 169979, - [SMALL_STATE(3204)] = 169997, - [SMALL_STATE(3205)] = 170015, - [SMALL_STATE(3206)] = 170033, - [SMALL_STATE(3207)] = 170051, - [SMALL_STATE(3208)] = 170069, - [SMALL_STATE(3209)] = 170087, - [SMALL_STATE(3210)] = 170105, - [SMALL_STATE(3211)] = 170123, - [SMALL_STATE(3212)] = 170141, - [SMALL_STATE(3213)] = 170159, - [SMALL_STATE(3214)] = 170177, - [SMALL_STATE(3215)] = 170195, - [SMALL_STATE(3216)] = 170213, - [SMALL_STATE(3217)] = 170231, - [SMALL_STATE(3218)] = 170249, - [SMALL_STATE(3219)] = 170267, - [SMALL_STATE(3220)] = 170285, - [SMALL_STATE(3221)] = 170303, - [SMALL_STATE(3222)] = 170321, - [SMALL_STATE(3223)] = 170339, - [SMALL_STATE(3224)] = 170357, - [SMALL_STATE(3225)] = 170375, - [SMALL_STATE(3226)] = 170393, - [SMALL_STATE(3227)] = 170411, - [SMALL_STATE(3228)] = 170429, - [SMALL_STATE(3229)] = 170447, - [SMALL_STATE(3230)] = 170465, - [SMALL_STATE(3231)] = 170483, - [SMALL_STATE(3232)] = 170501, - [SMALL_STATE(3233)] = 170519, - [SMALL_STATE(3234)] = 170537, - [SMALL_STATE(3235)] = 170555, - [SMALL_STATE(3236)] = 170573, - [SMALL_STATE(3237)] = 170591, - [SMALL_STATE(3238)] = 170609, - [SMALL_STATE(3239)] = 170627, - [SMALL_STATE(3240)] = 170645, - [SMALL_STATE(3241)] = 170663, - [SMALL_STATE(3242)] = 170681, - [SMALL_STATE(3243)] = 170699, - [SMALL_STATE(3244)] = 170717, - [SMALL_STATE(3245)] = 170735, - [SMALL_STATE(3246)] = 170753, - [SMALL_STATE(3247)] = 170771, - [SMALL_STATE(3248)] = 170789, - [SMALL_STATE(3249)] = 170807, - [SMALL_STATE(3250)] = 170825, - [SMALL_STATE(3251)] = 170843, - [SMALL_STATE(3252)] = 170861, - [SMALL_STATE(3253)] = 170879, - [SMALL_STATE(3254)] = 170897, - [SMALL_STATE(3255)] = 170915, - [SMALL_STATE(3256)] = 170933, - [SMALL_STATE(3257)] = 170951, - [SMALL_STATE(3258)] = 170969, - [SMALL_STATE(3259)] = 170987, - [SMALL_STATE(3260)] = 171005, - [SMALL_STATE(3261)] = 171023, - [SMALL_STATE(3262)] = 171041, - [SMALL_STATE(3263)] = 171059, - [SMALL_STATE(3264)] = 171077, - [SMALL_STATE(3265)] = 171095, - [SMALL_STATE(3266)] = 171113, - [SMALL_STATE(3267)] = 171131, - [SMALL_STATE(3268)] = 171149, - [SMALL_STATE(3269)] = 171167, - [SMALL_STATE(3270)] = 171187, - [SMALL_STATE(3271)] = 171205, - [SMALL_STATE(3272)] = 171223, - [SMALL_STATE(3273)] = 171241, - [SMALL_STATE(3274)] = 171259, - [SMALL_STATE(3275)] = 171277, - [SMALL_STATE(3276)] = 171295, - [SMALL_STATE(3277)] = 171313, - [SMALL_STATE(3278)] = 171331, - [SMALL_STATE(3279)] = 171349, - [SMALL_STATE(3280)] = 171367, - [SMALL_STATE(3281)] = 171385, - [SMALL_STATE(3282)] = 171403, - [SMALL_STATE(3283)] = 171421, - [SMALL_STATE(3284)] = 171439, - [SMALL_STATE(3285)] = 171457, - [SMALL_STATE(3286)] = 171475, - [SMALL_STATE(3287)] = 171493, - [SMALL_STATE(3288)] = 171511, - [SMALL_STATE(3289)] = 171529, - [SMALL_STATE(3290)] = 171547, - [SMALL_STATE(3291)] = 171565, - [SMALL_STATE(3292)] = 171583, - [SMALL_STATE(3293)] = 171601, - [SMALL_STATE(3294)] = 171619, - [SMALL_STATE(3295)] = 171637, - [SMALL_STATE(3296)] = 171654, - [SMALL_STATE(3297)] = 171671, - [SMALL_STATE(3298)] = 171684, - [SMALL_STATE(3299)] = 171697, - [SMALL_STATE(3300)] = 171710, - [SMALL_STATE(3301)] = 171723, - [SMALL_STATE(3302)] = 171736, - [SMALL_STATE(3303)] = 171749, - [SMALL_STATE(3304)] = 171762, - [SMALL_STATE(3305)] = 171775, - [SMALL_STATE(3306)] = 171794, - [SMALL_STATE(3307)] = 171807, - [SMALL_STATE(3308)] = 171820, - [SMALL_STATE(3309)] = 171830, - [SMALL_STATE(3310)] = 171842, - [SMALL_STATE(3311)] = 171852, - [SMALL_STATE(3312)] = 171862, - [SMALL_STATE(3313)] = 171872, - [SMALL_STATE(3314)] = 171882, - [SMALL_STATE(3315)] = 171892, - [SMALL_STATE(3316)] = 171902, - [SMALL_STATE(3317)] = 171912, - [SMALL_STATE(3318)] = 171922, - [SMALL_STATE(3319)] = 171935, - [SMALL_STATE(3320)] = 171948, - [SMALL_STATE(3321)] = 171961, - [SMALL_STATE(3322)] = 171974, - [SMALL_STATE(3323)] = 171987, - [SMALL_STATE(3324)] = 172000, - [SMALL_STATE(3325)] = 172013, - [SMALL_STATE(3326)] = 172026, - [SMALL_STATE(3327)] = 172039, - [SMALL_STATE(3328)] = 172052, - [SMALL_STATE(3329)] = 172065, - [SMALL_STATE(3330)] = 172078, - [SMALL_STATE(3331)] = 172091, - [SMALL_STATE(3332)] = 172104, - [SMALL_STATE(3333)] = 172117, - [SMALL_STATE(3334)] = 172127, - [SMALL_STATE(3335)] = 172137, - [SMALL_STATE(3336)] = 172147, - [SMALL_STATE(3337)] = 172157, - [SMALL_STATE(3338)] = 172167, - [SMALL_STATE(3339)] = 172177, - [SMALL_STATE(3340)] = 172187, - [SMALL_STATE(3341)] = 172197, - [SMALL_STATE(3342)] = 172207, - [SMALL_STATE(3343)] = 172217, - [SMALL_STATE(3344)] = 172227, - [SMALL_STATE(3345)] = 172237, - [SMALL_STATE(3346)] = 172247, - [SMALL_STATE(3347)] = 172257, - [SMALL_STATE(3348)] = 172267, - [SMALL_STATE(3349)] = 172277, - [SMALL_STATE(3350)] = 172287, - [SMALL_STATE(3351)] = 172297, - [SMALL_STATE(3352)] = 172307, - [SMALL_STATE(3353)] = 172317, - [SMALL_STATE(3354)] = 172327, - [SMALL_STATE(3355)] = 172337, - [SMALL_STATE(3356)] = 172344, - [SMALL_STATE(3357)] = 172351, - [SMALL_STATE(3358)] = 172358, - [SMALL_STATE(3359)] = 172365, - [SMALL_STATE(3360)] = 172372, - [SMALL_STATE(3361)] = 172379, - [SMALL_STATE(3362)] = 172386, - [SMALL_STATE(3363)] = 172393, - [SMALL_STATE(3364)] = 172400, - [SMALL_STATE(3365)] = 172407, - [SMALL_STATE(3366)] = 172414, - [SMALL_STATE(3367)] = 172421, - [SMALL_STATE(3368)] = 172428, - [SMALL_STATE(3369)] = 172435, - [SMALL_STATE(3370)] = 172442, - [SMALL_STATE(3371)] = 172449, - [SMALL_STATE(3372)] = 172456, - [SMALL_STATE(3373)] = 172463, - [SMALL_STATE(3374)] = 172470, - [SMALL_STATE(3375)] = 172477, - [SMALL_STATE(3376)] = 172484, - [SMALL_STATE(3377)] = 172491, - [SMALL_STATE(3378)] = 172498, - [SMALL_STATE(3379)] = 172505, - [SMALL_STATE(3380)] = 172512, - [SMALL_STATE(3381)] = 172519, - [SMALL_STATE(3382)] = 172526, - [SMALL_STATE(3383)] = 172533, - [SMALL_STATE(3384)] = 172540, - [SMALL_STATE(3385)] = 172547, - [SMALL_STATE(3386)] = 172554, - [SMALL_STATE(3387)] = 172561, - [SMALL_STATE(3388)] = 172568, - [SMALL_STATE(3389)] = 172575, - [SMALL_STATE(3390)] = 172582, - [SMALL_STATE(3391)] = 172589, - [SMALL_STATE(3392)] = 172596, - [SMALL_STATE(3393)] = 172603, - [SMALL_STATE(3394)] = 172610, - [SMALL_STATE(3395)] = 172617, - [SMALL_STATE(3396)] = 172624, + [SMALL_STATE(264)] = 0, + [SMALL_STATE(265)] = 135, + [SMALL_STATE(266)] = 270, + [SMALL_STATE(267)] = 405, + [SMALL_STATE(268)] = 540, + [SMALL_STATE(269)] = 675, + [SMALL_STATE(270)] = 810, + [SMALL_STATE(271)] = 945, + [SMALL_STATE(272)] = 1080, + [SMALL_STATE(273)] = 1215, + [SMALL_STATE(274)] = 1350, + [SMALL_STATE(275)] = 1485, + [SMALL_STATE(276)] = 1620, + [SMALL_STATE(277)] = 1755, + [SMALL_STATE(278)] = 1890, + [SMALL_STATE(279)] = 2025, + [SMALL_STATE(280)] = 2160, + [SMALL_STATE(281)] = 2295, + [SMALL_STATE(282)] = 2430, + [SMALL_STATE(283)] = 2565, + [SMALL_STATE(284)] = 2700, + [SMALL_STATE(285)] = 2835, + [SMALL_STATE(286)] = 2970, + [SMALL_STATE(287)] = 3105, + [SMALL_STATE(288)] = 3240, + [SMALL_STATE(289)] = 3375, + [SMALL_STATE(290)] = 3510, + [SMALL_STATE(291)] = 3645, + [SMALL_STATE(292)] = 3780, + [SMALL_STATE(293)] = 3915, + [SMALL_STATE(294)] = 4050, + [SMALL_STATE(295)] = 4185, + [SMALL_STATE(296)] = 4320, + [SMALL_STATE(297)] = 4455, + [SMALL_STATE(298)] = 4590, + [SMALL_STATE(299)] = 4725, + [SMALL_STATE(300)] = 4860, + [SMALL_STATE(301)] = 4995, + [SMALL_STATE(302)] = 5130, + [SMALL_STATE(303)] = 5265, + [SMALL_STATE(304)] = 5400, + [SMALL_STATE(305)] = 5535, + [SMALL_STATE(306)] = 5670, + [SMALL_STATE(307)] = 5805, + [SMALL_STATE(308)] = 5940, + [SMALL_STATE(309)] = 6075, + [SMALL_STATE(310)] = 6210, + [SMALL_STATE(311)] = 6345, + [SMALL_STATE(312)] = 6480, + [SMALL_STATE(313)] = 6615, + [SMALL_STATE(314)] = 6750, + [SMALL_STATE(315)] = 6885, + [SMALL_STATE(316)] = 7020, + [SMALL_STATE(317)] = 7155, + [SMALL_STATE(318)] = 7290, + [SMALL_STATE(319)] = 7425, + [SMALL_STATE(320)] = 7560, + [SMALL_STATE(321)] = 7695, + [SMALL_STATE(322)] = 7830, + [SMALL_STATE(323)] = 7965, + [SMALL_STATE(324)] = 8100, + [SMALL_STATE(325)] = 8235, + [SMALL_STATE(326)] = 8370, + [SMALL_STATE(327)] = 8505, + [SMALL_STATE(328)] = 8640, + [SMALL_STATE(329)] = 8775, + [SMALL_STATE(330)] = 8910, + [SMALL_STATE(331)] = 9045, + [SMALL_STATE(332)] = 9180, + [SMALL_STATE(333)] = 9315, + [SMALL_STATE(334)] = 9450, + [SMALL_STATE(335)] = 9585, + [SMALL_STATE(336)] = 9720, + [SMALL_STATE(337)] = 9855, + [SMALL_STATE(338)] = 9990, + [SMALL_STATE(339)] = 10125, + [SMALL_STATE(340)] = 10260, + [SMALL_STATE(341)] = 10395, + [SMALL_STATE(342)] = 10530, + [SMALL_STATE(343)] = 10665, + [SMALL_STATE(344)] = 10800, + [SMALL_STATE(345)] = 10935, + [SMALL_STATE(346)] = 11070, + [SMALL_STATE(347)] = 11205, + [SMALL_STATE(348)] = 11340, + [SMALL_STATE(349)] = 11475, + [SMALL_STATE(350)] = 11610, + [SMALL_STATE(351)] = 11745, + [SMALL_STATE(352)] = 11880, + [SMALL_STATE(353)] = 12015, + [SMALL_STATE(354)] = 12150, + [SMALL_STATE(355)] = 12285, + [SMALL_STATE(356)] = 12420, + [SMALL_STATE(357)] = 12555, + [SMALL_STATE(358)] = 12690, + [SMALL_STATE(359)] = 12825, + [SMALL_STATE(360)] = 12960, + [SMALL_STATE(361)] = 13095, + [SMALL_STATE(362)] = 13230, + [SMALL_STATE(363)] = 13365, + [SMALL_STATE(364)] = 13500, + [SMALL_STATE(365)] = 13635, + [SMALL_STATE(366)] = 13770, + [SMALL_STATE(367)] = 13905, + [SMALL_STATE(368)] = 14040, + [SMALL_STATE(369)] = 14175, + [SMALL_STATE(370)] = 14310, + [SMALL_STATE(371)] = 14445, + [SMALL_STATE(372)] = 14580, + [SMALL_STATE(373)] = 14715, + [SMALL_STATE(374)] = 14850, + [SMALL_STATE(375)] = 14985, + [SMALL_STATE(376)] = 15120, + [SMALL_STATE(377)] = 15255, + [SMALL_STATE(378)] = 15390, + [SMALL_STATE(379)] = 15525, + [SMALL_STATE(380)] = 15660, + [SMALL_STATE(381)] = 15795, + [SMALL_STATE(382)] = 15930, + [SMALL_STATE(383)] = 16065, + [SMALL_STATE(384)] = 16200, + [SMALL_STATE(385)] = 16335, + [SMALL_STATE(386)] = 16470, + [SMALL_STATE(387)] = 16605, + [SMALL_STATE(388)] = 16740, + [SMALL_STATE(389)] = 16875, + [SMALL_STATE(390)] = 17010, + [SMALL_STATE(391)] = 17145, + [SMALL_STATE(392)] = 17280, + [SMALL_STATE(393)] = 17415, + [SMALL_STATE(394)] = 17550, + [SMALL_STATE(395)] = 17685, + [SMALL_STATE(396)] = 17820, + [SMALL_STATE(397)] = 17955, + [SMALL_STATE(398)] = 18090, + [SMALL_STATE(399)] = 18225, + [SMALL_STATE(400)] = 18360, + [SMALL_STATE(401)] = 18495, + [SMALL_STATE(402)] = 18630, + [SMALL_STATE(403)] = 18765, + [SMALL_STATE(404)] = 18900, + [SMALL_STATE(405)] = 19035, + [SMALL_STATE(406)] = 19170, + [SMALL_STATE(407)] = 19305, + [SMALL_STATE(408)] = 19440, + [SMALL_STATE(409)] = 19575, + [SMALL_STATE(410)] = 19710, + [SMALL_STATE(411)] = 19845, + [SMALL_STATE(412)] = 19980, + [SMALL_STATE(413)] = 20115, + [SMALL_STATE(414)] = 20250, + [SMALL_STATE(415)] = 20385, + [SMALL_STATE(416)] = 20520, + [SMALL_STATE(417)] = 20655, + [SMALL_STATE(418)] = 20790, + [SMALL_STATE(419)] = 20925, + [SMALL_STATE(420)] = 21060, + [SMALL_STATE(421)] = 21195, + [SMALL_STATE(422)] = 21330, + [SMALL_STATE(423)] = 21465, + [SMALL_STATE(424)] = 21600, + [SMALL_STATE(425)] = 21735, + [SMALL_STATE(426)] = 21870, + [SMALL_STATE(427)] = 22005, + [SMALL_STATE(428)] = 22140, + [SMALL_STATE(429)] = 22275, + [SMALL_STATE(430)] = 22410, + [SMALL_STATE(431)] = 22545, + [SMALL_STATE(432)] = 22680, + [SMALL_STATE(433)] = 22815, + [SMALL_STATE(434)] = 22950, + [SMALL_STATE(435)] = 23085, + [SMALL_STATE(436)] = 23220, + [SMALL_STATE(437)] = 23355, + [SMALL_STATE(438)] = 23490, + [SMALL_STATE(439)] = 23625, + [SMALL_STATE(440)] = 23760, + [SMALL_STATE(441)] = 23895, + [SMALL_STATE(442)] = 24030, + [SMALL_STATE(443)] = 24165, + [SMALL_STATE(444)] = 24300, + [SMALL_STATE(445)] = 24435, + [SMALL_STATE(446)] = 24570, + [SMALL_STATE(447)] = 24705, + [SMALL_STATE(448)] = 24840, + [SMALL_STATE(449)] = 24975, + [SMALL_STATE(450)] = 25110, + [SMALL_STATE(451)] = 25245, + [SMALL_STATE(452)] = 25380, + [SMALL_STATE(453)] = 25515, + [SMALL_STATE(454)] = 25650, + [SMALL_STATE(455)] = 25785, + [SMALL_STATE(456)] = 25920, + [SMALL_STATE(457)] = 26055, + [SMALL_STATE(458)] = 26190, + [SMALL_STATE(459)] = 26325, + [SMALL_STATE(460)] = 26460, + [SMALL_STATE(461)] = 26595, + [SMALL_STATE(462)] = 26730, + [SMALL_STATE(463)] = 26865, + [SMALL_STATE(464)] = 27000, + [SMALL_STATE(465)] = 27135, + [SMALL_STATE(466)] = 27270, + [SMALL_STATE(467)] = 27405, + [SMALL_STATE(468)] = 27540, + [SMALL_STATE(469)] = 27675, + [SMALL_STATE(470)] = 27810, + [SMALL_STATE(471)] = 27945, + [SMALL_STATE(472)] = 28080, + [SMALL_STATE(473)] = 28215, + [SMALL_STATE(474)] = 28350, + [SMALL_STATE(475)] = 28485, + [SMALL_STATE(476)] = 28620, + [SMALL_STATE(477)] = 28755, + [SMALL_STATE(478)] = 28890, + [SMALL_STATE(479)] = 29025, + [SMALL_STATE(480)] = 29160, + [SMALL_STATE(481)] = 29295, + [SMALL_STATE(482)] = 29430, + [SMALL_STATE(483)] = 29565, + [SMALL_STATE(484)] = 29700, + [SMALL_STATE(485)] = 29835, + [SMALL_STATE(486)] = 29970, + [SMALL_STATE(487)] = 30105, + [SMALL_STATE(488)] = 30240, + [SMALL_STATE(489)] = 30375, + [SMALL_STATE(490)] = 30510, + [SMALL_STATE(491)] = 30645, + [SMALL_STATE(492)] = 30780, + [SMALL_STATE(493)] = 30915, + [SMALL_STATE(494)] = 31050, + [SMALL_STATE(495)] = 31185, + [SMALL_STATE(496)] = 31320, + [SMALL_STATE(497)] = 31455, + [SMALL_STATE(498)] = 31590, + [SMALL_STATE(499)] = 31725, + [SMALL_STATE(500)] = 31860, + [SMALL_STATE(501)] = 31995, + [SMALL_STATE(502)] = 32130, + [SMALL_STATE(503)] = 32265, + [SMALL_STATE(504)] = 32400, + [SMALL_STATE(505)] = 32535, + [SMALL_STATE(506)] = 32670, + [SMALL_STATE(507)] = 32805, + [SMALL_STATE(508)] = 32940, + [SMALL_STATE(509)] = 33075, + [SMALL_STATE(510)] = 33210, + [SMALL_STATE(511)] = 33345, + [SMALL_STATE(512)] = 33480, + [SMALL_STATE(513)] = 33615, + [SMALL_STATE(514)] = 33750, + [SMALL_STATE(515)] = 33885, + [SMALL_STATE(516)] = 34020, + [SMALL_STATE(517)] = 34155, + [SMALL_STATE(518)] = 34290, + [SMALL_STATE(519)] = 34425, + [SMALL_STATE(520)] = 34560, + [SMALL_STATE(521)] = 34695, + [SMALL_STATE(522)] = 34830, + [SMALL_STATE(523)] = 34965, + [SMALL_STATE(524)] = 35100, + [SMALL_STATE(525)] = 35235, + [SMALL_STATE(526)] = 35370, + [SMALL_STATE(527)] = 35505, + [SMALL_STATE(528)] = 35640, + [SMALL_STATE(529)] = 35775, + [SMALL_STATE(530)] = 35910, + [SMALL_STATE(531)] = 36045, + [SMALL_STATE(532)] = 36180, + [SMALL_STATE(533)] = 36315, + [SMALL_STATE(534)] = 36450, + [SMALL_STATE(535)] = 36585, + [SMALL_STATE(536)] = 36720, + [SMALL_STATE(537)] = 36855, + [SMALL_STATE(538)] = 36990, + [SMALL_STATE(539)] = 37125, + [SMALL_STATE(540)] = 37260, + [SMALL_STATE(541)] = 37395, + [SMALL_STATE(542)] = 37530, + [SMALL_STATE(543)] = 37665, + [SMALL_STATE(544)] = 37800, + [SMALL_STATE(545)] = 37935, + [SMALL_STATE(546)] = 38070, + [SMALL_STATE(547)] = 38205, + [SMALL_STATE(548)] = 38340, + [SMALL_STATE(549)] = 38475, + [SMALL_STATE(550)] = 38610, + [SMALL_STATE(551)] = 38745, + [SMALL_STATE(552)] = 38880, + [SMALL_STATE(553)] = 39015, + [SMALL_STATE(554)] = 39150, + [SMALL_STATE(555)] = 39285, + [SMALL_STATE(556)] = 39420, + [SMALL_STATE(557)] = 39555, + [SMALL_STATE(558)] = 39690, + [SMALL_STATE(559)] = 39825, + [SMALL_STATE(560)] = 39960, + [SMALL_STATE(561)] = 40095, + [SMALL_STATE(562)] = 40230, + [SMALL_STATE(563)] = 40365, + [SMALL_STATE(564)] = 40500, + [SMALL_STATE(565)] = 40635, + [SMALL_STATE(566)] = 40770, + [SMALL_STATE(567)] = 40905, + [SMALL_STATE(568)] = 41040, + [SMALL_STATE(569)] = 41175, + [SMALL_STATE(570)] = 41310, + [SMALL_STATE(571)] = 41445, + [SMALL_STATE(572)] = 41580, + [SMALL_STATE(573)] = 41715, + [SMALL_STATE(574)] = 41850, + [SMALL_STATE(575)] = 41985, + [SMALL_STATE(576)] = 42120, + [SMALL_STATE(577)] = 42255, + [SMALL_STATE(578)] = 42390, + [SMALL_STATE(579)] = 42525, + [SMALL_STATE(580)] = 42660, + [SMALL_STATE(581)] = 42795, + [SMALL_STATE(582)] = 42930, + [SMALL_STATE(583)] = 43065, + [SMALL_STATE(584)] = 43200, + [SMALL_STATE(585)] = 43335, + [SMALL_STATE(586)] = 43470, + [SMALL_STATE(587)] = 43605, + [SMALL_STATE(588)] = 43740, + [SMALL_STATE(589)] = 43875, + [SMALL_STATE(590)] = 44010, + [SMALL_STATE(591)] = 44145, + [SMALL_STATE(592)] = 44280, + [SMALL_STATE(593)] = 44415, + [SMALL_STATE(594)] = 44550, + [SMALL_STATE(595)] = 44685, + [SMALL_STATE(596)] = 44820, + [SMALL_STATE(597)] = 44955, + [SMALL_STATE(598)] = 45090, + [SMALL_STATE(599)] = 45225, + [SMALL_STATE(600)] = 45360, + [SMALL_STATE(601)] = 45495, + [SMALL_STATE(602)] = 45630, + [SMALL_STATE(603)] = 45765, + [SMALL_STATE(604)] = 45900, + [SMALL_STATE(605)] = 46035, + [SMALL_STATE(606)] = 46170, + [SMALL_STATE(607)] = 46305, + [SMALL_STATE(608)] = 46440, + [SMALL_STATE(609)] = 46575, + [SMALL_STATE(610)] = 46710, + [SMALL_STATE(611)] = 46845, + [SMALL_STATE(612)] = 46980, + [SMALL_STATE(613)] = 47115, + [SMALL_STATE(614)] = 47250, + [SMALL_STATE(615)] = 47385, + [SMALL_STATE(616)] = 47520, + [SMALL_STATE(617)] = 47655, + [SMALL_STATE(618)] = 47790, + [SMALL_STATE(619)] = 47925, + [SMALL_STATE(620)] = 48060, + [SMALL_STATE(621)] = 48195, + [SMALL_STATE(622)] = 48330, + [SMALL_STATE(623)] = 48465, + [SMALL_STATE(624)] = 48600, + [SMALL_STATE(625)] = 48735, + [SMALL_STATE(626)] = 48870, + [SMALL_STATE(627)] = 49005, + [SMALL_STATE(628)] = 49140, + [SMALL_STATE(629)] = 49275, + [SMALL_STATE(630)] = 49410, + [SMALL_STATE(631)] = 49545, + [SMALL_STATE(632)] = 49680, + [SMALL_STATE(633)] = 49815, + [SMALL_STATE(634)] = 49950, + [SMALL_STATE(635)] = 50085, + [SMALL_STATE(636)] = 50220, + [SMALL_STATE(637)] = 50355, + [SMALL_STATE(638)] = 50490, + [SMALL_STATE(639)] = 50625, + [SMALL_STATE(640)] = 50760, + [SMALL_STATE(641)] = 50895, + [SMALL_STATE(642)] = 51030, + [SMALL_STATE(643)] = 51165, + [SMALL_STATE(644)] = 51300, + [SMALL_STATE(645)] = 51435, + [SMALL_STATE(646)] = 51570, + [SMALL_STATE(647)] = 51705, + [SMALL_STATE(648)] = 51840, + [SMALL_STATE(649)] = 51975, + [SMALL_STATE(650)] = 52110, + [SMALL_STATE(651)] = 52245, + [SMALL_STATE(652)] = 52380, + [SMALL_STATE(653)] = 52515, + [SMALL_STATE(654)] = 52650, + [SMALL_STATE(655)] = 52785, + [SMALL_STATE(656)] = 52920, + [SMALL_STATE(657)] = 53055, + [SMALL_STATE(658)] = 53190, + [SMALL_STATE(659)] = 53325, + [SMALL_STATE(660)] = 53460, + [SMALL_STATE(661)] = 53595, + [SMALL_STATE(662)] = 53730, + [SMALL_STATE(663)] = 53865, + [SMALL_STATE(664)] = 54000, + [SMALL_STATE(665)] = 54135, + [SMALL_STATE(666)] = 54270, + [SMALL_STATE(667)] = 54405, + [SMALL_STATE(668)] = 54540, + [SMALL_STATE(669)] = 54675, + [SMALL_STATE(670)] = 54810, + [SMALL_STATE(671)] = 54945, + [SMALL_STATE(672)] = 55080, + [SMALL_STATE(673)] = 55215, + [SMALL_STATE(674)] = 55350, + [SMALL_STATE(675)] = 55485, + [SMALL_STATE(676)] = 55620, + [SMALL_STATE(677)] = 55755, + [SMALL_STATE(678)] = 55890, + [SMALL_STATE(679)] = 56025, + [SMALL_STATE(680)] = 56160, + [SMALL_STATE(681)] = 56295, + [SMALL_STATE(682)] = 56430, + [SMALL_STATE(683)] = 56565, + [SMALL_STATE(684)] = 56700, + [SMALL_STATE(685)] = 56835, + [SMALL_STATE(686)] = 56970, + [SMALL_STATE(687)] = 57105, + [SMALL_STATE(688)] = 57240, + [SMALL_STATE(689)] = 57375, + [SMALL_STATE(690)] = 57510, + [SMALL_STATE(691)] = 57645, + [SMALL_STATE(692)] = 57780, + [SMALL_STATE(693)] = 57915, + [SMALL_STATE(694)] = 58050, + [SMALL_STATE(695)] = 58185, + [SMALL_STATE(696)] = 58320, + [SMALL_STATE(697)] = 58455, + [SMALL_STATE(698)] = 58590, + [SMALL_STATE(699)] = 58725, + [SMALL_STATE(700)] = 58860, + [SMALL_STATE(701)] = 58995, + [SMALL_STATE(702)] = 59130, + [SMALL_STATE(703)] = 59265, + [SMALL_STATE(704)] = 59400, + [SMALL_STATE(705)] = 59535, + [SMALL_STATE(706)] = 59670, + [SMALL_STATE(707)] = 59805, + [SMALL_STATE(708)] = 59940, + [SMALL_STATE(709)] = 60075, + [SMALL_STATE(710)] = 60210, + [SMALL_STATE(711)] = 60345, + [SMALL_STATE(712)] = 60480, + [SMALL_STATE(713)] = 60615, + [SMALL_STATE(714)] = 60750, + [SMALL_STATE(715)] = 60885, + [SMALL_STATE(716)] = 61020, + [SMALL_STATE(717)] = 61155, + [SMALL_STATE(718)] = 61290, + [SMALL_STATE(719)] = 61425, + [SMALL_STATE(720)] = 61560, + [SMALL_STATE(721)] = 61695, + [SMALL_STATE(722)] = 61830, + [SMALL_STATE(723)] = 61965, + [SMALL_STATE(724)] = 62100, + [SMALL_STATE(725)] = 62235, + [SMALL_STATE(726)] = 62370, + [SMALL_STATE(727)] = 62505, + [SMALL_STATE(728)] = 62640, + [SMALL_STATE(729)] = 62775, + [SMALL_STATE(730)] = 62910, + [SMALL_STATE(731)] = 63045, + [SMALL_STATE(732)] = 63180, + [SMALL_STATE(733)] = 63315, + [SMALL_STATE(734)] = 63450, + [SMALL_STATE(735)] = 63585, + [SMALL_STATE(736)] = 63720, + [SMALL_STATE(737)] = 63855, + [SMALL_STATE(738)] = 63990, + [SMALL_STATE(739)] = 64125, + [SMALL_STATE(740)] = 64260, + [SMALL_STATE(741)] = 64395, + [SMALL_STATE(742)] = 64530, + [SMALL_STATE(743)] = 64665, + [SMALL_STATE(744)] = 64800, + [SMALL_STATE(745)] = 64935, + [SMALL_STATE(746)] = 65070, + [SMALL_STATE(747)] = 65205, + [SMALL_STATE(748)] = 65340, + [SMALL_STATE(749)] = 65475, + [SMALL_STATE(750)] = 65610, + [SMALL_STATE(751)] = 65745, + [SMALL_STATE(752)] = 65880, + [SMALL_STATE(753)] = 66015, + [SMALL_STATE(754)] = 66150, + [SMALL_STATE(755)] = 66285, + [SMALL_STATE(756)] = 66420, + [SMALL_STATE(757)] = 66555, + [SMALL_STATE(758)] = 66690, + [SMALL_STATE(759)] = 66825, + [SMALL_STATE(760)] = 66960, + [SMALL_STATE(761)] = 67095, + [SMALL_STATE(762)] = 67230, + [SMALL_STATE(763)] = 67365, + [SMALL_STATE(764)] = 67500, + [SMALL_STATE(765)] = 67635, + [SMALL_STATE(766)] = 67770, + [SMALL_STATE(767)] = 67905, + [SMALL_STATE(768)] = 68040, + [SMALL_STATE(769)] = 68175, + [SMALL_STATE(770)] = 68310, + [SMALL_STATE(771)] = 68445, + [SMALL_STATE(772)] = 68580, + [SMALL_STATE(773)] = 68715, + [SMALL_STATE(774)] = 68850, + [SMALL_STATE(775)] = 68985, + [SMALL_STATE(776)] = 69120, + [SMALL_STATE(777)] = 69255, + [SMALL_STATE(778)] = 69390, + [SMALL_STATE(779)] = 69525, + [SMALL_STATE(780)] = 69660, + [SMALL_STATE(781)] = 69795, + [SMALL_STATE(782)] = 69930, + [SMALL_STATE(783)] = 70065, + [SMALL_STATE(784)] = 70200, + [SMALL_STATE(785)] = 70335, + [SMALL_STATE(786)] = 70470, + [SMALL_STATE(787)] = 70605, + [SMALL_STATE(788)] = 70740, + [SMALL_STATE(789)] = 70875, + [SMALL_STATE(790)] = 71010, + [SMALL_STATE(791)] = 71145, + [SMALL_STATE(792)] = 71280, + [SMALL_STATE(793)] = 71415, + [SMALL_STATE(794)] = 71550, + [SMALL_STATE(795)] = 71685, + [SMALL_STATE(796)] = 71820, + [SMALL_STATE(797)] = 71955, + [SMALL_STATE(798)] = 72090, + [SMALL_STATE(799)] = 72225, + [SMALL_STATE(800)] = 72360, + [SMALL_STATE(801)] = 72495, + [SMALL_STATE(802)] = 72630, + [SMALL_STATE(803)] = 72765, + [SMALL_STATE(804)] = 72900, + [SMALL_STATE(805)] = 73035, + [SMALL_STATE(806)] = 73170, + [SMALL_STATE(807)] = 73305, + [SMALL_STATE(808)] = 73440, + [SMALL_STATE(809)] = 73575, + [SMALL_STATE(810)] = 73710, + [SMALL_STATE(811)] = 73845, + [SMALL_STATE(812)] = 73980, + [SMALL_STATE(813)] = 74115, + [SMALL_STATE(814)] = 74250, + [SMALL_STATE(815)] = 74385, + [SMALL_STATE(816)] = 74521, + [SMALL_STATE(817)] = 74657, + [SMALL_STATE(818)] = 74793, + [SMALL_STATE(819)] = 74929, + [SMALL_STATE(820)] = 75065, + [SMALL_STATE(821)] = 75201, + [SMALL_STATE(822)] = 75337, + [SMALL_STATE(823)] = 75473, + [SMALL_STATE(824)] = 75609, + [SMALL_STATE(825)] = 75745, + [SMALL_STATE(826)] = 75881, + [SMALL_STATE(827)] = 76017, + [SMALL_STATE(828)] = 76153, + [SMALL_STATE(829)] = 76289, + [SMALL_STATE(830)] = 76359, + [SMALL_STATE(831)] = 76428, + [SMALL_STATE(832)] = 76497, + [SMALL_STATE(833)] = 76562, + [SMALL_STATE(834)] = 76627, + [SMALL_STATE(835)] = 76696, + [SMALL_STATE(836)] = 76760, + [SMALL_STATE(837)] = 76821, + [SMALL_STATE(838)] = 76882, + [SMALL_STATE(839)] = 76947, + [SMALL_STATE(840)] = 77008, + [SMALL_STATE(841)] = 77073, + [SMALL_STATE(842)] = 77134, + [SMALL_STATE(843)] = 77195, + [SMALL_STATE(844)] = 77256, + [SMALL_STATE(845)] = 77317, + [SMALL_STATE(846)] = 77378, + [SMALL_STATE(847)] = 77443, + [SMALL_STATE(848)] = 77504, + [SMALL_STATE(849)] = 77565, + [SMALL_STATE(850)] = 77626, + [SMALL_STATE(851)] = 77687, + [SMALL_STATE(852)] = 77748, + [SMALL_STATE(853)] = 77809, + [SMALL_STATE(854)] = 77870, + [SMALL_STATE(855)] = 77931, + [SMALL_STATE(856)] = 77992, + [SMALL_STATE(857)] = 78053, + [SMALL_STATE(858)] = 78114, + [SMALL_STATE(859)] = 78175, + [SMALL_STATE(860)] = 78236, + [SMALL_STATE(861)] = 78297, + [SMALL_STATE(862)] = 78358, + [SMALL_STATE(863)] = 78419, + [SMALL_STATE(864)] = 78480, + [SMALL_STATE(865)] = 78541, + [SMALL_STATE(866)] = 78602, + [SMALL_STATE(867)] = 78663, + [SMALL_STATE(868)] = 78724, + [SMALL_STATE(869)] = 78785, + [SMALL_STATE(870)] = 78846, + [SMALL_STATE(871)] = 78907, + [SMALL_STATE(872)] = 78968, + [SMALL_STATE(873)] = 79029, + [SMALL_STATE(874)] = 79090, + [SMALL_STATE(875)] = 79151, + [SMALL_STATE(876)] = 79212, + [SMALL_STATE(877)] = 79273, + [SMALL_STATE(878)] = 79334, + [SMALL_STATE(879)] = 79395, + [SMALL_STATE(880)] = 79456, + [SMALL_STATE(881)] = 79517, + [SMALL_STATE(882)] = 79578, + [SMALL_STATE(883)] = 79639, + [SMALL_STATE(884)] = 79700, + [SMALL_STATE(885)] = 79761, + [SMALL_STATE(886)] = 79822, + [SMALL_STATE(887)] = 79883, + [SMALL_STATE(888)] = 79944, + [SMALL_STATE(889)] = 80005, + [SMALL_STATE(890)] = 80066, + [SMALL_STATE(891)] = 80127, + [SMALL_STATE(892)] = 80188, + [SMALL_STATE(893)] = 80249, + [SMALL_STATE(894)] = 80310, + [SMALL_STATE(895)] = 80371, + [SMALL_STATE(896)] = 80432, + [SMALL_STATE(897)] = 80493, + [SMALL_STATE(898)] = 80554, + [SMALL_STATE(899)] = 80615, + [SMALL_STATE(900)] = 80676, + [SMALL_STATE(901)] = 80737, + [SMALL_STATE(902)] = 80798, + [SMALL_STATE(903)] = 80863, + [SMALL_STATE(904)] = 80924, + [SMALL_STATE(905)] = 80985, + [SMALL_STATE(906)] = 81046, + [SMALL_STATE(907)] = 81111, + [SMALL_STATE(908)] = 81172, + [SMALL_STATE(909)] = 81233, + [SMALL_STATE(910)] = 81294, + [SMALL_STATE(911)] = 81355, + [SMALL_STATE(912)] = 81416, + [SMALL_STATE(913)] = 81477, + [SMALL_STATE(914)] = 81538, + [SMALL_STATE(915)] = 81599, + [SMALL_STATE(916)] = 81660, + [SMALL_STATE(917)] = 81721, + [SMALL_STATE(918)] = 81782, + [SMALL_STATE(919)] = 81843, + [SMALL_STATE(920)] = 81904, + [SMALL_STATE(921)] = 81965, + [SMALL_STATE(922)] = 82026, + [SMALL_STATE(923)] = 82087, + [SMALL_STATE(924)] = 82148, + [SMALL_STATE(925)] = 82209, + [SMALL_STATE(926)] = 82270, + [SMALL_STATE(927)] = 82331, + [SMALL_STATE(928)] = 82392, + [SMALL_STATE(929)] = 82453, + [SMALL_STATE(930)] = 82514, + [SMALL_STATE(931)] = 82575, + [SMALL_STATE(932)] = 82636, + [SMALL_STATE(933)] = 82697, + [SMALL_STATE(934)] = 82758, + [SMALL_STATE(935)] = 82819, + [SMALL_STATE(936)] = 82880, + [SMALL_STATE(937)] = 82941, + [SMALL_STATE(938)] = 83002, + [SMALL_STATE(939)] = 83063, + [SMALL_STATE(940)] = 83124, + [SMALL_STATE(941)] = 83185, + [SMALL_STATE(942)] = 83246, + [SMALL_STATE(943)] = 83307, + [SMALL_STATE(944)] = 83368, + [SMALL_STATE(945)] = 83429, + [SMALL_STATE(946)] = 83490, + [SMALL_STATE(947)] = 83551, + [SMALL_STATE(948)] = 83612, + [SMALL_STATE(949)] = 83673, + [SMALL_STATE(950)] = 83734, + [SMALL_STATE(951)] = 83795, + [SMALL_STATE(952)] = 83856, + [SMALL_STATE(953)] = 83917, + [SMALL_STATE(954)] = 83978, + [SMALL_STATE(955)] = 84039, + [SMALL_STATE(956)] = 84100, + [SMALL_STATE(957)] = 84161, + [SMALL_STATE(958)] = 84222, + [SMALL_STATE(959)] = 84283, + [SMALL_STATE(960)] = 84344, + [SMALL_STATE(961)] = 84409, + [SMALL_STATE(962)] = 84474, + [SMALL_STATE(963)] = 84539, + [SMALL_STATE(964)] = 84602, + [SMALL_STATE(965)] = 84667, + [SMALL_STATE(966)] = 84732, + [SMALL_STATE(967)] = 84797, + [SMALL_STATE(968)] = 84857, + [SMALL_STATE(969)] = 84917, + [SMALL_STATE(970)] = 84977, + [SMALL_STATE(971)] = 85037, + [SMALL_STATE(972)] = 85097, + [SMALL_STATE(973)] = 85157, + [SMALL_STATE(974)] = 85217, + [SMALL_STATE(975)] = 85277, + [SMALL_STATE(976)] = 85341, + [SMALL_STATE(977)] = 85405, + [SMALL_STATE(978)] = 85465, + [SMALL_STATE(979)] = 85525, + [SMALL_STATE(980)] = 85585, + [SMALL_STATE(981)] = 85645, + [SMALL_STATE(982)] = 85705, + [SMALL_STATE(983)] = 85765, + [SMALL_STATE(984)] = 85825, + [SMALL_STATE(985)] = 85885, + [SMALL_STATE(986)] = 85945, + [SMALL_STATE(987)] = 86005, + [SMALL_STATE(988)] = 86065, + [SMALL_STATE(989)] = 86125, + [SMALL_STATE(990)] = 86185, + [SMALL_STATE(991)] = 86245, + [SMALL_STATE(992)] = 86305, + [SMALL_STATE(993)] = 86365, + [SMALL_STATE(994)] = 86425, + [SMALL_STATE(995)] = 86485, + [SMALL_STATE(996)] = 86549, + [SMALL_STATE(997)] = 86609, + [SMALL_STATE(998)] = 86669, + [SMALL_STATE(999)] = 86729, + [SMALL_STATE(1000)] = 86789, + [SMALL_STATE(1001)] = 86849, + [SMALL_STATE(1002)] = 86909, + [SMALL_STATE(1003)] = 86969, + [SMALL_STATE(1004)] = 87029, + [SMALL_STATE(1005)] = 87089, + [SMALL_STATE(1006)] = 87149, + [SMALL_STATE(1007)] = 87209, + [SMALL_STATE(1008)] = 87269, + [SMALL_STATE(1009)] = 87329, + [SMALL_STATE(1010)] = 87389, + [SMALL_STATE(1011)] = 87449, + [SMALL_STATE(1012)] = 87509, + [SMALL_STATE(1013)] = 87569, + [SMALL_STATE(1014)] = 87629, + [SMALL_STATE(1015)] = 87689, + [SMALL_STATE(1016)] = 87749, + [SMALL_STATE(1017)] = 87809, + [SMALL_STATE(1018)] = 87869, + [SMALL_STATE(1019)] = 87929, + [SMALL_STATE(1020)] = 87989, + [SMALL_STATE(1021)] = 88049, + [SMALL_STATE(1022)] = 88109, + [SMALL_STATE(1023)] = 88169, + [SMALL_STATE(1024)] = 88229, + [SMALL_STATE(1025)] = 88289, + [SMALL_STATE(1026)] = 88349, + [SMALL_STATE(1027)] = 88409, + [SMALL_STATE(1028)] = 88469, + [SMALL_STATE(1029)] = 88529, + [SMALL_STATE(1030)] = 88589, + [SMALL_STATE(1031)] = 88649, + [SMALL_STATE(1032)] = 88709, + [SMALL_STATE(1033)] = 88769, + [SMALL_STATE(1034)] = 88829, + [SMALL_STATE(1035)] = 88889, + [SMALL_STATE(1036)] = 88949, + [SMALL_STATE(1037)] = 89009, + [SMALL_STATE(1038)] = 89069, + [SMALL_STATE(1039)] = 89129, + [SMALL_STATE(1040)] = 89189, + [SMALL_STATE(1041)] = 89249, + [SMALL_STATE(1042)] = 89309, + [SMALL_STATE(1043)] = 89369, + [SMALL_STATE(1044)] = 89429, + [SMALL_STATE(1045)] = 89489, + [SMALL_STATE(1046)] = 89549, + [SMALL_STATE(1047)] = 89609, + [SMALL_STATE(1048)] = 89669, + [SMALL_STATE(1049)] = 89729, + [SMALL_STATE(1050)] = 89789, + [SMALL_STATE(1051)] = 89849, + [SMALL_STATE(1052)] = 89909, + [SMALL_STATE(1053)] = 89969, + [SMALL_STATE(1054)] = 90029, + [SMALL_STATE(1055)] = 90089, + [SMALL_STATE(1056)] = 90149, + [SMALL_STATE(1057)] = 90209, + [SMALL_STATE(1058)] = 90269, + [SMALL_STATE(1059)] = 90329, + [SMALL_STATE(1060)] = 90389, + [SMALL_STATE(1061)] = 90449, + [SMALL_STATE(1062)] = 90509, + [SMALL_STATE(1063)] = 90569, + [SMALL_STATE(1064)] = 90629, + [SMALL_STATE(1065)] = 90689, + [SMALL_STATE(1066)] = 90749, + [SMALL_STATE(1067)] = 90809, + [SMALL_STATE(1068)] = 90869, + [SMALL_STATE(1069)] = 90929, + [SMALL_STATE(1070)] = 90989, + [SMALL_STATE(1071)] = 91049, + [SMALL_STATE(1072)] = 91109, + [SMALL_STATE(1073)] = 91169, + [SMALL_STATE(1074)] = 91229, + [SMALL_STATE(1075)] = 91289, + [SMALL_STATE(1076)] = 91349, + [SMALL_STATE(1077)] = 91409, + [SMALL_STATE(1078)] = 91469, + [SMALL_STATE(1079)] = 91529, + [SMALL_STATE(1080)] = 91589, + [SMALL_STATE(1081)] = 91649, + [SMALL_STATE(1082)] = 91709, + [SMALL_STATE(1083)] = 91769, + [SMALL_STATE(1084)] = 91829, + [SMALL_STATE(1085)] = 91889, + [SMALL_STATE(1086)] = 91949, + [SMALL_STATE(1087)] = 92009, + [SMALL_STATE(1088)] = 92069, + [SMALL_STATE(1089)] = 92129, + [SMALL_STATE(1090)] = 92194, + [SMALL_STATE(1091)] = 92269, + [SMALL_STATE(1092)] = 92344, + [SMALL_STATE(1093)] = 92419, + [SMALL_STATE(1094)] = 92494, + [SMALL_STATE(1095)] = 92569, + [SMALL_STATE(1096)] = 92644, + [SMALL_STATE(1097)] = 92719, + [SMALL_STATE(1098)] = 92794, + [SMALL_STATE(1099)] = 92869, + [SMALL_STATE(1100)] = 92944, + [SMALL_STATE(1101)] = 93019, + [SMALL_STATE(1102)] = 93094, + [SMALL_STATE(1103)] = 93169, + [SMALL_STATE(1104)] = 93244, + [SMALL_STATE(1105)] = 93319, + [SMALL_STATE(1106)] = 93394, + [SMALL_STATE(1107)] = 93453, + [SMALL_STATE(1108)] = 93528, + [SMALL_STATE(1109)] = 93603, + [SMALL_STATE(1110)] = 93678, + [SMALL_STATE(1111)] = 93780, + [SMALL_STATE(1112)] = 93836, + [SMALL_STATE(1113)] = 93892, + [SMALL_STATE(1114)] = 93948, + [SMALL_STATE(1115)] = 94050, + [SMALL_STATE(1116)] = 94106, + [SMALL_STATE(1117)] = 94208, + [SMALL_STATE(1118)] = 94310, + [SMALL_STATE(1119)] = 94366, + [SMALL_STATE(1120)] = 94422, + [SMALL_STATE(1121)] = 94524, + [SMALL_STATE(1122)] = 94626, + [SMALL_STATE(1123)] = 94682, + [SMALL_STATE(1124)] = 94738, + [SMALL_STATE(1125)] = 94794, + [SMALL_STATE(1126)] = 94850, + [SMALL_STATE(1127)] = 94906, + [SMALL_STATE(1128)] = 95008, + [SMALL_STATE(1129)] = 95110, + [SMALL_STATE(1130)] = 95166, + [SMALL_STATE(1131)] = 95222, + [SMALL_STATE(1132)] = 95324, + [SMALL_STATE(1133)] = 95380, + [SMALL_STATE(1134)] = 95436, + [SMALL_STATE(1135)] = 95538, + [SMALL_STATE(1136)] = 95594, + [SMALL_STATE(1137)] = 95696, + [SMALL_STATE(1138)] = 95798, + [SMALL_STATE(1139)] = 95854, + [SMALL_STATE(1140)] = 95910, + [SMALL_STATE(1141)] = 96012, + [SMALL_STATE(1142)] = 96114, + [SMALL_STATE(1143)] = 96170, + [SMALL_STATE(1144)] = 96226, + [SMALL_STATE(1145)] = 96328, + [SMALL_STATE(1146)] = 96430, + [SMALL_STATE(1147)] = 96486, + [SMALL_STATE(1148)] = 96542, + [SMALL_STATE(1149)] = 96598, + [SMALL_STATE(1150)] = 96654, + [SMALL_STATE(1151)] = 96710, + [SMALL_STATE(1152)] = 96812, + [SMALL_STATE(1153)] = 96868, + [SMALL_STATE(1154)] = 96924, + [SMALL_STATE(1155)] = 97026, + [SMALL_STATE(1156)] = 97082, + [SMALL_STATE(1157)] = 97138, + [SMALL_STATE(1158)] = 97194, + [SMALL_STATE(1159)] = 97250, + [SMALL_STATE(1160)] = 97306, + [SMALL_STATE(1161)] = 97362, + [SMALL_STATE(1162)] = 97418, + [SMALL_STATE(1163)] = 97474, + [SMALL_STATE(1164)] = 97530, + [SMALL_STATE(1165)] = 97586, + [SMALL_STATE(1166)] = 97642, + [SMALL_STATE(1167)] = 97698, + [SMALL_STATE(1168)] = 97754, + [SMALL_STATE(1169)] = 97810, + [SMALL_STATE(1170)] = 97866, + [SMALL_STATE(1171)] = 97922, + [SMALL_STATE(1172)] = 97978, + [SMALL_STATE(1173)] = 98034, + [SMALL_STATE(1174)] = 98090, + [SMALL_STATE(1175)] = 98146, + [SMALL_STATE(1176)] = 98202, + [SMALL_STATE(1177)] = 98258, + [SMALL_STATE(1178)] = 98314, + [SMALL_STATE(1179)] = 98370, + [SMALL_STATE(1180)] = 98426, + [SMALL_STATE(1181)] = 98482, + [SMALL_STATE(1182)] = 98538, + [SMALL_STATE(1183)] = 98640, + [SMALL_STATE(1184)] = 98696, + [SMALL_STATE(1185)] = 98752, + [SMALL_STATE(1186)] = 98808, + [SMALL_STATE(1187)] = 98864, + [SMALL_STATE(1188)] = 98920, + [SMALL_STATE(1189)] = 98976, + [SMALL_STATE(1190)] = 99032, + [SMALL_STATE(1191)] = 99088, + [SMALL_STATE(1192)] = 99190, + [SMALL_STATE(1193)] = 99246, + [SMALL_STATE(1194)] = 99302, + [SMALL_STATE(1195)] = 99358, + [SMALL_STATE(1196)] = 99414, + [SMALL_STATE(1197)] = 99470, + [SMALL_STATE(1198)] = 99526, + [SMALL_STATE(1199)] = 99582, + [SMALL_STATE(1200)] = 99638, + [SMALL_STATE(1201)] = 99694, + [SMALL_STATE(1202)] = 99796, + [SMALL_STATE(1203)] = 99852, + [SMALL_STATE(1204)] = 99908, + [SMALL_STATE(1205)] = 99964, + [SMALL_STATE(1206)] = 100020, + [SMALL_STATE(1207)] = 100076, + [SMALL_STATE(1208)] = 100132, + [SMALL_STATE(1209)] = 100234, + [SMALL_STATE(1210)] = 100290, + [SMALL_STATE(1211)] = 100392, + [SMALL_STATE(1212)] = 100494, + [SMALL_STATE(1213)] = 100550, + [SMALL_STATE(1214)] = 100606, + [SMALL_STATE(1215)] = 100662, + [SMALL_STATE(1216)] = 100718, + [SMALL_STATE(1217)] = 100774, + [SMALL_STATE(1218)] = 100830, + [SMALL_STATE(1219)] = 100886, + [SMALL_STATE(1220)] = 100942, + [SMALL_STATE(1221)] = 100998, + [SMALL_STATE(1222)] = 101054, + [SMALL_STATE(1223)] = 101110, + [SMALL_STATE(1224)] = 101166, + [SMALL_STATE(1225)] = 101222, + [SMALL_STATE(1226)] = 101278, + [SMALL_STATE(1227)] = 101334, + [SMALL_STATE(1228)] = 101390, + [SMALL_STATE(1229)] = 101446, + [SMALL_STATE(1230)] = 101502, + [SMALL_STATE(1231)] = 101562, + [SMALL_STATE(1232)] = 101618, + [SMALL_STATE(1233)] = 101674, + [SMALL_STATE(1234)] = 101776, + [SMALL_STATE(1235)] = 101832, + [SMALL_STATE(1236)] = 101888, + [SMALL_STATE(1237)] = 101944, + [SMALL_STATE(1238)] = 102004, + [SMALL_STATE(1239)] = 102064, + [SMALL_STATE(1240)] = 102120, + [SMALL_STATE(1241)] = 102222, + [SMALL_STATE(1242)] = 102324, + [SMALL_STATE(1243)] = 102380, + [SMALL_STATE(1244)] = 102436, + [SMALL_STATE(1245)] = 102492, + [SMALL_STATE(1246)] = 102548, + [SMALL_STATE(1247)] = 102604, + [SMALL_STATE(1248)] = 102660, + [SMALL_STATE(1249)] = 102716, + [SMALL_STATE(1250)] = 102818, + [SMALL_STATE(1251)] = 102874, + [SMALL_STATE(1252)] = 102976, + [SMALL_STATE(1253)] = 103032, + [SMALL_STATE(1254)] = 103088, + [SMALL_STATE(1255)] = 103190, + [SMALL_STATE(1256)] = 103292, + [SMALL_STATE(1257)] = 103348, + [SMALL_STATE(1258)] = 103404, + [SMALL_STATE(1259)] = 103460, + [SMALL_STATE(1260)] = 103562, + [SMALL_STATE(1261)] = 103664, + [SMALL_STATE(1262)] = 103720, + [SMALL_STATE(1263)] = 103822, + [SMALL_STATE(1264)] = 103878, + [SMALL_STATE(1265)] = 103934, + [SMALL_STATE(1266)] = 103990, + [SMALL_STATE(1267)] = 104092, + [SMALL_STATE(1268)] = 104194, + [SMALL_STATE(1269)] = 104296, + [SMALL_STATE(1270)] = 104398, + [SMALL_STATE(1271)] = 104500, + [SMALL_STATE(1272)] = 104602, + [SMALL_STATE(1273)] = 104704, + [SMALL_STATE(1274)] = 104806, + [SMALL_STATE(1275)] = 104908, + [SMALL_STATE(1276)] = 105010, + [SMALL_STATE(1277)] = 105112, + [SMALL_STATE(1278)] = 105214, + [SMALL_STATE(1279)] = 105316, + [SMALL_STATE(1280)] = 105418, + [SMALL_STATE(1281)] = 105520, + [SMALL_STATE(1282)] = 105622, + [SMALL_STATE(1283)] = 105724, + [SMALL_STATE(1284)] = 105826, + [SMALL_STATE(1285)] = 105928, + [SMALL_STATE(1286)] = 106030, + [SMALL_STATE(1287)] = 106132, + [SMALL_STATE(1288)] = 106234, + [SMALL_STATE(1289)] = 106336, + [SMALL_STATE(1290)] = 106438, + [SMALL_STATE(1291)] = 106540, + [SMALL_STATE(1292)] = 106642, + [SMALL_STATE(1293)] = 106744, + [SMALL_STATE(1294)] = 106846, + [SMALL_STATE(1295)] = 106948, + [SMALL_STATE(1296)] = 107050, + [SMALL_STATE(1297)] = 107152, + [SMALL_STATE(1298)] = 107254, + [SMALL_STATE(1299)] = 107356, + [SMALL_STATE(1300)] = 107458, + [SMALL_STATE(1301)] = 107560, + [SMALL_STATE(1302)] = 107662, + [SMALL_STATE(1303)] = 107764, + [SMALL_STATE(1304)] = 107866, + [SMALL_STATE(1305)] = 107968, + [SMALL_STATE(1306)] = 108070, + [SMALL_STATE(1307)] = 108172, + [SMALL_STATE(1308)] = 108274, + [SMALL_STATE(1309)] = 108376, + [SMALL_STATE(1310)] = 108478, + [SMALL_STATE(1311)] = 108580, + [SMALL_STATE(1312)] = 108682, + [SMALL_STATE(1313)] = 108784, + [SMALL_STATE(1314)] = 108841, + [SMALL_STATE(1315)] = 108898, + [SMALL_STATE(1316)] = 108955, + [SMALL_STATE(1317)] = 109008, + [SMALL_STATE(1318)] = 109062, + [SMALL_STATE(1319)] = 109113, + [SMALL_STATE(1320)] = 109164, + [SMALL_STATE(1321)] = 109215, + [SMALL_STATE(1322)] = 109266, + [SMALL_STATE(1323)] = 109317, + [SMALL_STATE(1324)] = 109368, + [SMALL_STATE(1325)] = 109419, + [SMALL_STATE(1326)] = 109470, + [SMALL_STATE(1327)] = 109521, + [SMALL_STATE(1328)] = 109572, + [SMALL_STATE(1329)] = 109623, + [SMALL_STATE(1330)] = 109674, + [SMALL_STATE(1331)] = 109725, + [SMALL_STATE(1332)] = 109776, + [SMALL_STATE(1333)] = 109827, + [SMALL_STATE(1334)] = 109878, + [SMALL_STATE(1335)] = 109929, + [SMALL_STATE(1336)] = 109980, + [SMALL_STATE(1337)] = 110031, + [SMALL_STATE(1338)] = 110082, + [SMALL_STATE(1339)] = 110133, + [SMALL_STATE(1340)] = 110184, + [SMALL_STATE(1341)] = 110235, + [SMALL_STATE(1342)] = 110286, + [SMALL_STATE(1343)] = 110337, + [SMALL_STATE(1344)] = 110388, + [SMALL_STATE(1345)] = 110439, + [SMALL_STATE(1346)] = 110490, + [SMALL_STATE(1347)] = 110541, + [SMALL_STATE(1348)] = 110592, + [SMALL_STATE(1349)] = 110643, + [SMALL_STATE(1350)] = 110694, + [SMALL_STATE(1351)] = 110745, + [SMALL_STATE(1352)] = 110796, + [SMALL_STATE(1353)] = 110847, + [SMALL_STATE(1354)] = 110898, + [SMALL_STATE(1355)] = 110949, + [SMALL_STATE(1356)] = 111000, + [SMALL_STATE(1357)] = 111051, + [SMALL_STATE(1358)] = 111102, + [SMALL_STATE(1359)] = 111153, + [SMALL_STATE(1360)] = 111204, + [SMALL_STATE(1361)] = 111255, + [SMALL_STATE(1362)] = 111306, + [SMALL_STATE(1363)] = 111357, + [SMALL_STATE(1364)] = 111408, + [SMALL_STATE(1365)] = 111459, + [SMALL_STATE(1366)] = 111510, + [SMALL_STATE(1367)] = 111561, + [SMALL_STATE(1368)] = 111612, + [SMALL_STATE(1369)] = 111663, + [SMALL_STATE(1370)] = 111714, + [SMALL_STATE(1371)] = 111765, + [SMALL_STATE(1372)] = 111816, + [SMALL_STATE(1373)] = 111867, + [SMALL_STATE(1374)] = 111918, + [SMALL_STATE(1375)] = 111969, + [SMALL_STATE(1376)] = 112020, + [SMALL_STATE(1377)] = 112071, + [SMALL_STATE(1378)] = 112122, + [SMALL_STATE(1379)] = 112173, + [SMALL_STATE(1380)] = 112224, + [SMALL_STATE(1381)] = 112275, + [SMALL_STATE(1382)] = 112326, + [SMALL_STATE(1383)] = 112377, + [SMALL_STATE(1384)] = 112428, + [SMALL_STATE(1385)] = 112479, + [SMALL_STATE(1386)] = 112530, + [SMALL_STATE(1387)] = 112581, + [SMALL_STATE(1388)] = 112632, + [SMALL_STATE(1389)] = 112683, + [SMALL_STATE(1390)] = 112734, + [SMALL_STATE(1391)] = 112785, + [SMALL_STATE(1392)] = 112836, + [SMALL_STATE(1393)] = 112887, + [SMALL_STATE(1394)] = 112938, + [SMALL_STATE(1395)] = 112989, + [SMALL_STATE(1396)] = 113040, + [SMALL_STATE(1397)] = 113091, + [SMALL_STATE(1398)] = 113142, + [SMALL_STATE(1399)] = 113193, + [SMALL_STATE(1400)] = 113244, + [SMALL_STATE(1401)] = 113295, + [SMALL_STATE(1402)] = 113346, + [SMALL_STATE(1403)] = 113397, + [SMALL_STATE(1404)] = 113448, + [SMALL_STATE(1405)] = 113499, + [SMALL_STATE(1406)] = 113550, + [SMALL_STATE(1407)] = 113601, + [SMALL_STATE(1408)] = 113652, + [SMALL_STATE(1409)] = 113703, + [SMALL_STATE(1410)] = 113754, + [SMALL_STATE(1411)] = 113805, + [SMALL_STATE(1412)] = 113856, + [SMALL_STATE(1413)] = 113907, + [SMALL_STATE(1414)] = 113958, + [SMALL_STATE(1415)] = 114009, + [SMALL_STATE(1416)] = 114060, + [SMALL_STATE(1417)] = 114111, + [SMALL_STATE(1418)] = 114162, + [SMALL_STATE(1419)] = 114213, + [SMALL_STATE(1420)] = 114264, + [SMALL_STATE(1421)] = 114315, + [SMALL_STATE(1422)] = 114366, + [SMALL_STATE(1423)] = 114417, + [SMALL_STATE(1424)] = 114468, + [SMALL_STATE(1425)] = 114519, + [SMALL_STATE(1426)] = 114570, + [SMALL_STATE(1427)] = 114621, + [SMALL_STATE(1428)] = 114672, + [SMALL_STATE(1429)] = 114723, + [SMALL_STATE(1430)] = 114774, + [SMALL_STATE(1431)] = 114825, + [SMALL_STATE(1432)] = 114876, + [SMALL_STATE(1433)] = 114927, + [SMALL_STATE(1434)] = 114978, + [SMALL_STATE(1435)] = 115029, + [SMALL_STATE(1436)] = 115080, + [SMALL_STATE(1437)] = 115131, + [SMALL_STATE(1438)] = 115182, + [SMALL_STATE(1439)] = 115233, + [SMALL_STATE(1440)] = 115294, + [SMALL_STATE(1441)] = 115355, + [SMALL_STATE(1442)] = 115416, + [SMALL_STATE(1443)] = 115477, + [SMALL_STATE(1444)] = 115538, + [SMALL_STATE(1445)] = 115599, + [SMALL_STATE(1446)] = 115660, + [SMALL_STATE(1447)] = 115721, + [SMALL_STATE(1448)] = 115782, + [SMALL_STATE(1449)] = 115843, + [SMALL_STATE(1450)] = 115893, + [SMALL_STATE(1451)] = 115940, + [SMALL_STATE(1452)] = 115987, + [SMALL_STATE(1453)] = 116034, + [SMALL_STATE(1454)] = 116081, + [SMALL_STATE(1455)] = 116128, + [SMALL_STATE(1456)] = 116175, + [SMALL_STATE(1457)] = 116222, + [SMALL_STATE(1458)] = 116269, + [SMALL_STATE(1459)] = 116316, + [SMALL_STATE(1460)] = 116363, + [SMALL_STATE(1461)] = 116410, + [SMALL_STATE(1462)] = 116457, + [SMALL_STATE(1463)] = 116504, + [SMALL_STATE(1464)] = 116551, + [SMALL_STATE(1465)] = 116598, + [SMALL_STATE(1466)] = 116645, + [SMALL_STATE(1467)] = 116692, + [SMALL_STATE(1468)] = 116739, + [SMALL_STATE(1469)] = 116786, + [SMALL_STATE(1470)] = 116833, + [SMALL_STATE(1471)] = 116880, + [SMALL_STATE(1472)] = 116927, + [SMALL_STATE(1473)] = 116974, + [SMALL_STATE(1474)] = 117021, + [SMALL_STATE(1475)] = 117068, + [SMALL_STATE(1476)] = 117115, + [SMALL_STATE(1477)] = 117162, + [SMALL_STATE(1478)] = 117209, + [SMALL_STATE(1479)] = 117256, + [SMALL_STATE(1480)] = 117303, + [SMALL_STATE(1481)] = 117350, + [SMALL_STATE(1482)] = 117397, + [SMALL_STATE(1483)] = 117444, + [SMALL_STATE(1484)] = 117491, + [SMALL_STATE(1485)] = 117538, + [SMALL_STATE(1486)] = 117585, + [SMALL_STATE(1487)] = 117632, + [SMALL_STATE(1488)] = 117679, + [SMALL_STATE(1489)] = 117726, + [SMALL_STATE(1490)] = 117773, + [SMALL_STATE(1491)] = 117820, + [SMALL_STATE(1492)] = 117867, + [SMALL_STATE(1493)] = 117914, + [SMALL_STATE(1494)] = 117961, + [SMALL_STATE(1495)] = 118008, + [SMALL_STATE(1496)] = 118055, + [SMALL_STATE(1497)] = 118102, + [SMALL_STATE(1498)] = 118149, + [SMALL_STATE(1499)] = 118196, + [SMALL_STATE(1500)] = 118243, + [SMALL_STATE(1501)] = 118290, + [SMALL_STATE(1502)] = 118337, + [SMALL_STATE(1503)] = 118384, + [SMALL_STATE(1504)] = 118431, + [SMALL_STATE(1505)] = 118478, + [SMALL_STATE(1506)] = 118525, + [SMALL_STATE(1507)] = 118572, + [SMALL_STATE(1508)] = 118619, + [SMALL_STATE(1509)] = 118666, + [SMALL_STATE(1510)] = 118713, + [SMALL_STATE(1511)] = 118760, + [SMALL_STATE(1512)] = 118807, + [SMALL_STATE(1513)] = 118854, + [SMALL_STATE(1514)] = 118901, + [SMALL_STATE(1515)] = 118948, + [SMALL_STATE(1516)] = 118995, + [SMALL_STATE(1517)] = 119042, + [SMALL_STATE(1518)] = 119089, + [SMALL_STATE(1519)] = 119136, + [SMALL_STATE(1520)] = 119183, + [SMALL_STATE(1521)] = 119230, + [SMALL_STATE(1522)] = 119277, + [SMALL_STATE(1523)] = 119324, + [SMALL_STATE(1524)] = 119371, + [SMALL_STATE(1525)] = 119418, + [SMALL_STATE(1526)] = 119465, + [SMALL_STATE(1527)] = 119512, + [SMALL_STATE(1528)] = 119559, + [SMALL_STATE(1529)] = 119606, + [SMALL_STATE(1530)] = 119653, + [SMALL_STATE(1531)] = 119700, + [SMALL_STATE(1532)] = 119747, + [SMALL_STATE(1533)] = 119794, + [SMALL_STATE(1534)] = 119841, + [SMALL_STATE(1535)] = 119888, + [SMALL_STATE(1536)] = 119935, + [SMALL_STATE(1537)] = 119982, + [SMALL_STATE(1538)] = 120029, + [SMALL_STATE(1539)] = 120076, + [SMALL_STATE(1540)] = 120123, + [SMALL_STATE(1541)] = 120174, + [SMALL_STATE(1542)] = 120221, + [SMALL_STATE(1543)] = 120268, + [SMALL_STATE(1544)] = 120315, + [SMALL_STATE(1545)] = 120362, + [SMALL_STATE(1546)] = 120409, + [SMALL_STATE(1547)] = 120456, + [SMALL_STATE(1548)] = 120507, + [SMALL_STATE(1549)] = 120558, + [SMALL_STATE(1550)] = 120605, + [SMALL_STATE(1551)] = 120652, + [SMALL_STATE(1552)] = 120699, + [SMALL_STATE(1553)] = 120746, + [SMALL_STATE(1554)] = 120793, + [SMALL_STATE(1555)] = 120840, + [SMALL_STATE(1556)] = 120887, + [SMALL_STATE(1557)] = 120934, + [SMALL_STATE(1558)] = 120981, + [SMALL_STATE(1559)] = 121028, + [SMALL_STATE(1560)] = 121075, + [SMALL_STATE(1561)] = 121122, + [SMALL_STATE(1562)] = 121169, + [SMALL_STATE(1563)] = 121216, + [SMALL_STATE(1564)] = 121263, + [SMALL_STATE(1565)] = 121310, + [SMALL_STATE(1566)] = 121357, + [SMALL_STATE(1567)] = 121404, + [SMALL_STATE(1568)] = 121451, + [SMALL_STATE(1569)] = 121498, + [SMALL_STATE(1570)] = 121545, + [SMALL_STATE(1571)] = 121592, + [SMALL_STATE(1572)] = 121639, + [SMALL_STATE(1573)] = 121711, + [SMALL_STATE(1574)] = 121783, + [SMALL_STATE(1575)] = 121855, + [SMALL_STATE(1576)] = 121927, + [SMALL_STATE(1577)] = 121999, + [SMALL_STATE(1578)] = 122071, + [SMALL_STATE(1579)] = 122143, + [SMALL_STATE(1580)] = 122215, + [SMALL_STATE(1581)] = 122287, + [SMALL_STATE(1582)] = 122359, + [SMALL_STATE(1583)] = 122431, + [SMALL_STATE(1584)] = 122503, + [SMALL_STATE(1585)] = 122575, + [SMALL_STATE(1586)] = 122647, + [SMALL_STATE(1587)] = 122719, + [SMALL_STATE(1588)] = 122791, + [SMALL_STATE(1589)] = 122863, + [SMALL_STATE(1590)] = 122935, + [SMALL_STATE(1591)] = 123007, + [SMALL_STATE(1592)] = 123079, + [SMALL_STATE(1593)] = 123148, + [SMALL_STATE(1594)] = 123192, + [SMALL_STATE(1595)] = 123236, + [SMALL_STATE(1596)] = 123282, + [SMALL_STATE(1597)] = 123326, + [SMALL_STATE(1598)] = 123370, + [SMALL_STATE(1599)] = 123414, + [SMALL_STATE(1600)] = 123458, + [SMALL_STATE(1601)] = 123502, + [SMALL_STATE(1602)] = 123546, + [SMALL_STATE(1603)] = 123590, + [SMALL_STATE(1604)] = 123634, + [SMALL_STATE(1605)] = 123678, + [SMALL_STATE(1606)] = 123722, + [SMALL_STATE(1607)] = 123766, + [SMALL_STATE(1608)] = 123810, + [SMALL_STATE(1609)] = 123854, + [SMALL_STATE(1610)] = 123898, + [SMALL_STATE(1611)] = 123942, + [SMALL_STATE(1612)] = 123986, + [SMALL_STATE(1613)] = 124030, + [SMALL_STATE(1614)] = 124074, + [SMALL_STATE(1615)] = 124118, + [SMALL_STATE(1616)] = 124162, + [SMALL_STATE(1617)] = 124206, + [SMALL_STATE(1618)] = 124250, + [SMALL_STATE(1619)] = 124294, + [SMALL_STATE(1620)] = 124338, + [SMALL_STATE(1621)] = 124382, + [SMALL_STATE(1622)] = 124426, + [SMALL_STATE(1623)] = 124470, + [SMALL_STATE(1624)] = 124514, + [SMALL_STATE(1625)] = 124558, + [SMALL_STATE(1626)] = 124606, + [SMALL_STATE(1627)] = 124650, + [SMALL_STATE(1628)] = 124694, + [SMALL_STATE(1629)] = 124738, + [SMALL_STATE(1630)] = 124782, + [SMALL_STATE(1631)] = 124826, + [SMALL_STATE(1632)] = 124870, + [SMALL_STATE(1633)] = 124914, + [SMALL_STATE(1634)] = 124958, + [SMALL_STATE(1635)] = 125006, + [SMALL_STATE(1636)] = 125050, + [SMALL_STATE(1637)] = 125094, + [SMALL_STATE(1638)] = 125138, + [SMALL_STATE(1639)] = 125182, + [SMALL_STATE(1640)] = 125230, + [SMALL_STATE(1641)] = 125274, + [SMALL_STATE(1642)] = 125318, + [SMALL_STATE(1643)] = 125362, + [SMALL_STATE(1644)] = 125406, + [SMALL_STATE(1645)] = 125450, + [SMALL_STATE(1646)] = 125494, + [SMALL_STATE(1647)] = 125538, + [SMALL_STATE(1648)] = 125582, + [SMALL_STATE(1649)] = 125626, + [SMALL_STATE(1650)] = 125670, + [SMALL_STATE(1651)] = 125714, + [SMALL_STATE(1652)] = 125758, + [SMALL_STATE(1653)] = 125802, + [SMALL_STATE(1654)] = 125846, + [SMALL_STATE(1655)] = 125890, + [SMALL_STATE(1656)] = 125934, + [SMALL_STATE(1657)] = 125978, + [SMALL_STATE(1658)] = 126022, + [SMALL_STATE(1659)] = 126066, + [SMALL_STATE(1660)] = 126110, + [SMALL_STATE(1661)] = 126154, + [SMALL_STATE(1662)] = 126198, + [SMALL_STATE(1663)] = 126242, + [SMALL_STATE(1664)] = 126286, + [SMALL_STATE(1665)] = 126330, + [SMALL_STATE(1666)] = 126374, + [SMALL_STATE(1667)] = 126418, + [SMALL_STATE(1668)] = 126462, + [SMALL_STATE(1669)] = 126506, + [SMALL_STATE(1670)] = 126550, + [SMALL_STATE(1671)] = 126594, + [SMALL_STATE(1672)] = 126638, + [SMALL_STATE(1673)] = 126682, + [SMALL_STATE(1674)] = 126726, + [SMALL_STATE(1675)] = 126770, + [SMALL_STATE(1676)] = 126814, + [SMALL_STATE(1677)] = 126858, + [SMALL_STATE(1678)] = 126902, + [SMALL_STATE(1679)] = 126946, + [SMALL_STATE(1680)] = 126990, + [SMALL_STATE(1681)] = 127034, + [SMALL_STATE(1682)] = 127078, + [SMALL_STATE(1683)] = 127122, + [SMALL_STATE(1684)] = 127166, + [SMALL_STATE(1685)] = 127210, + [SMALL_STATE(1686)] = 127254, + [SMALL_STATE(1687)] = 127298, + [SMALL_STATE(1688)] = 127342, + [SMALL_STATE(1689)] = 127386, + [SMALL_STATE(1690)] = 127430, + [SMALL_STATE(1691)] = 127474, + [SMALL_STATE(1692)] = 127518, + [SMALL_STATE(1693)] = 127562, + [SMALL_STATE(1694)] = 127606, + [SMALL_STATE(1695)] = 127650, + [SMALL_STATE(1696)] = 127694, + [SMALL_STATE(1697)] = 127738, + [SMALL_STATE(1698)] = 127782, + [SMALL_STATE(1699)] = 127826, + [SMALL_STATE(1700)] = 127870, + [SMALL_STATE(1701)] = 127914, + [SMALL_STATE(1702)] = 127958, + [SMALL_STATE(1703)] = 128002, + [SMALL_STATE(1704)] = 128046, + [SMALL_STATE(1705)] = 128090, + [SMALL_STATE(1706)] = 128134, + [SMALL_STATE(1707)] = 128178, + [SMALL_STATE(1708)] = 128222, + [SMALL_STATE(1709)] = 128266, + [SMALL_STATE(1710)] = 128310, + [SMALL_STATE(1711)] = 128354, + [SMALL_STATE(1712)] = 128398, + [SMALL_STATE(1713)] = 128442, + [SMALL_STATE(1714)] = 128486, + [SMALL_STATE(1715)] = 128530, + [SMALL_STATE(1716)] = 128574, + [SMALL_STATE(1717)] = 128623, + [SMALL_STATE(1718)] = 128665, + [SMALL_STATE(1719)] = 128706, + [SMALL_STATE(1720)] = 128747, + [SMALL_STATE(1721)] = 128792, + [SMALL_STATE(1722)] = 128833, + [SMALL_STATE(1723)] = 128874, + [SMALL_STATE(1724)] = 128919, + [SMALL_STATE(1725)] = 128960, + [SMALL_STATE(1726)] = 129001, + [SMALL_STATE(1727)] = 129042, + [SMALL_STATE(1728)] = 129083, + [SMALL_STATE(1729)] = 129124, + [SMALL_STATE(1730)] = 129169, + [SMALL_STATE(1731)] = 129214, + [SMALL_STATE(1732)] = 129255, + [SMALL_STATE(1733)] = 129296, + [SMALL_STATE(1734)] = 129337, + [SMALL_STATE(1735)] = 129378, + [SMALL_STATE(1736)] = 129419, + [SMALL_STATE(1737)] = 129460, + [SMALL_STATE(1738)] = 129501, + [SMALL_STATE(1739)] = 129542, + [SMALL_STATE(1740)] = 129583, + [SMALL_STATE(1741)] = 129624, + [SMALL_STATE(1742)] = 129665, + [SMALL_STATE(1743)] = 129706, + [SMALL_STATE(1744)] = 129747, + [SMALL_STATE(1745)] = 129788, + [SMALL_STATE(1746)] = 129829, + [SMALL_STATE(1747)] = 129870, + [SMALL_STATE(1748)] = 129911, + [SMALL_STATE(1749)] = 129952, + [SMALL_STATE(1750)] = 129993, + [SMALL_STATE(1751)] = 130034, + [SMALL_STATE(1752)] = 130075, + [SMALL_STATE(1753)] = 130116, + [SMALL_STATE(1754)] = 130157, + [SMALL_STATE(1755)] = 130198, + [SMALL_STATE(1756)] = 130239, + [SMALL_STATE(1757)] = 130280, + [SMALL_STATE(1758)] = 130321, + [SMALL_STATE(1759)] = 130362, + [SMALL_STATE(1760)] = 130403, + [SMALL_STATE(1761)] = 130444, + [SMALL_STATE(1762)] = 130485, + [SMALL_STATE(1763)] = 130526, + [SMALL_STATE(1764)] = 130567, + [SMALL_STATE(1765)] = 130608, + [SMALL_STATE(1766)] = 130649, + [SMALL_STATE(1767)] = 130690, + [SMALL_STATE(1768)] = 130731, + [SMALL_STATE(1769)] = 130772, + [SMALL_STATE(1770)] = 130813, + [SMALL_STATE(1771)] = 130854, + [SMALL_STATE(1772)] = 130895, + [SMALL_STATE(1773)] = 130936, + [SMALL_STATE(1774)] = 130977, + [SMALL_STATE(1775)] = 131018, + [SMALL_STATE(1776)] = 131059, + [SMALL_STATE(1777)] = 131100, + [SMALL_STATE(1778)] = 131141, + [SMALL_STATE(1779)] = 131182, + [SMALL_STATE(1780)] = 131223, + [SMALL_STATE(1781)] = 131264, + [SMALL_STATE(1782)] = 131305, + [SMALL_STATE(1783)] = 131346, + [SMALL_STATE(1784)] = 131387, + [SMALL_STATE(1785)] = 131428, + [SMALL_STATE(1786)] = 131469, + [SMALL_STATE(1787)] = 131510, + [SMALL_STATE(1788)] = 131551, + [SMALL_STATE(1789)] = 131592, + [SMALL_STATE(1790)] = 131633, + [SMALL_STATE(1791)] = 131674, + [SMALL_STATE(1792)] = 131715, + [SMALL_STATE(1793)] = 131756, + [SMALL_STATE(1794)] = 131797, + [SMALL_STATE(1795)] = 131838, + [SMALL_STATE(1796)] = 131879, + [SMALL_STATE(1797)] = 131920, + [SMALL_STATE(1798)] = 131965, + [SMALL_STATE(1799)] = 132010, + [SMALL_STATE(1800)] = 132051, + [SMALL_STATE(1801)] = 132092, + [SMALL_STATE(1802)] = 132133, + [SMALL_STATE(1803)] = 132174, + [SMALL_STATE(1804)] = 132215, + [SMALL_STATE(1805)] = 132256, + [SMALL_STATE(1806)] = 132297, + [SMALL_STATE(1807)] = 132338, + [SMALL_STATE(1808)] = 132379, + [SMALL_STATE(1809)] = 132420, + [SMALL_STATE(1810)] = 132461, + [SMALL_STATE(1811)] = 132502, + [SMALL_STATE(1812)] = 132543, + [SMALL_STATE(1813)] = 132584, + [SMALL_STATE(1814)] = 132625, + [SMALL_STATE(1815)] = 132666, + [SMALL_STATE(1816)] = 132707, + [SMALL_STATE(1817)] = 132748, + [SMALL_STATE(1818)] = 132789, + [SMALL_STATE(1819)] = 132830, + [SMALL_STATE(1820)] = 132871, + [SMALL_STATE(1821)] = 132912, + [SMALL_STATE(1822)] = 132953, + [SMALL_STATE(1823)] = 132994, + [SMALL_STATE(1824)] = 133035, + [SMALL_STATE(1825)] = 133076, + [SMALL_STATE(1826)] = 133117, + [SMALL_STATE(1827)] = 133158, + [SMALL_STATE(1828)] = 133199, + [SMALL_STATE(1829)] = 133240, + [SMALL_STATE(1830)] = 133281, + [SMALL_STATE(1831)] = 133322, + [SMALL_STATE(1832)] = 133363, + [SMALL_STATE(1833)] = 133404, + [SMALL_STATE(1834)] = 133445, + [SMALL_STATE(1835)] = 133486, + [SMALL_STATE(1836)] = 133527, + [SMALL_STATE(1837)] = 133586, + [SMALL_STATE(1838)] = 133627, + [SMALL_STATE(1839)] = 133668, + [SMALL_STATE(1840)] = 133709, + [SMALL_STATE(1841)] = 133750, + [SMALL_STATE(1842)] = 133791, + [SMALL_STATE(1843)] = 133832, + [SMALL_STATE(1844)] = 133873, + [SMALL_STATE(1845)] = 133914, + [SMALL_STATE(1846)] = 133959, + [SMALL_STATE(1847)] = 134000, + [SMALL_STATE(1848)] = 134041, + [SMALL_STATE(1849)] = 134082, + [SMALL_STATE(1850)] = 134123, + [SMALL_STATE(1851)] = 134164, + [SMALL_STATE(1852)] = 134205, + [SMALL_STATE(1853)] = 134250, + [SMALL_STATE(1854)] = 134295, + [SMALL_STATE(1855)] = 134340, + [SMALL_STATE(1856)] = 134381, + [SMALL_STATE(1857)] = 134422, + [SMALL_STATE(1858)] = 134463, + [SMALL_STATE(1859)] = 134504, + [SMALL_STATE(1860)] = 134545, + [SMALL_STATE(1861)] = 134586, + [SMALL_STATE(1862)] = 134627, + [SMALL_STATE(1863)] = 134668, + [SMALL_STATE(1864)] = 134709, + [SMALL_STATE(1865)] = 134750, + [SMALL_STATE(1866)] = 134790, + [SMALL_STATE(1867)] = 134830, + [SMALL_STATE(1868)] = 134870, + [SMALL_STATE(1869)] = 134910, + [SMALL_STATE(1870)] = 134950, + [SMALL_STATE(1871)] = 134990, + [SMALL_STATE(1872)] = 135029, + [SMALL_STATE(1873)] = 135076, + [SMALL_STATE(1874)] = 135117, + [SMALL_STATE(1875)] = 135158, + [SMALL_STATE(1876)] = 135199, + [SMALL_STATE(1877)] = 135246, + [SMALL_STATE(1878)] = 135288, + [SMALL_STATE(1879)] = 135330, + [SMALL_STATE(1880)] = 135372, + [SMALL_STATE(1881)] = 135414, + [SMALL_STATE(1882)] = 135456, + [SMALL_STATE(1883)] = 135498, + [SMALL_STATE(1884)] = 135540, + [SMALL_STATE(1885)] = 135582, + [SMALL_STATE(1886)] = 135624, + [SMALL_STATE(1887)] = 135666, + [SMALL_STATE(1888)] = 135708, + [SMALL_STATE(1889)] = 135750, + [SMALL_STATE(1890)] = 135792, + [SMALL_STATE(1891)] = 135834, + [SMALL_STATE(1892)] = 135876, + [SMALL_STATE(1893)] = 135918, + [SMALL_STATE(1894)] = 135960, + [SMALL_STATE(1895)] = 136002, + [SMALL_STATE(1896)] = 136044, + [SMALL_STATE(1897)] = 136086, + [SMALL_STATE(1898)] = 136128, + [SMALL_STATE(1899)] = 136170, + [SMALL_STATE(1900)] = 136212, + [SMALL_STATE(1901)] = 136254, + [SMALL_STATE(1902)] = 136296, + [SMALL_STATE(1903)] = 136338, + [SMALL_STATE(1904)] = 136380, + [SMALL_STATE(1905)] = 136422, + [SMALL_STATE(1906)] = 136464, + [SMALL_STATE(1907)] = 136506, + [SMALL_STATE(1908)] = 136548, + [SMALL_STATE(1909)] = 136584, + [SMALL_STATE(1910)] = 136626, + [SMALL_STATE(1911)] = 136668, + [SMALL_STATE(1912)] = 136710, + [SMALL_STATE(1913)] = 136752, + [SMALL_STATE(1914)] = 136794, + [SMALL_STATE(1915)] = 136836, + [SMALL_STATE(1916)] = 136878, + [SMALL_STATE(1917)] = 136914, + [SMALL_STATE(1918)] = 136950, + [SMALL_STATE(1919)] = 136992, + [SMALL_STATE(1920)] = 137034, + [SMALL_STATE(1921)] = 137076, + [SMALL_STATE(1922)] = 137118, + [SMALL_STATE(1923)] = 137160, + [SMALL_STATE(1924)] = 137202, + [SMALL_STATE(1925)] = 137244, + [SMALL_STATE(1926)] = 137286, + [SMALL_STATE(1927)] = 137328, + [SMALL_STATE(1928)] = 137370, + [SMALL_STATE(1929)] = 137412, + [SMALL_STATE(1930)] = 137454, + [SMALL_STATE(1931)] = 137496, + [SMALL_STATE(1932)] = 137538, + [SMALL_STATE(1933)] = 137580, + [SMALL_STATE(1934)] = 137622, + [SMALL_STATE(1935)] = 137664, + [SMALL_STATE(1936)] = 137706, + [SMALL_STATE(1937)] = 137748, + [SMALL_STATE(1938)] = 137790, + [SMALL_STATE(1939)] = 137832, + [SMALL_STATE(1940)] = 137874, + [SMALL_STATE(1941)] = 137916, + [SMALL_STATE(1942)] = 137958, + [SMALL_STATE(1943)] = 138000, + [SMALL_STATE(1944)] = 138042, + [SMALL_STATE(1945)] = 138084, + [SMALL_STATE(1946)] = 138126, + [SMALL_STATE(1947)] = 138168, + [SMALL_STATE(1948)] = 138210, + [SMALL_STATE(1949)] = 138252, + [SMALL_STATE(1950)] = 138288, + [SMALL_STATE(1951)] = 138330, + [SMALL_STATE(1952)] = 138366, + [SMALL_STATE(1953)] = 138408, + [SMALL_STATE(1954)] = 138444, + [SMALL_STATE(1955)] = 138486, + [SMALL_STATE(1956)] = 138528, + [SMALL_STATE(1957)] = 138564, + [SMALL_STATE(1958)] = 138606, + [SMALL_STATE(1959)] = 138648, + [SMALL_STATE(1960)] = 138690, + [SMALL_STATE(1961)] = 138732, + [SMALL_STATE(1962)] = 138774, + [SMALL_STATE(1963)] = 138816, + [SMALL_STATE(1964)] = 138858, + [SMALL_STATE(1965)] = 138900, + [SMALL_STATE(1966)] = 138942, + [SMALL_STATE(1967)] = 138984, + [SMALL_STATE(1968)] = 139026, + [SMALL_STATE(1969)] = 139068, + [SMALL_STATE(1970)] = 139110, + [SMALL_STATE(1971)] = 139152, + [SMALL_STATE(1972)] = 139194, + [SMALL_STATE(1973)] = 139236, + [SMALL_STATE(1974)] = 139278, + [SMALL_STATE(1975)] = 139320, + [SMALL_STATE(1976)] = 139362, + [SMALL_STATE(1977)] = 139398, + [SMALL_STATE(1978)] = 139440, + [SMALL_STATE(1979)] = 139482, + [SMALL_STATE(1980)] = 139524, + [SMALL_STATE(1981)] = 139566, + [SMALL_STATE(1982)] = 139608, + [SMALL_STATE(1983)] = 139650, + [SMALL_STATE(1984)] = 139692, + [SMALL_STATE(1985)] = 139734, + [SMALL_STATE(1986)] = 139776, + [SMALL_STATE(1987)] = 139818, + [SMALL_STATE(1988)] = 139860, + [SMALL_STATE(1989)] = 139902, + [SMALL_STATE(1990)] = 139938, + [SMALL_STATE(1991)] = 139980, + [SMALL_STATE(1992)] = 140022, + [SMALL_STATE(1993)] = 140064, + [SMALL_STATE(1994)] = 140106, + [SMALL_STATE(1995)] = 140148, + [SMALL_STATE(1996)] = 140190, + [SMALL_STATE(1997)] = 140232, + [SMALL_STATE(1998)] = 140274, + [SMALL_STATE(1999)] = 140316, + [SMALL_STATE(2000)] = 140358, + [SMALL_STATE(2001)] = 140400, + [SMALL_STATE(2002)] = 140442, + [SMALL_STATE(2003)] = 140484, + [SMALL_STATE(2004)] = 140526, + [SMALL_STATE(2005)] = 140568, + [SMALL_STATE(2006)] = 140610, + [SMALL_STATE(2007)] = 140652, + [SMALL_STATE(2008)] = 140694, + [SMALL_STATE(2009)] = 140736, + [SMALL_STATE(2010)] = 140778, + [SMALL_STATE(2011)] = 140820, + [SMALL_STATE(2012)] = 140862, + [SMALL_STATE(2013)] = 140904, + [SMALL_STATE(2014)] = 140946, + [SMALL_STATE(2015)] = 140988, + [SMALL_STATE(2016)] = 141030, + [SMALL_STATE(2017)] = 141072, + [SMALL_STATE(2018)] = 141114, + [SMALL_STATE(2019)] = 141156, + [SMALL_STATE(2020)] = 141198, + [SMALL_STATE(2021)] = 141240, + [SMALL_STATE(2022)] = 141282, + [SMALL_STATE(2023)] = 141324, + [SMALL_STATE(2024)] = 141360, + [SMALL_STATE(2025)] = 141402, + [SMALL_STATE(2026)] = 141444, + [SMALL_STATE(2027)] = 141486, + [SMALL_STATE(2028)] = 141528, + [SMALL_STATE(2029)] = 141570, + [SMALL_STATE(2030)] = 141612, + [SMALL_STATE(2031)] = 141654, + [SMALL_STATE(2032)] = 141696, + [SMALL_STATE(2033)] = 141738, + [SMALL_STATE(2034)] = 141780, + [SMALL_STATE(2035)] = 141822, + [SMALL_STATE(2036)] = 141864, + [SMALL_STATE(2037)] = 141906, + [SMALL_STATE(2038)] = 141948, + [SMALL_STATE(2039)] = 141990, + [SMALL_STATE(2040)] = 142032, + [SMALL_STATE(2041)] = 142074, + [SMALL_STATE(2042)] = 142116, + [SMALL_STATE(2043)] = 142158, + [SMALL_STATE(2044)] = 142200, + [SMALL_STATE(2045)] = 142242, + [SMALL_STATE(2046)] = 142284, + [SMALL_STATE(2047)] = 142326, + [SMALL_STATE(2048)] = 142368, + [SMALL_STATE(2049)] = 142410, + [SMALL_STATE(2050)] = 142452, + [SMALL_STATE(2051)] = 142494, + [SMALL_STATE(2052)] = 142536, + [SMALL_STATE(2053)] = 142578, + [SMALL_STATE(2054)] = 142620, + [SMALL_STATE(2055)] = 142662, + [SMALL_STATE(2056)] = 142704, + [SMALL_STATE(2057)] = 142746, + [SMALL_STATE(2058)] = 142788, + [SMALL_STATE(2059)] = 142830, + [SMALL_STATE(2060)] = 142872, + [SMALL_STATE(2061)] = 142914, + [SMALL_STATE(2062)] = 142956, + [SMALL_STATE(2063)] = 142998, + [SMALL_STATE(2064)] = 143040, + [SMALL_STATE(2065)] = 143082, + [SMALL_STATE(2066)] = 143124, + [SMALL_STATE(2067)] = 143166, + [SMALL_STATE(2068)] = 143208, + [SMALL_STATE(2069)] = 143250, + [SMALL_STATE(2070)] = 143292, + [SMALL_STATE(2071)] = 143334, + [SMALL_STATE(2072)] = 143376, + [SMALL_STATE(2073)] = 143412, + [SMALL_STATE(2074)] = 143454, + [SMALL_STATE(2075)] = 143496, + [SMALL_STATE(2076)] = 143538, + [SMALL_STATE(2077)] = 143574, + [SMALL_STATE(2078)] = 143616, + [SMALL_STATE(2079)] = 143658, + [SMALL_STATE(2080)] = 143700, + [SMALL_STATE(2081)] = 143742, + [SMALL_STATE(2082)] = 143784, + [SMALL_STATE(2083)] = 143826, + [SMALL_STATE(2084)] = 143868, + [SMALL_STATE(2085)] = 143910, + [SMALL_STATE(2086)] = 143952, + [SMALL_STATE(2087)] = 143994, + [SMALL_STATE(2088)] = 144036, + [SMALL_STATE(2089)] = 144078, + [SMALL_STATE(2090)] = 144114, + [SMALL_STATE(2091)] = 144156, + [SMALL_STATE(2092)] = 144198, + [SMALL_STATE(2093)] = 144240, + [SMALL_STATE(2094)] = 144282, + [SMALL_STATE(2095)] = 144324, + [SMALL_STATE(2096)] = 144360, + [SMALL_STATE(2097)] = 144402, + [SMALL_STATE(2098)] = 144444, + [SMALL_STATE(2099)] = 144486, + [SMALL_STATE(2100)] = 144528, + [SMALL_STATE(2101)] = 144570, + [SMALL_STATE(2102)] = 144612, + [SMALL_STATE(2103)] = 144654, + [SMALL_STATE(2104)] = 144696, + [SMALL_STATE(2105)] = 144738, + [SMALL_STATE(2106)] = 144780, + [SMALL_STATE(2107)] = 144822, + [SMALL_STATE(2108)] = 144864, + [SMALL_STATE(2109)] = 144906, + [SMALL_STATE(2110)] = 144948, + [SMALL_STATE(2111)] = 144990, + [SMALL_STATE(2112)] = 145032, + [SMALL_STATE(2113)] = 145074, + [SMALL_STATE(2114)] = 145116, + [SMALL_STATE(2115)] = 145158, + [SMALL_STATE(2116)] = 145194, + [SMALL_STATE(2117)] = 145236, + [SMALL_STATE(2118)] = 145272, + [SMALL_STATE(2119)] = 145307, + [SMALL_STATE(2120)] = 145342, + [SMALL_STATE(2121)] = 145377, + [SMALL_STATE(2122)] = 145412, + [SMALL_STATE(2123)] = 145447, + [SMALL_STATE(2124)] = 145486, + [SMALL_STATE(2125)] = 145521, + [SMALL_STATE(2126)] = 145560, + [SMALL_STATE(2127)] = 145595, + [SMALL_STATE(2128)] = 145630, + [SMALL_STATE(2129)] = 145665, + [SMALL_STATE(2130)] = 145704, + [SMALL_STATE(2131)] = 145741, + [SMALL_STATE(2132)] = 145776, + [SMALL_STATE(2133)] = 145815, + [SMALL_STATE(2134)] = 145854, + [SMALL_STATE(2135)] = 145893, + [SMALL_STATE(2136)] = 145928, + [SMALL_STATE(2137)] = 145967, + [SMALL_STATE(2138)] = 146006, + [SMALL_STATE(2139)] = 146041, + [SMALL_STATE(2140)] = 146080, + [SMALL_STATE(2141)] = 146115, + [SMALL_STATE(2142)] = 146154, + [SMALL_STATE(2143)] = 146189, + [SMALL_STATE(2144)] = 146228, + [SMALL_STATE(2145)] = 146263, + [SMALL_STATE(2146)] = 146298, + [SMALL_STATE(2147)] = 146333, + [SMALL_STATE(2148)] = 146372, + [SMALL_STATE(2149)] = 146407, + [SMALL_STATE(2150)] = 146442, + [SMALL_STATE(2151)] = 146477, + [SMALL_STATE(2152)] = 146512, + [SMALL_STATE(2153)] = 146547, + [SMALL_STATE(2154)] = 146586, + [SMALL_STATE(2155)] = 146621, + [SMALL_STATE(2156)] = 146656, + [SMALL_STATE(2157)] = 146691, + [SMALL_STATE(2158)] = 146726, + [SMALL_STATE(2159)] = 146761, + [SMALL_STATE(2160)] = 146796, + [SMALL_STATE(2161)] = 146831, + [SMALL_STATE(2162)] = 146866, + [SMALL_STATE(2163)] = 146905, + [SMALL_STATE(2164)] = 146940, + [SMALL_STATE(2165)] = 146975, + [SMALL_STATE(2166)] = 147010, + [SMALL_STATE(2167)] = 147045, + [SMALL_STATE(2168)] = 147080, + [SMALL_STATE(2169)] = 147115, + [SMALL_STATE(2170)] = 147150, + [SMALL_STATE(2171)] = 147185, + [SMALL_STATE(2172)] = 147220, + [SMALL_STATE(2173)] = 147255, + [SMALL_STATE(2174)] = 147290, + [SMALL_STATE(2175)] = 147325, + [SMALL_STATE(2176)] = 147360, + [SMALL_STATE(2177)] = 147395, + [SMALL_STATE(2178)] = 147430, + [SMALL_STATE(2179)] = 147465, + [SMALL_STATE(2180)] = 147500, + [SMALL_STATE(2181)] = 147535, + [SMALL_STATE(2182)] = 147570, + [SMALL_STATE(2183)] = 147605, + [SMALL_STATE(2184)] = 147640, + [SMALL_STATE(2185)] = 147675, + [SMALL_STATE(2186)] = 147710, + [SMALL_STATE(2187)] = 147745, + [SMALL_STATE(2188)] = 147780, + [SMALL_STATE(2189)] = 147819, + [SMALL_STATE(2190)] = 147854, + [SMALL_STATE(2191)] = 147889, + [SMALL_STATE(2192)] = 147924, + [SMALL_STATE(2193)] = 147959, + [SMALL_STATE(2194)] = 147994, + [SMALL_STATE(2195)] = 148029, + [SMALL_STATE(2196)] = 148064, + [SMALL_STATE(2197)] = 148099, + [SMALL_STATE(2198)] = 148134, + [SMALL_STATE(2199)] = 148169, + [SMALL_STATE(2200)] = 148204, + [SMALL_STATE(2201)] = 148239, + [SMALL_STATE(2202)] = 148274, + [SMALL_STATE(2203)] = 148309, + [SMALL_STATE(2204)] = 148344, + [SMALL_STATE(2205)] = 148379, + [SMALL_STATE(2206)] = 148414, + [SMALL_STATE(2207)] = 148449, + [SMALL_STATE(2208)] = 148484, + [SMALL_STATE(2209)] = 148519, + [SMALL_STATE(2210)] = 148554, + [SMALL_STATE(2211)] = 148591, + [SMALL_STATE(2212)] = 148626, + [SMALL_STATE(2213)] = 148661, + [SMALL_STATE(2214)] = 148696, + [SMALL_STATE(2215)] = 148731, + [SMALL_STATE(2216)] = 148766, + [SMALL_STATE(2217)] = 148801, + [SMALL_STATE(2218)] = 148836, + [SMALL_STATE(2219)] = 148871, + [SMALL_STATE(2220)] = 148906, + [SMALL_STATE(2221)] = 148941, + [SMALL_STATE(2222)] = 148976, + [SMALL_STATE(2223)] = 149011, + [SMALL_STATE(2224)] = 149046, + [SMALL_STATE(2225)] = 149085, + [SMALL_STATE(2226)] = 149120, + [SMALL_STATE(2227)] = 149155, + [SMALL_STATE(2228)] = 149190, + [SMALL_STATE(2229)] = 149225, + [SMALL_STATE(2230)] = 149260, + [SMALL_STATE(2231)] = 149295, + [SMALL_STATE(2232)] = 149330, + [SMALL_STATE(2233)] = 149365, + [SMALL_STATE(2234)] = 149400, + [SMALL_STATE(2235)] = 149435, + [SMALL_STATE(2236)] = 149470, + [SMALL_STATE(2237)] = 149505, + [SMALL_STATE(2238)] = 149540, + [SMALL_STATE(2239)] = 149588, + [SMALL_STATE(2240)] = 149636, + [SMALL_STATE(2241)] = 149669, + [SMALL_STATE(2242)] = 149702, + [SMALL_STATE(2243)] = 149735, + [SMALL_STATE(2244)] = 149768, + [SMALL_STATE(2245)] = 149801, + [SMALL_STATE(2246)] = 149834, + [SMALL_STATE(2247)] = 149867, + [SMALL_STATE(2248)] = 149900, + [SMALL_STATE(2249)] = 149933, + [SMALL_STATE(2250)] = 149966, + [SMALL_STATE(2251)] = 149999, + [SMALL_STATE(2252)] = 150032, + [SMALL_STATE(2253)] = 150065, + [SMALL_STATE(2254)] = 150098, + [SMALL_STATE(2255)] = 150131, + [SMALL_STATE(2256)] = 150164, + [SMALL_STATE(2257)] = 150197, + [SMALL_STATE(2258)] = 150230, + [SMALL_STATE(2259)] = 150263, + [SMALL_STATE(2260)] = 150296, + [SMALL_STATE(2261)] = 150329, + [SMALL_STATE(2262)] = 150362, + [SMALL_STATE(2263)] = 150395, + [SMALL_STATE(2264)] = 150428, + [SMALL_STATE(2265)] = 150461, + [SMALL_STATE(2266)] = 150494, + [SMALL_STATE(2267)] = 150527, + [SMALL_STATE(2268)] = 150560, + [SMALL_STATE(2269)] = 150593, + [SMALL_STATE(2270)] = 150626, + [SMALL_STATE(2271)] = 150659, + [SMALL_STATE(2272)] = 150692, + [SMALL_STATE(2273)] = 150725, + [SMALL_STATE(2274)] = 150758, + [SMALL_STATE(2275)] = 150791, + [SMALL_STATE(2276)] = 150839, + [SMALL_STATE(2277)] = 150887, + [SMALL_STATE(2278)] = 150935, + [SMALL_STATE(2279)] = 150983, + [SMALL_STATE(2280)] = 151031, + [SMALL_STATE(2281)] = 151079, + [SMALL_STATE(2282)] = 151127, + [SMALL_STATE(2283)] = 151175, + [SMALL_STATE(2284)] = 151223, + [SMALL_STATE(2285)] = 151271, + [SMALL_STATE(2286)] = 151319, + [SMALL_STATE(2287)] = 151367, + [SMALL_STATE(2288)] = 151398, + [SMALL_STATE(2289)] = 151429, + [SMALL_STATE(2290)] = 151495, + [SMALL_STATE(2291)] = 151537, + [SMALL_STATE(2292)] = 151603, + [SMALL_STATE(2293)] = 151665, + [SMALL_STATE(2294)] = 151727, + [SMALL_STATE(2295)] = 151789, + [SMALL_STATE(2296)] = 151851, + [SMALL_STATE(2297)] = 151913, + [SMALL_STATE(2298)] = 151975, + [SMALL_STATE(2299)] = 152037, + [SMALL_STATE(2300)] = 152103, + [SMALL_STATE(2301)] = 152169, + [SMALL_STATE(2302)] = 152231, + [SMALL_STATE(2303)] = 152268, + [SMALL_STATE(2304)] = 152302, + [SMALL_STATE(2305)] = 152336, + [SMALL_STATE(2306)] = 152370, + [SMALL_STATE(2307)] = 152404, + [SMALL_STATE(2308)] = 152434, + [SMALL_STATE(2309)] = 152497, + [SMALL_STATE(2310)] = 152526, + [SMALL_STATE(2311)] = 152555, + [SMALL_STATE(2312)] = 152586, + [SMALL_STATE(2313)] = 152615, + [SMALL_STATE(2314)] = 152678, + [SMALL_STATE(2315)] = 152707, + [SMALL_STATE(2316)] = 152736, + [SMALL_STATE(2317)] = 152799, + [SMALL_STATE(2318)] = 152828, + [SMALL_STATE(2319)] = 152891, + [SMALL_STATE(2320)] = 152954, + [SMALL_STATE(2321)] = 152983, + [SMALL_STATE(2322)] = 153012, + [SMALL_STATE(2323)] = 153041, + [SMALL_STATE(2324)] = 153070, + [SMALL_STATE(2325)] = 153099, + [SMALL_STATE(2326)] = 153162, + [SMALL_STATE(2327)] = 153191, + [SMALL_STATE(2328)] = 153220, + [SMALL_STATE(2329)] = 153283, + [SMALL_STATE(2330)] = 153346, + [SMALL_STATE(2331)] = 153409, + [SMALL_STATE(2332)] = 153438, + [SMALL_STATE(2333)] = 153467, + [SMALL_STATE(2334)] = 153496, + [SMALL_STATE(2335)] = 153559, + [SMALL_STATE(2336)] = 153622, + [SMALL_STATE(2337)] = 153651, + [SMALL_STATE(2338)] = 153680, + [SMALL_STATE(2339)] = 153709, + [SMALL_STATE(2340)] = 153738, + [SMALL_STATE(2341)] = 153767, + [SMALL_STATE(2342)] = 153796, + [SMALL_STATE(2343)] = 153825, + [SMALL_STATE(2344)] = 153854, + [SMALL_STATE(2345)] = 153883, + [SMALL_STATE(2346)] = 153946, + [SMALL_STATE(2347)] = 153975, + [SMALL_STATE(2348)] = 154038, + [SMALL_STATE(2349)] = 154101, + [SMALL_STATE(2350)] = 154129, + [SMALL_STATE(2351)] = 154157, + [SMALL_STATE(2352)] = 154185, + [SMALL_STATE(2353)] = 154213, + [SMALL_STATE(2354)] = 154241, + [SMALL_STATE(2355)] = 154269, + [SMALL_STATE(2356)] = 154297, + [SMALL_STATE(2357)] = 154325, + [SMALL_STATE(2358)] = 154353, + [SMALL_STATE(2359)] = 154381, + [SMALL_STATE(2360)] = 154409, + [SMALL_STATE(2361)] = 154437, + [SMALL_STATE(2362)] = 154465, + [SMALL_STATE(2363)] = 154493, + [SMALL_STATE(2364)] = 154521, + [SMALL_STATE(2365)] = 154549, + [SMALL_STATE(2366)] = 154577, + [SMALL_STATE(2367)] = 154605, + [SMALL_STATE(2368)] = 154633, + [SMALL_STATE(2369)] = 154661, + [SMALL_STATE(2370)] = 154689, + [SMALL_STATE(2371)] = 154717, + [SMALL_STATE(2372)] = 154745, + [SMALL_STATE(2373)] = 154773, + [SMALL_STATE(2374)] = 154801, + [SMALL_STATE(2375)] = 154852, + [SMALL_STATE(2376)] = 154903, + [SMALL_STATE(2377)] = 154954, + [SMALL_STATE(2378)] = 155005, + [SMALL_STATE(2379)] = 155048, + [SMALL_STATE(2380)] = 155099, + [SMALL_STATE(2381)] = 155148, + [SMALL_STATE(2382)] = 155199, + [SMALL_STATE(2383)] = 155232, + [SMALL_STATE(2384)] = 155283, + [SMALL_STATE(2385)] = 155316, + [SMALL_STATE(2386)] = 155367, + [SMALL_STATE(2387)] = 155400, + [SMALL_STATE(2388)] = 155451, + [SMALL_STATE(2389)] = 155500, + [SMALL_STATE(2390)] = 155551, + [SMALL_STATE(2391)] = 155602, + [SMALL_STATE(2392)] = 155635, + [SMALL_STATE(2393)] = 155668, + [SMALL_STATE(2394)] = 155719, + [SMALL_STATE(2395)] = 155770, + [SMALL_STATE(2396)] = 155821, + [SMALL_STATE(2397)] = 155872, + [SMALL_STATE(2398)] = 155923, + [SMALL_STATE(2399)] = 155953, + [SMALL_STATE(2400)] = 155983, + [SMALL_STATE(2401)] = 156013, + [SMALL_STATE(2402)] = 156043, + [SMALL_STATE(2403)] = 156068, + [SMALL_STATE(2404)] = 156095, + [SMALL_STATE(2405)] = 156120, + [SMALL_STATE(2406)] = 156145, + [SMALL_STATE(2407)] = 156182, + [SMALL_STATE(2408)] = 156207, + [SMALL_STATE(2409)] = 156232, + [SMALL_STATE(2410)] = 156257, + [SMALL_STATE(2411)] = 156282, + [SMALL_STATE(2412)] = 156307, + [SMALL_STATE(2413)] = 156331, + [SMALL_STATE(2414)] = 156376, + [SMALL_STATE(2415)] = 156421, + [SMALL_STATE(2416)] = 156466, + [SMALL_STATE(2417)] = 156511, + [SMALL_STATE(2418)] = 156556, + [SMALL_STATE(2419)] = 156601, + [SMALL_STATE(2420)] = 156646, + [SMALL_STATE(2421)] = 156691, + [SMALL_STATE(2422)] = 156736, + [SMALL_STATE(2423)] = 156781, + [SMALL_STATE(2424)] = 156826, + [SMALL_STATE(2425)] = 156871, + [SMALL_STATE(2426)] = 156899, + [SMALL_STATE(2427)] = 156921, + [SMALL_STATE(2428)] = 156945, + [SMALL_STATE(2429)] = 156971, + [SMALL_STATE(2430)] = 156992, + [SMALL_STATE(2431)] = 157019, + [SMALL_STATE(2432)] = 157040, + [SMALL_STATE(2433)] = 157061, + [SMALL_STATE(2434)] = 157082, + [SMALL_STATE(2435)] = 157103, + [SMALL_STATE(2436)] = 157124, + [SMALL_STATE(2437)] = 157145, + [SMALL_STATE(2438)] = 157166, + [SMALL_STATE(2439)] = 157187, + [SMALL_STATE(2440)] = 157208, + [SMALL_STATE(2441)] = 157229, + [SMALL_STATE(2442)] = 157250, + [SMALL_STATE(2443)] = 157271, + [SMALL_STATE(2444)] = 157292, + [SMALL_STATE(2445)] = 157313, + [SMALL_STATE(2446)] = 157334, + [SMALL_STATE(2447)] = 157355, + [SMALL_STATE(2448)] = 157376, + [SMALL_STATE(2449)] = 157401, + [SMALL_STATE(2450)] = 157422, + [SMALL_STATE(2451)] = 157443, + [SMALL_STATE(2452)] = 157464, + [SMALL_STATE(2453)] = 157485, + [SMALL_STATE(2454)] = 157506, + [SMALL_STATE(2455)] = 157531, + [SMALL_STATE(2456)] = 157552, + [SMALL_STATE(2457)] = 157573, + [SMALL_STATE(2458)] = 157594, + [SMALL_STATE(2459)] = 157615, + [SMALL_STATE(2460)] = 157636, + [SMALL_STATE(2461)] = 157657, + [SMALL_STATE(2462)] = 157678, + [SMALL_STATE(2463)] = 157699, + [SMALL_STATE(2464)] = 157720, + [SMALL_STATE(2465)] = 157741, + [SMALL_STATE(2466)] = 157762, + [SMALL_STATE(2467)] = 157783, + [SMALL_STATE(2468)] = 157804, + [SMALL_STATE(2469)] = 157825, + [SMALL_STATE(2470)] = 157846, + [SMALL_STATE(2471)] = 157867, + [SMALL_STATE(2472)] = 157888, + [SMALL_STATE(2473)] = 157909, + [SMALL_STATE(2474)] = 157930, + [SMALL_STATE(2475)] = 157951, + [SMALL_STATE(2476)] = 157972, + [SMALL_STATE(2477)] = 157993, + [SMALL_STATE(2478)] = 158014, + [SMALL_STATE(2479)] = 158035, + [SMALL_STATE(2480)] = 158056, + [SMALL_STATE(2481)] = 158077, + [SMALL_STATE(2482)] = 158098, + [SMALL_STATE(2483)] = 158119, + [SMALL_STATE(2484)] = 158140, + [SMALL_STATE(2485)] = 158161, + [SMALL_STATE(2486)] = 158182, + [SMALL_STATE(2487)] = 158203, + [SMALL_STATE(2488)] = 158224, + [SMALL_STATE(2489)] = 158245, + [SMALL_STATE(2490)] = 158266, + [SMALL_STATE(2491)] = 158287, + [SMALL_STATE(2492)] = 158308, + [SMALL_STATE(2493)] = 158329, + [SMALL_STATE(2494)] = 158350, + [SMALL_STATE(2495)] = 158371, + [SMALL_STATE(2496)] = 158392, + [SMALL_STATE(2497)] = 158413, + [SMALL_STATE(2498)] = 158434, + [SMALL_STATE(2499)] = 158455, + [SMALL_STATE(2500)] = 158476, + [SMALL_STATE(2501)] = 158497, + [SMALL_STATE(2502)] = 158518, + [SMALL_STATE(2503)] = 158539, + [SMALL_STATE(2504)] = 158560, + [SMALL_STATE(2505)] = 158581, + [SMALL_STATE(2506)] = 158602, + [SMALL_STATE(2507)] = 158623, + [SMALL_STATE(2508)] = 158644, + [SMALL_STATE(2509)] = 158665, + [SMALL_STATE(2510)] = 158686, + [SMALL_STATE(2511)] = 158707, + [SMALL_STATE(2512)] = 158728, + [SMALL_STATE(2513)] = 158749, + [SMALL_STATE(2514)] = 158770, + [SMALL_STATE(2515)] = 158791, + [SMALL_STATE(2516)] = 158816, + [SMALL_STATE(2517)] = 158837, + [SMALL_STATE(2518)] = 158858, + [SMALL_STATE(2519)] = 158879, + [SMALL_STATE(2520)] = 158900, + [SMALL_STATE(2521)] = 158925, + [SMALL_STATE(2522)] = 158950, + [SMALL_STATE(2523)] = 158971, + [SMALL_STATE(2524)] = 158992, + [SMALL_STATE(2525)] = 159013, + [SMALL_STATE(2526)] = 159034, + [SMALL_STATE(2527)] = 159055, + [SMALL_STATE(2528)] = 159076, + [SMALL_STATE(2529)] = 159097, + [SMALL_STATE(2530)] = 159118, + [SMALL_STATE(2531)] = 159138, + [SMALL_STATE(2532)] = 159167, + [SMALL_STATE(2533)] = 159188, + [SMALL_STATE(2534)] = 159217, + [SMALL_STATE(2535)] = 159250, + [SMALL_STATE(2536)] = 159279, + [SMALL_STATE(2537)] = 159308, + [SMALL_STATE(2538)] = 159341, + [SMALL_STATE(2539)] = 159374, + [SMALL_STATE(2540)] = 159403, + [SMALL_STATE(2541)] = 159436, + [SMALL_STATE(2542)] = 159465, + [SMALL_STATE(2543)] = 159498, + [SMALL_STATE(2544)] = 159527, + [SMALL_STATE(2545)] = 159556, + [SMALL_STATE(2546)] = 159585, + [SMALL_STATE(2547)] = 159618, + [SMALL_STATE(2548)] = 159651, + [SMALL_STATE(2549)] = 159680, + [SMALL_STATE(2550)] = 159709, + [SMALL_STATE(2551)] = 159738, + [SMALL_STATE(2552)] = 159771, + [SMALL_STATE(2553)] = 159800, + [SMALL_STATE(2554)] = 159833, + [SMALL_STATE(2555)] = 159862, + [SMALL_STATE(2556)] = 159895, + [SMALL_STATE(2557)] = 159928, + [SMALL_STATE(2558)] = 159961, + [SMALL_STATE(2559)] = 159994, + [SMALL_STATE(2560)] = 160027, + [SMALL_STATE(2561)] = 160060, + [SMALL_STATE(2562)] = 160093, + [SMALL_STATE(2563)] = 160126, + [SMALL_STATE(2564)] = 160155, + [SMALL_STATE(2565)] = 160184, + [SMALL_STATE(2566)] = 160213, + [SMALL_STATE(2567)] = 160242, + [SMALL_STATE(2568)] = 160271, + [SMALL_STATE(2569)] = 160304, + [SMALL_STATE(2570)] = 160337, + [SMALL_STATE(2571)] = 160366, + [SMALL_STATE(2572)] = 160387, + [SMALL_STATE(2573)] = 160420, + [SMALL_STATE(2574)] = 160453, + [SMALL_STATE(2575)] = 160486, + [SMALL_STATE(2576)] = 160519, + [SMALL_STATE(2577)] = 160552, + [SMALL_STATE(2578)] = 160573, + [SMALL_STATE(2579)] = 160602, + [SMALL_STATE(2580)] = 160631, + [SMALL_STATE(2581)] = 160660, + [SMALL_STATE(2582)] = 160689, + [SMALL_STATE(2583)] = 160722, + [SMALL_STATE(2584)] = 160751, + [SMALL_STATE(2585)] = 160769, + [SMALL_STATE(2586)] = 160787, + [SMALL_STATE(2587)] = 160805, + [SMALL_STATE(2588)] = 160823, + [SMALL_STATE(2589)] = 160841, + [SMALL_STATE(2590)] = 160867, + [SMALL_STATE(2591)] = 160885, + [SMALL_STATE(2592)] = 160915, + [SMALL_STATE(2593)] = 160933, + [SMALL_STATE(2594)] = 160951, + [SMALL_STATE(2595)] = 160973, + [SMALL_STATE(2596)] = 161001, + [SMALL_STATE(2597)] = 161019, + [SMALL_STATE(2598)] = 161037, + [SMALL_STATE(2599)] = 161055, + [SMALL_STATE(2600)] = 161073, + [SMALL_STATE(2601)] = 161103, + [SMALL_STATE(2602)] = 161121, + [SMALL_STATE(2603)] = 161139, + [SMALL_STATE(2604)] = 161169, + [SMALL_STATE(2605)] = 161187, + [SMALL_STATE(2606)] = 161205, + [SMALL_STATE(2607)] = 161223, + [SMALL_STATE(2608)] = 161241, + [SMALL_STATE(2609)] = 161259, + [SMALL_STATE(2610)] = 161289, + [SMALL_STATE(2611)] = 161319, + [SMALL_STATE(2612)] = 161349, + [SMALL_STATE(2613)] = 161367, + [SMALL_STATE(2614)] = 161397, + [SMALL_STATE(2615)] = 161415, + [SMALL_STATE(2616)] = 161433, + [SMALL_STATE(2617)] = 161451, + [SMALL_STATE(2618)] = 161481, + [SMALL_STATE(2619)] = 161511, + [SMALL_STATE(2620)] = 161531, + [SMALL_STATE(2621)] = 161549, + [SMALL_STATE(2622)] = 161569, + [SMALL_STATE(2623)] = 161599, + [SMALL_STATE(2624)] = 161619, + [SMALL_STATE(2625)] = 161649, + [SMALL_STATE(2626)] = 161667, + [SMALL_STATE(2627)] = 161685, + [SMALL_STATE(2628)] = 161715, + [SMALL_STATE(2629)] = 161746, + [SMALL_STATE(2630)] = 161767, + [SMALL_STATE(2631)] = 161798, + [SMALL_STATE(2632)] = 161820, + [SMALL_STATE(2633)] = 161848, + [SMALL_STATE(2634)] = 161876, + [SMALL_STATE(2635)] = 161904, + [SMALL_STATE(2636)] = 161932, + [SMALL_STATE(2637)] = 161960, + [SMALL_STATE(2638)] = 161988, + [SMALL_STATE(2639)] = 162016, + [SMALL_STATE(2640)] = 162044, + [SMALL_STATE(2641)] = 162072, + [SMALL_STATE(2642)] = 162094, + [SMALL_STATE(2643)] = 162116, + [SMALL_STATE(2644)] = 162138, + [SMALL_STATE(2645)] = 162160, + [SMALL_STATE(2646)] = 162182, + [SMALL_STATE(2647)] = 162204, + [SMALL_STATE(2648)] = 162226, + [SMALL_STATE(2649)] = 162248, + [SMALL_STATE(2650)] = 162270, + [SMALL_STATE(2651)] = 162292, + [SMALL_STATE(2652)] = 162314, + [SMALL_STATE(2653)] = 162336, + [SMALL_STATE(2654)] = 162358, + [SMALL_STATE(2655)] = 162380, + [SMALL_STATE(2656)] = 162402, + [SMALL_STATE(2657)] = 162424, + [SMALL_STATE(2658)] = 162446, + [SMALL_STATE(2659)] = 162468, + [SMALL_STATE(2660)] = 162490, + [SMALL_STATE(2661)] = 162512, + [SMALL_STATE(2662)] = 162534, + [SMALL_STATE(2663)] = 162556, + [SMALL_STATE(2664)] = 162578, + [SMALL_STATE(2665)] = 162600, + [SMALL_STATE(2666)] = 162622, + [SMALL_STATE(2667)] = 162644, + [SMALL_STATE(2668)] = 162666, + [SMALL_STATE(2669)] = 162688, + [SMALL_STATE(2670)] = 162710, + [SMALL_STATE(2671)] = 162732, + [SMALL_STATE(2672)] = 162754, + [SMALL_STATE(2673)] = 162776, + [SMALL_STATE(2674)] = 162798, + [SMALL_STATE(2675)] = 162820, + [SMALL_STATE(2676)] = 162842, + [SMALL_STATE(2677)] = 162864, + [SMALL_STATE(2678)] = 162886, + [SMALL_STATE(2679)] = 162908, + [SMALL_STATE(2680)] = 162930, + [SMALL_STATE(2681)] = 162952, + [SMALL_STATE(2682)] = 162974, + [SMALL_STATE(2683)] = 162996, + [SMALL_STATE(2684)] = 163018, + [SMALL_STATE(2685)] = 163040, + [SMALL_STATE(2686)] = 163062, + [SMALL_STATE(2687)] = 163084, + [SMALL_STATE(2688)] = 163106, + [SMALL_STATE(2689)] = 163128, + [SMALL_STATE(2690)] = 163150, + [SMALL_STATE(2691)] = 163172, + [SMALL_STATE(2692)] = 163194, + [SMALL_STATE(2693)] = 163216, + [SMALL_STATE(2694)] = 163238, + [SMALL_STATE(2695)] = 163260, + [SMALL_STATE(2696)] = 163282, + [SMALL_STATE(2697)] = 163304, + [SMALL_STATE(2698)] = 163326, + [SMALL_STATE(2699)] = 163348, + [SMALL_STATE(2700)] = 163370, + [SMALL_STATE(2701)] = 163392, + [SMALL_STATE(2702)] = 163414, + [SMALL_STATE(2703)] = 163436, + [SMALL_STATE(2704)] = 163458, + [SMALL_STATE(2705)] = 163480, + [SMALL_STATE(2706)] = 163502, + [SMALL_STATE(2707)] = 163524, + [SMALL_STATE(2708)] = 163546, + [SMALL_STATE(2709)] = 163568, + [SMALL_STATE(2710)] = 163590, + [SMALL_STATE(2711)] = 163612, + [SMALL_STATE(2712)] = 163634, + [SMALL_STATE(2713)] = 163656, + [SMALL_STATE(2714)] = 163678, + [SMALL_STATE(2715)] = 163700, + [SMALL_STATE(2716)] = 163722, + [SMALL_STATE(2717)] = 163744, + [SMALL_STATE(2718)] = 163766, + [SMALL_STATE(2719)] = 163788, + [SMALL_STATE(2720)] = 163810, + [SMALL_STATE(2721)] = 163832, + [SMALL_STATE(2722)] = 163854, + [SMALL_STATE(2723)] = 163876, + [SMALL_STATE(2724)] = 163898, + [SMALL_STATE(2725)] = 163920, + [SMALL_STATE(2726)] = 163942, + [SMALL_STATE(2727)] = 163964, + [SMALL_STATE(2728)] = 163986, + [SMALL_STATE(2729)] = 164008, + [SMALL_STATE(2730)] = 164030, + [SMALL_STATE(2731)] = 164052, + [SMALL_STATE(2732)] = 164074, + [SMALL_STATE(2733)] = 164096, + [SMALL_STATE(2734)] = 164118, + [SMALL_STATE(2735)] = 164140, + [SMALL_STATE(2736)] = 164162, + [SMALL_STATE(2737)] = 164184, + [SMALL_STATE(2738)] = 164206, + [SMALL_STATE(2739)] = 164228, + [SMALL_STATE(2740)] = 164250, + [SMALL_STATE(2741)] = 164272, + [SMALL_STATE(2742)] = 164294, + [SMALL_STATE(2743)] = 164316, + [SMALL_STATE(2744)] = 164338, + [SMALL_STATE(2745)] = 164360, + [SMALL_STATE(2746)] = 164382, + [SMALL_STATE(2747)] = 164404, + [SMALL_STATE(2748)] = 164426, + [SMALL_STATE(2749)] = 164448, + [SMALL_STATE(2750)] = 164470, + [SMALL_STATE(2751)] = 164492, + [SMALL_STATE(2752)] = 164514, + [SMALL_STATE(2753)] = 164536, + [SMALL_STATE(2754)] = 164558, + [SMALL_STATE(2755)] = 164580, + [SMALL_STATE(2756)] = 164602, + [SMALL_STATE(2757)] = 164624, + [SMALL_STATE(2758)] = 164646, + [SMALL_STATE(2759)] = 164668, + [SMALL_STATE(2760)] = 164690, + [SMALL_STATE(2761)] = 164712, + [SMALL_STATE(2762)] = 164734, + [SMALL_STATE(2763)] = 164756, + [SMALL_STATE(2764)] = 164778, + [SMALL_STATE(2765)] = 164800, + [SMALL_STATE(2766)] = 164822, + [SMALL_STATE(2767)] = 164844, + [SMALL_STATE(2768)] = 164866, + [SMALL_STATE(2769)] = 164888, + [SMALL_STATE(2770)] = 164910, + [SMALL_STATE(2771)] = 164932, + [SMALL_STATE(2772)] = 164954, + [SMALL_STATE(2773)] = 164976, + [SMALL_STATE(2774)] = 164998, + [SMALL_STATE(2775)] = 165020, + [SMALL_STATE(2776)] = 165042, + [SMALL_STATE(2777)] = 165064, + [SMALL_STATE(2778)] = 165086, + [SMALL_STATE(2779)] = 165108, + [SMALL_STATE(2780)] = 165130, + [SMALL_STATE(2781)] = 165152, + [SMALL_STATE(2782)] = 165174, + [SMALL_STATE(2783)] = 165196, + [SMALL_STATE(2784)] = 165218, + [SMALL_STATE(2785)] = 165240, + [SMALL_STATE(2786)] = 165262, + [SMALL_STATE(2787)] = 165284, + [SMALL_STATE(2788)] = 165306, + [SMALL_STATE(2789)] = 165328, + [SMALL_STATE(2790)] = 165350, + [SMALL_STATE(2791)] = 165372, + [SMALL_STATE(2792)] = 165394, + [SMALL_STATE(2793)] = 165416, + [SMALL_STATE(2794)] = 165438, + [SMALL_STATE(2795)] = 165460, + [SMALL_STATE(2796)] = 165482, + [SMALL_STATE(2797)] = 165504, + [SMALL_STATE(2798)] = 165526, + [SMALL_STATE(2799)] = 165548, + [SMALL_STATE(2800)] = 165570, + [SMALL_STATE(2801)] = 165592, + [SMALL_STATE(2802)] = 165614, + [SMALL_STATE(2803)] = 165636, + [SMALL_STATE(2804)] = 165658, + [SMALL_STATE(2805)] = 165680, + [SMALL_STATE(2806)] = 165702, + [SMALL_STATE(2807)] = 165724, + [SMALL_STATE(2808)] = 165746, + [SMALL_STATE(2809)] = 165768, + [SMALL_STATE(2810)] = 165790, + [SMALL_STATE(2811)] = 165812, + [SMALL_STATE(2812)] = 165834, + [SMALL_STATE(2813)] = 165856, + [SMALL_STATE(2814)] = 165878, + [SMALL_STATE(2815)] = 165900, + [SMALL_STATE(2816)] = 165922, + [SMALL_STATE(2817)] = 165944, + [SMALL_STATE(2818)] = 165966, + [SMALL_STATE(2819)] = 165988, + [SMALL_STATE(2820)] = 166010, + [SMALL_STATE(2821)] = 166032, + [SMALL_STATE(2822)] = 166054, + [SMALL_STATE(2823)] = 166076, + [SMALL_STATE(2824)] = 166098, + [SMALL_STATE(2825)] = 166120, + [SMALL_STATE(2826)] = 166142, + [SMALL_STATE(2827)] = 166164, + [SMALL_STATE(2828)] = 166186, + [SMALL_STATE(2829)] = 166208, + [SMALL_STATE(2830)] = 166230, + [SMALL_STATE(2831)] = 166252, + [SMALL_STATE(2832)] = 166274, + [SMALL_STATE(2833)] = 166296, + [SMALL_STATE(2834)] = 166318, + [SMALL_STATE(2835)] = 166340, + [SMALL_STATE(2836)] = 166362, + [SMALL_STATE(2837)] = 166384, + [SMALL_STATE(2838)] = 166406, + [SMALL_STATE(2839)] = 166428, + [SMALL_STATE(2840)] = 166450, + [SMALL_STATE(2841)] = 166472, + [SMALL_STATE(2842)] = 166494, + [SMALL_STATE(2843)] = 166516, + [SMALL_STATE(2844)] = 166538, + [SMALL_STATE(2845)] = 166560, + [SMALL_STATE(2846)] = 166582, + [SMALL_STATE(2847)] = 166604, + [SMALL_STATE(2848)] = 166626, + [SMALL_STATE(2849)] = 166648, + [SMALL_STATE(2850)] = 166670, + [SMALL_STATE(2851)] = 166692, + [SMALL_STATE(2852)] = 166714, + [SMALL_STATE(2853)] = 166736, + [SMALL_STATE(2854)] = 166758, + [SMALL_STATE(2855)] = 166780, + [SMALL_STATE(2856)] = 166802, + [SMALL_STATE(2857)] = 166824, + [SMALL_STATE(2858)] = 166846, + [SMALL_STATE(2859)] = 166868, + [SMALL_STATE(2860)] = 166890, + [SMALL_STATE(2861)] = 166912, + [SMALL_STATE(2862)] = 166934, + [SMALL_STATE(2863)] = 166956, + [SMALL_STATE(2864)] = 166978, + [SMALL_STATE(2865)] = 167000, + [SMALL_STATE(2866)] = 167022, + [SMALL_STATE(2867)] = 167044, + [SMALL_STATE(2868)] = 167066, + [SMALL_STATE(2869)] = 167088, + [SMALL_STATE(2870)] = 167110, + [SMALL_STATE(2871)] = 167132, + [SMALL_STATE(2872)] = 167154, + [SMALL_STATE(2873)] = 167176, + [SMALL_STATE(2874)] = 167198, + [SMALL_STATE(2875)] = 167220, + [SMALL_STATE(2876)] = 167242, + [SMALL_STATE(2877)] = 167264, + [SMALL_STATE(2878)] = 167286, + [SMALL_STATE(2879)] = 167308, + [SMALL_STATE(2880)] = 167330, + [SMALL_STATE(2881)] = 167352, + [SMALL_STATE(2882)] = 167374, + [SMALL_STATE(2883)] = 167396, + [SMALL_STATE(2884)] = 167418, + [SMALL_STATE(2885)] = 167440, + [SMALL_STATE(2886)] = 167462, + [SMALL_STATE(2887)] = 167484, + [SMALL_STATE(2888)] = 167506, + [SMALL_STATE(2889)] = 167528, + [SMALL_STATE(2890)] = 167550, + [SMALL_STATE(2891)] = 167572, + [SMALL_STATE(2892)] = 167594, + [SMALL_STATE(2893)] = 167616, + [SMALL_STATE(2894)] = 167638, + [SMALL_STATE(2895)] = 167660, + [SMALL_STATE(2896)] = 167682, + [SMALL_STATE(2897)] = 167704, + [SMALL_STATE(2898)] = 167726, + [SMALL_STATE(2899)] = 167748, + [SMALL_STATE(2900)] = 167770, + [SMALL_STATE(2901)] = 167792, + [SMALL_STATE(2902)] = 167814, + [SMALL_STATE(2903)] = 167836, + [SMALL_STATE(2904)] = 167858, + [SMALL_STATE(2905)] = 167880, + [SMALL_STATE(2906)] = 167902, + [SMALL_STATE(2907)] = 167924, + [SMALL_STATE(2908)] = 167946, + [SMALL_STATE(2909)] = 167968, + [SMALL_STATE(2910)] = 167990, + [SMALL_STATE(2911)] = 168012, + [SMALL_STATE(2912)] = 168034, + [SMALL_STATE(2913)] = 168056, + [SMALL_STATE(2914)] = 168078, + [SMALL_STATE(2915)] = 168100, + [SMALL_STATE(2916)] = 168122, + [SMALL_STATE(2917)] = 168144, + [SMALL_STATE(2918)] = 168166, + [SMALL_STATE(2919)] = 168188, + [SMALL_STATE(2920)] = 168210, + [SMALL_STATE(2921)] = 168232, + [SMALL_STATE(2922)] = 168254, + [SMALL_STATE(2923)] = 168276, + [SMALL_STATE(2924)] = 168298, + [SMALL_STATE(2925)] = 168320, + [SMALL_STATE(2926)] = 168342, + [SMALL_STATE(2927)] = 168364, + [SMALL_STATE(2928)] = 168386, + [SMALL_STATE(2929)] = 168408, + [SMALL_STATE(2930)] = 168430, + [SMALL_STATE(2931)] = 168452, + [SMALL_STATE(2932)] = 168474, + [SMALL_STATE(2933)] = 168496, + [SMALL_STATE(2934)] = 168518, + [SMALL_STATE(2935)] = 168540, + [SMALL_STATE(2936)] = 168562, + [SMALL_STATE(2937)] = 168584, + [SMALL_STATE(2938)] = 168606, + [SMALL_STATE(2939)] = 168628, + [SMALL_STATE(2940)] = 168650, + [SMALL_STATE(2941)] = 168672, + [SMALL_STATE(2942)] = 168688, + [SMALL_STATE(2943)] = 168710, + [SMALL_STATE(2944)] = 168732, + [SMALL_STATE(2945)] = 168754, + [SMALL_STATE(2946)] = 168776, + [SMALL_STATE(2947)] = 168798, + [SMALL_STATE(2948)] = 168820, + [SMALL_STATE(2949)] = 168842, + [SMALL_STATE(2950)] = 168861, + [SMALL_STATE(2951)] = 168880, + [SMALL_STATE(2952)] = 168899, + [SMALL_STATE(2953)] = 168918, + [SMALL_STATE(2954)] = 168937, + [SMALL_STATE(2955)] = 168956, + [SMALL_STATE(2956)] = 168975, + [SMALL_STATE(2957)] = 168994, + [SMALL_STATE(2958)] = 169013, + [SMALL_STATE(2959)] = 169032, + [SMALL_STATE(2960)] = 169051, + [SMALL_STATE(2961)] = 169070, + [SMALL_STATE(2962)] = 169089, + [SMALL_STATE(2963)] = 169108, + [SMALL_STATE(2964)] = 169127, + [SMALL_STATE(2965)] = 169146, + [SMALL_STATE(2966)] = 169165, + [SMALL_STATE(2967)] = 169184, + [SMALL_STATE(2968)] = 169203, + [SMALL_STATE(2969)] = 169222, + [SMALL_STATE(2970)] = 169241, + [SMALL_STATE(2971)] = 169260, + [SMALL_STATE(2972)] = 169279, + [SMALL_STATE(2973)] = 169298, + [SMALL_STATE(2974)] = 169317, + [SMALL_STATE(2975)] = 169336, + [SMALL_STATE(2976)] = 169355, + [SMALL_STATE(2977)] = 169374, + [SMALL_STATE(2978)] = 169393, + [SMALL_STATE(2979)] = 169412, + [SMALL_STATE(2980)] = 169431, + [SMALL_STATE(2981)] = 169450, + [SMALL_STATE(2982)] = 169469, + [SMALL_STATE(2983)] = 169488, + [SMALL_STATE(2984)] = 169507, + [SMALL_STATE(2985)] = 169526, + [SMALL_STATE(2986)] = 169545, + [SMALL_STATE(2987)] = 169564, + [SMALL_STATE(2988)] = 169583, + [SMALL_STATE(2989)] = 169602, + [SMALL_STATE(2990)] = 169621, + [SMALL_STATE(2991)] = 169640, + [SMALL_STATE(2992)] = 169659, + [SMALL_STATE(2993)] = 169678, + [SMALL_STATE(2994)] = 169697, + [SMALL_STATE(2995)] = 169716, + [SMALL_STATE(2996)] = 169735, + [SMALL_STATE(2997)] = 169754, + [SMALL_STATE(2998)] = 169773, + [SMALL_STATE(2999)] = 169792, + [SMALL_STATE(3000)] = 169811, + [SMALL_STATE(3001)] = 169830, + [SMALL_STATE(3002)] = 169849, + [SMALL_STATE(3003)] = 169868, + [SMALL_STATE(3004)] = 169887, + [SMALL_STATE(3005)] = 169906, + [SMALL_STATE(3006)] = 169925, + [SMALL_STATE(3007)] = 169944, + [SMALL_STATE(3008)] = 169963, + [SMALL_STATE(3009)] = 169982, + [SMALL_STATE(3010)] = 170001, + [SMALL_STATE(3011)] = 170020, + [SMALL_STATE(3012)] = 170039, + [SMALL_STATE(3013)] = 170058, + [SMALL_STATE(3014)] = 170077, + [SMALL_STATE(3015)] = 170096, + [SMALL_STATE(3016)] = 170115, + [SMALL_STATE(3017)] = 170134, + [SMALL_STATE(3018)] = 170153, + [SMALL_STATE(3019)] = 170172, + [SMALL_STATE(3020)] = 170191, + [SMALL_STATE(3021)] = 170210, + [SMALL_STATE(3022)] = 170229, + [SMALL_STATE(3023)] = 170248, + [SMALL_STATE(3024)] = 170267, + [SMALL_STATE(3025)] = 170286, + [SMALL_STATE(3026)] = 170305, + [SMALL_STATE(3027)] = 170324, + [SMALL_STATE(3028)] = 170343, + [SMALL_STATE(3029)] = 170362, + [SMALL_STATE(3030)] = 170381, + [SMALL_STATE(3031)] = 170400, + [SMALL_STATE(3032)] = 170419, + [SMALL_STATE(3033)] = 170438, + [SMALL_STATE(3034)] = 170457, + [SMALL_STATE(3035)] = 170476, + [SMALL_STATE(3036)] = 170495, + [SMALL_STATE(3037)] = 170514, + [SMALL_STATE(3038)] = 170533, + [SMALL_STATE(3039)] = 170552, + [SMALL_STATE(3040)] = 170571, + [SMALL_STATE(3041)] = 170590, + [SMALL_STATE(3042)] = 170609, + [SMALL_STATE(3043)] = 170628, + [SMALL_STATE(3044)] = 170647, + [SMALL_STATE(3045)] = 170666, + [SMALL_STATE(3046)] = 170685, + [SMALL_STATE(3047)] = 170704, + [SMALL_STATE(3048)] = 170723, + [SMALL_STATE(3049)] = 170742, + [SMALL_STATE(3050)] = 170761, + [SMALL_STATE(3051)] = 170780, + [SMALL_STATE(3052)] = 170799, + [SMALL_STATE(3053)] = 170818, + [SMALL_STATE(3054)] = 170837, + [SMALL_STATE(3055)] = 170856, + [SMALL_STATE(3056)] = 170875, + [SMALL_STATE(3057)] = 170894, + [SMALL_STATE(3058)] = 170913, + [SMALL_STATE(3059)] = 170932, + [SMALL_STATE(3060)] = 170951, + [SMALL_STATE(3061)] = 170970, + [SMALL_STATE(3062)] = 170989, + [SMALL_STATE(3063)] = 171008, + [SMALL_STATE(3064)] = 171027, + [SMALL_STATE(3065)] = 171046, + [SMALL_STATE(3066)] = 171065, + [SMALL_STATE(3067)] = 171084, + [SMALL_STATE(3068)] = 171103, + [SMALL_STATE(3069)] = 171122, + [SMALL_STATE(3070)] = 171141, + [SMALL_STATE(3071)] = 171160, + [SMALL_STATE(3072)] = 171179, + [SMALL_STATE(3073)] = 171198, + [SMALL_STATE(3074)] = 171217, + [SMALL_STATE(3075)] = 171236, + [SMALL_STATE(3076)] = 171255, + [SMALL_STATE(3077)] = 171274, + [SMALL_STATE(3078)] = 171293, + [SMALL_STATE(3079)] = 171312, + [SMALL_STATE(3080)] = 171331, + [SMALL_STATE(3081)] = 171350, + [SMALL_STATE(3082)] = 171369, + [SMALL_STATE(3083)] = 171388, + [SMALL_STATE(3084)] = 171407, + [SMALL_STATE(3085)] = 171426, + [SMALL_STATE(3086)] = 171445, + [SMALL_STATE(3087)] = 171464, + [SMALL_STATE(3088)] = 171483, + [SMALL_STATE(3089)] = 171502, + [SMALL_STATE(3090)] = 171521, + [SMALL_STATE(3091)] = 171540, + [SMALL_STATE(3092)] = 171559, + [SMALL_STATE(3093)] = 171578, + [SMALL_STATE(3094)] = 171597, + [SMALL_STATE(3095)] = 171616, + [SMALL_STATE(3096)] = 171635, + [SMALL_STATE(3097)] = 171654, + [SMALL_STATE(3098)] = 171673, + [SMALL_STATE(3099)] = 171692, + [SMALL_STATE(3100)] = 171711, + [SMALL_STATE(3101)] = 171730, + [SMALL_STATE(3102)] = 171749, + [SMALL_STATE(3103)] = 171768, + [SMALL_STATE(3104)] = 171787, + [SMALL_STATE(3105)] = 171806, + [SMALL_STATE(3106)] = 171825, + [SMALL_STATE(3107)] = 171844, + [SMALL_STATE(3108)] = 171863, + [SMALL_STATE(3109)] = 171882, + [SMALL_STATE(3110)] = 171901, + [SMALL_STATE(3111)] = 171920, + [SMALL_STATE(3112)] = 171939, + [SMALL_STATE(3113)] = 171958, + [SMALL_STATE(3114)] = 171977, + [SMALL_STATE(3115)] = 171996, + [SMALL_STATE(3116)] = 172015, + [SMALL_STATE(3117)] = 172034, + [SMALL_STATE(3118)] = 172053, + [SMALL_STATE(3119)] = 172072, + [SMALL_STATE(3120)] = 172091, + [SMALL_STATE(3121)] = 172110, + [SMALL_STATE(3122)] = 172129, + [SMALL_STATE(3123)] = 172148, + [SMALL_STATE(3124)] = 172167, + [SMALL_STATE(3125)] = 172186, + [SMALL_STATE(3126)] = 172205, + [SMALL_STATE(3127)] = 172224, + [SMALL_STATE(3128)] = 172243, + [SMALL_STATE(3129)] = 172262, + [SMALL_STATE(3130)] = 172281, + [SMALL_STATE(3131)] = 172300, + [SMALL_STATE(3132)] = 172319, + [SMALL_STATE(3133)] = 172338, + [SMALL_STATE(3134)] = 172357, + [SMALL_STATE(3135)] = 172376, + [SMALL_STATE(3136)] = 172395, + [SMALL_STATE(3137)] = 172414, + [SMALL_STATE(3138)] = 172433, + [SMALL_STATE(3139)] = 172452, + [SMALL_STATE(3140)] = 172471, + [SMALL_STATE(3141)] = 172490, + [SMALL_STATE(3142)] = 172509, + [SMALL_STATE(3143)] = 172528, + [SMALL_STATE(3144)] = 172547, + [SMALL_STATE(3145)] = 172566, + [SMALL_STATE(3146)] = 172585, + [SMALL_STATE(3147)] = 172604, + [SMALL_STATE(3148)] = 172623, + [SMALL_STATE(3149)] = 172642, + [SMALL_STATE(3150)] = 172661, + [SMALL_STATE(3151)] = 172680, + [SMALL_STATE(3152)] = 172699, + [SMALL_STATE(3153)] = 172718, + [SMALL_STATE(3154)] = 172737, + [SMALL_STATE(3155)] = 172756, + [SMALL_STATE(3156)] = 172775, + [SMALL_STATE(3157)] = 172794, + [SMALL_STATE(3158)] = 172813, + [SMALL_STATE(3159)] = 172832, + [SMALL_STATE(3160)] = 172851, + [SMALL_STATE(3161)] = 172870, + [SMALL_STATE(3162)] = 172889, + [SMALL_STATE(3163)] = 172908, + [SMALL_STATE(3164)] = 172927, + [SMALL_STATE(3165)] = 172946, + [SMALL_STATE(3166)] = 172965, + [SMALL_STATE(3167)] = 172984, + [SMALL_STATE(3168)] = 173003, + [SMALL_STATE(3169)] = 173022, + [SMALL_STATE(3170)] = 173041, + [SMALL_STATE(3171)] = 173060, + [SMALL_STATE(3172)] = 173079, + [SMALL_STATE(3173)] = 173098, + [SMALL_STATE(3174)] = 173117, + [SMALL_STATE(3175)] = 173136, + [SMALL_STATE(3176)] = 173155, + [SMALL_STATE(3177)] = 173174, + [SMALL_STATE(3178)] = 173193, + [SMALL_STATE(3179)] = 173212, + [SMALL_STATE(3180)] = 173231, + [SMALL_STATE(3181)] = 173250, + [SMALL_STATE(3182)] = 173269, + [SMALL_STATE(3183)] = 173288, + [SMALL_STATE(3184)] = 173307, + [SMALL_STATE(3185)] = 173326, + [SMALL_STATE(3186)] = 173345, + [SMALL_STATE(3187)] = 173364, + [SMALL_STATE(3188)] = 173383, + [SMALL_STATE(3189)] = 173402, + [SMALL_STATE(3190)] = 173421, + [SMALL_STATE(3191)] = 173440, + [SMALL_STATE(3192)] = 173459, + [SMALL_STATE(3193)] = 173478, + [SMALL_STATE(3194)] = 173497, + [SMALL_STATE(3195)] = 173516, + [SMALL_STATE(3196)] = 173535, + [SMALL_STATE(3197)] = 173554, + [SMALL_STATE(3198)] = 173573, + [SMALL_STATE(3199)] = 173592, + [SMALL_STATE(3200)] = 173611, + [SMALL_STATE(3201)] = 173630, + [SMALL_STATE(3202)] = 173649, + [SMALL_STATE(3203)] = 173668, + [SMALL_STATE(3204)] = 173687, + [SMALL_STATE(3205)] = 173706, + [SMALL_STATE(3206)] = 173725, + [SMALL_STATE(3207)] = 173744, + [SMALL_STATE(3208)] = 173763, + [SMALL_STATE(3209)] = 173782, + [SMALL_STATE(3210)] = 173801, + [SMALL_STATE(3211)] = 173820, + [SMALL_STATE(3212)] = 173839, + [SMALL_STATE(3213)] = 173858, + [SMALL_STATE(3214)] = 173877, + [SMALL_STATE(3215)] = 173896, + [SMALL_STATE(3216)] = 173915, + [SMALL_STATE(3217)] = 173934, + [SMALL_STATE(3218)] = 173953, + [SMALL_STATE(3219)] = 173972, + [SMALL_STATE(3220)] = 173991, + [SMALL_STATE(3221)] = 174010, + [SMALL_STATE(3222)] = 174029, + [SMALL_STATE(3223)] = 174048, + [SMALL_STATE(3224)] = 174067, + [SMALL_STATE(3225)] = 174086, + [SMALL_STATE(3226)] = 174105, + [SMALL_STATE(3227)] = 174124, + [SMALL_STATE(3228)] = 174143, + [SMALL_STATE(3229)] = 174162, + [SMALL_STATE(3230)] = 174181, + [SMALL_STATE(3231)] = 174200, + [SMALL_STATE(3232)] = 174219, + [SMALL_STATE(3233)] = 174238, + [SMALL_STATE(3234)] = 174257, + [SMALL_STATE(3235)] = 174276, + [SMALL_STATE(3236)] = 174295, + [SMALL_STATE(3237)] = 174314, + [SMALL_STATE(3238)] = 174333, + [SMALL_STATE(3239)] = 174352, + [SMALL_STATE(3240)] = 174371, + [SMALL_STATE(3241)] = 174390, + [SMALL_STATE(3242)] = 174409, + [SMALL_STATE(3243)] = 174428, + [SMALL_STATE(3244)] = 174447, + [SMALL_STATE(3245)] = 174466, + [SMALL_STATE(3246)] = 174485, + [SMALL_STATE(3247)] = 174504, + [SMALL_STATE(3248)] = 174523, + [SMALL_STATE(3249)] = 174542, + [SMALL_STATE(3250)] = 174561, + [SMALL_STATE(3251)] = 174580, + [SMALL_STATE(3252)] = 174599, + [SMALL_STATE(3253)] = 174618, + [SMALL_STATE(3254)] = 174637, + [SMALL_STATE(3255)] = 174656, + [SMALL_STATE(3256)] = 174675, + [SMALL_STATE(3257)] = 174694, + [SMALL_STATE(3258)] = 174713, + [SMALL_STATE(3259)] = 174732, + [SMALL_STATE(3260)] = 174751, + [SMALL_STATE(3261)] = 174770, + [SMALL_STATE(3262)] = 174789, + [SMALL_STATE(3263)] = 174808, + [SMALL_STATE(3264)] = 174827, + [SMALL_STATE(3265)] = 174846, + [SMALL_STATE(3266)] = 174865, + [SMALL_STATE(3267)] = 174884, + [SMALL_STATE(3268)] = 174903, + [SMALL_STATE(3269)] = 174922, + [SMALL_STATE(3270)] = 174941, + [SMALL_STATE(3271)] = 174960, + [SMALL_STATE(3272)] = 174979, + [SMALL_STATE(3273)] = 174998, + [SMALL_STATE(3274)] = 175017, + [SMALL_STATE(3275)] = 175036, + [SMALL_STATE(3276)] = 175055, + [SMALL_STATE(3277)] = 175074, + [SMALL_STATE(3278)] = 175093, + [SMALL_STATE(3279)] = 175112, + [SMALL_STATE(3280)] = 175131, + [SMALL_STATE(3281)] = 175150, + [SMALL_STATE(3282)] = 175169, + [SMALL_STATE(3283)] = 175188, + [SMALL_STATE(3284)] = 175207, + [SMALL_STATE(3285)] = 175226, + [SMALL_STATE(3286)] = 175245, + [SMALL_STATE(3287)] = 175264, + [SMALL_STATE(3288)] = 175283, + [SMALL_STATE(3289)] = 175302, + [SMALL_STATE(3290)] = 175321, + [SMALL_STATE(3291)] = 175340, + [SMALL_STATE(3292)] = 175359, + [SMALL_STATE(3293)] = 175378, + [SMALL_STATE(3294)] = 175397, + [SMALL_STATE(3295)] = 175416, + [SMALL_STATE(3296)] = 175435, + [SMALL_STATE(3297)] = 175454, + [SMALL_STATE(3298)] = 175473, + [SMALL_STATE(3299)] = 175492, + [SMALL_STATE(3300)] = 175511, + [SMALL_STATE(3301)] = 175530, + [SMALL_STATE(3302)] = 175549, + [SMALL_STATE(3303)] = 175568, + [SMALL_STATE(3304)] = 175587, + [SMALL_STATE(3305)] = 175606, + [SMALL_STATE(3306)] = 175625, + [SMALL_STATE(3307)] = 175644, + [SMALL_STATE(3308)] = 175663, + [SMALL_STATE(3309)] = 175682, + [SMALL_STATE(3310)] = 175701, + [SMALL_STATE(3311)] = 175716, + [SMALL_STATE(3312)] = 175735, + [SMALL_STATE(3313)] = 175754, + [SMALL_STATE(3314)] = 175773, + [SMALL_STATE(3315)] = 175792, + [SMALL_STATE(3316)] = 175811, + [SMALL_STATE(3317)] = 175830, + [SMALL_STATE(3318)] = 175849, + [SMALL_STATE(3319)] = 175868, + [SMALL_STATE(3320)] = 175887, + [SMALL_STATE(3321)] = 175906, + [SMALL_STATE(3322)] = 175925, + [SMALL_STATE(3323)] = 175944, + [SMALL_STATE(3324)] = 175963, + [SMALL_STATE(3325)] = 175982, + [SMALL_STATE(3326)] = 176001, + [SMALL_STATE(3327)] = 176020, + [SMALL_STATE(3328)] = 176039, + [SMALL_STATE(3329)] = 176058, + [SMALL_STATE(3330)] = 176077, + [SMALL_STATE(3331)] = 176096, + [SMALL_STATE(3332)] = 176115, + [SMALL_STATE(3333)] = 176134, + [SMALL_STATE(3334)] = 176153, + [SMALL_STATE(3335)] = 176172, + [SMALL_STATE(3336)] = 176191, + [SMALL_STATE(3337)] = 176210, + [SMALL_STATE(3338)] = 176229, + [SMALL_STATE(3339)] = 176248, + [SMALL_STATE(3340)] = 176267, + [SMALL_STATE(3341)] = 176286, + [SMALL_STATE(3342)] = 176305, + [SMALL_STATE(3343)] = 176324, + [SMALL_STATE(3344)] = 176343, + [SMALL_STATE(3345)] = 176362, + [SMALL_STATE(3346)] = 176381, + [SMALL_STATE(3347)] = 176400, + [SMALL_STATE(3348)] = 176419, + [SMALL_STATE(3349)] = 176438, + [SMALL_STATE(3350)] = 176457, + [SMALL_STATE(3351)] = 176476, + [SMALL_STATE(3352)] = 176495, + [SMALL_STATE(3353)] = 176514, + [SMALL_STATE(3354)] = 176533, + [SMALL_STATE(3355)] = 176552, + [SMALL_STATE(3356)] = 176571, + [SMALL_STATE(3357)] = 176590, + [SMALL_STATE(3358)] = 176609, + [SMALL_STATE(3359)] = 176628, + [SMALL_STATE(3360)] = 176647, + [SMALL_STATE(3361)] = 176666, + [SMALL_STATE(3362)] = 176685, + [SMALL_STATE(3363)] = 176704, + [SMALL_STATE(3364)] = 176723, + [SMALL_STATE(3365)] = 176742, + [SMALL_STATE(3366)] = 176761, + [SMALL_STATE(3367)] = 176780, + [SMALL_STATE(3368)] = 176799, + [SMALL_STATE(3369)] = 176818, + [SMALL_STATE(3370)] = 176837, + [SMALL_STATE(3371)] = 176856, + [SMALL_STATE(3372)] = 176875, + [SMALL_STATE(3373)] = 176894, + [SMALL_STATE(3374)] = 176913, + [SMALL_STATE(3375)] = 176932, + [SMALL_STATE(3376)] = 176951, + [SMALL_STATE(3377)] = 176970, + [SMALL_STATE(3378)] = 176989, + [SMALL_STATE(3379)] = 177008, + [SMALL_STATE(3380)] = 177027, + [SMALL_STATE(3381)] = 177046, + [SMALL_STATE(3382)] = 177065, + [SMALL_STATE(3383)] = 177084, + [SMALL_STATE(3384)] = 177103, + [SMALL_STATE(3385)] = 177122, + [SMALL_STATE(3386)] = 177141, + [SMALL_STATE(3387)] = 177160, + [SMALL_STATE(3388)] = 177179, + [SMALL_STATE(3389)] = 177198, + [SMALL_STATE(3390)] = 177217, + [SMALL_STATE(3391)] = 177236, + [SMALL_STATE(3392)] = 177255, + [SMALL_STATE(3393)] = 177274, + [SMALL_STATE(3394)] = 177293, + [SMALL_STATE(3395)] = 177312, + [SMALL_STATE(3396)] = 177331, + [SMALL_STATE(3397)] = 177350, + [SMALL_STATE(3398)] = 177369, + [SMALL_STATE(3399)] = 177388, + [SMALL_STATE(3400)] = 177407, + [SMALL_STATE(3401)] = 177426, + [SMALL_STATE(3402)] = 177445, + [SMALL_STATE(3403)] = 177464, + [SMALL_STATE(3404)] = 177483, + [SMALL_STATE(3405)] = 177502, + [SMALL_STATE(3406)] = 177521, + [SMALL_STATE(3407)] = 177540, + [SMALL_STATE(3408)] = 177559, + [SMALL_STATE(3409)] = 177578, + [SMALL_STATE(3410)] = 177597, + [SMALL_STATE(3411)] = 177615, + [SMALL_STATE(3412)] = 177633, + [SMALL_STATE(3413)] = 177651, + [SMALL_STATE(3414)] = 177669, + [SMALL_STATE(3415)] = 177687, + [SMALL_STATE(3416)] = 177705, + [SMALL_STATE(3417)] = 177723, + [SMALL_STATE(3418)] = 177741, + [SMALL_STATE(3419)] = 177759, + [SMALL_STATE(3420)] = 177777, + [SMALL_STATE(3421)] = 177795, + [SMALL_STATE(3422)] = 177813, + [SMALL_STATE(3423)] = 177831, + [SMALL_STATE(3424)] = 177849, + [SMALL_STATE(3425)] = 177867, + [SMALL_STATE(3426)] = 177885, + [SMALL_STATE(3427)] = 177903, + [SMALL_STATE(3428)] = 177921, + [SMALL_STATE(3429)] = 177939, + [SMALL_STATE(3430)] = 177957, + [SMALL_STATE(3431)] = 177975, + [SMALL_STATE(3432)] = 177993, + [SMALL_STATE(3433)] = 178011, + [SMALL_STATE(3434)] = 178029, + [SMALL_STATE(3435)] = 178047, + [SMALL_STATE(3436)] = 178065, + [SMALL_STATE(3437)] = 178083, + [SMALL_STATE(3438)] = 178101, + [SMALL_STATE(3439)] = 178119, + [SMALL_STATE(3440)] = 178137, + [SMALL_STATE(3441)] = 178155, + [SMALL_STATE(3442)] = 178173, + [SMALL_STATE(3443)] = 178191, + [SMALL_STATE(3444)] = 178209, + [SMALL_STATE(3445)] = 178227, + [SMALL_STATE(3446)] = 178245, + [SMALL_STATE(3447)] = 178263, + [SMALL_STATE(3448)] = 178281, + [SMALL_STATE(3449)] = 178299, + [SMALL_STATE(3450)] = 178317, + [SMALL_STATE(3451)] = 178335, + [SMALL_STATE(3452)] = 178353, + [SMALL_STATE(3453)] = 178371, + [SMALL_STATE(3454)] = 178389, + [SMALL_STATE(3455)] = 178407, + [SMALL_STATE(3456)] = 178425, + [SMALL_STATE(3457)] = 178443, + [SMALL_STATE(3458)] = 178461, + [SMALL_STATE(3459)] = 178479, + [SMALL_STATE(3460)] = 178497, + [SMALL_STATE(3461)] = 178515, + [SMALL_STATE(3462)] = 178533, + [SMALL_STATE(3463)] = 178551, + [SMALL_STATE(3464)] = 178569, + [SMALL_STATE(3465)] = 178587, + [SMALL_STATE(3466)] = 178605, + [SMALL_STATE(3467)] = 178623, + [SMALL_STATE(3468)] = 178641, + [SMALL_STATE(3469)] = 178659, + [SMALL_STATE(3470)] = 178677, + [SMALL_STATE(3471)] = 178695, + [SMALL_STATE(3472)] = 178713, + [SMALL_STATE(3473)] = 178731, + [SMALL_STATE(3474)] = 178749, + [SMALL_STATE(3475)] = 178767, + [SMALL_STATE(3476)] = 178785, + [SMALL_STATE(3477)] = 178803, + [SMALL_STATE(3478)] = 178821, + [SMALL_STATE(3479)] = 178839, + [SMALL_STATE(3480)] = 178857, + [SMALL_STATE(3481)] = 178875, + [SMALL_STATE(3482)] = 178893, + [SMALL_STATE(3483)] = 178911, + [SMALL_STATE(3484)] = 178929, + [SMALL_STATE(3485)] = 178947, + [SMALL_STATE(3486)] = 178965, + [SMALL_STATE(3487)] = 178983, + [SMALL_STATE(3488)] = 179001, + [SMALL_STATE(3489)] = 179019, + [SMALL_STATE(3490)] = 179037, + [SMALL_STATE(3491)] = 179055, + [SMALL_STATE(3492)] = 179073, + [SMALL_STATE(3493)] = 179091, + [SMALL_STATE(3494)] = 179109, + [SMALL_STATE(3495)] = 179127, + [SMALL_STATE(3496)] = 179145, + [SMALL_STATE(3497)] = 179163, + [SMALL_STATE(3498)] = 179181, + [SMALL_STATE(3499)] = 179199, + [SMALL_STATE(3500)] = 179217, + [SMALL_STATE(3501)] = 179235, + [SMALL_STATE(3502)] = 179253, + [SMALL_STATE(3503)] = 179271, + [SMALL_STATE(3504)] = 179289, + [SMALL_STATE(3505)] = 179307, + [SMALL_STATE(3506)] = 179325, + [SMALL_STATE(3507)] = 179343, + [SMALL_STATE(3508)] = 179361, + [SMALL_STATE(3509)] = 179379, + [SMALL_STATE(3510)] = 179397, + [SMALL_STATE(3511)] = 179415, + [SMALL_STATE(3512)] = 179433, + [SMALL_STATE(3513)] = 179451, + [SMALL_STATE(3514)] = 179469, + [SMALL_STATE(3515)] = 179487, + [SMALL_STATE(3516)] = 179505, + [SMALL_STATE(3517)] = 179523, + [SMALL_STATE(3518)] = 179541, + [SMALL_STATE(3519)] = 179559, + [SMALL_STATE(3520)] = 179577, + [SMALL_STATE(3521)] = 179595, + [SMALL_STATE(3522)] = 179615, + [SMALL_STATE(3523)] = 179633, + [SMALL_STATE(3524)] = 179651, + [SMALL_STATE(3525)] = 179664, + [SMALL_STATE(3526)] = 179677, + [SMALL_STATE(3527)] = 179690, + [SMALL_STATE(3528)] = 179703, + [SMALL_STATE(3529)] = 179716, + [SMALL_STATE(3530)] = 179733, + [SMALL_STATE(3531)] = 179750, + [SMALL_STATE(3532)] = 179763, + [SMALL_STATE(3533)] = 179776, + [SMALL_STATE(3534)] = 179789, + [SMALL_STATE(3535)] = 179802, + [SMALL_STATE(3536)] = 179815, + [SMALL_STATE(3537)] = 179834, + [SMALL_STATE(3538)] = 179844, + [SMALL_STATE(3539)] = 179854, + [SMALL_STATE(3540)] = 179864, + [SMALL_STATE(3541)] = 179874, + [SMALL_STATE(3542)] = 179886, + [SMALL_STATE(3543)] = 179896, + [SMALL_STATE(3544)] = 179906, + [SMALL_STATE(3545)] = 179916, + [SMALL_STATE(3546)] = 179926, + [SMALL_STATE(3547)] = 179936, + [SMALL_STATE(3548)] = 179949, + [SMALL_STATE(3549)] = 179962, + [SMALL_STATE(3550)] = 179975, + [SMALL_STATE(3551)] = 179988, + [SMALL_STATE(3552)] = 180001, + [SMALL_STATE(3553)] = 180014, + [SMALL_STATE(3554)] = 180027, + [SMALL_STATE(3555)] = 180040, + [SMALL_STATE(3556)] = 180053, + [SMALL_STATE(3557)] = 180066, + [SMALL_STATE(3558)] = 180079, + [SMALL_STATE(3559)] = 180092, + [SMALL_STATE(3560)] = 180105, + [SMALL_STATE(3561)] = 180118, + [SMALL_STATE(3562)] = 180131, + [SMALL_STATE(3563)] = 180144, + [SMALL_STATE(3564)] = 180157, + [SMALL_STATE(3565)] = 180170, + [SMALL_STATE(3566)] = 180183, + [SMALL_STATE(3567)] = 180196, + [SMALL_STATE(3568)] = 180209, + [SMALL_STATE(3569)] = 180222, + [SMALL_STATE(3570)] = 180235, + [SMALL_STATE(3571)] = 180248, + [SMALL_STATE(3572)] = 180261, + [SMALL_STATE(3573)] = 180274, + [SMALL_STATE(3574)] = 180287, + [SMALL_STATE(3575)] = 180297, + [SMALL_STATE(3576)] = 180307, + [SMALL_STATE(3577)] = 180317, + [SMALL_STATE(3578)] = 180327, + [SMALL_STATE(3579)] = 180337, + [SMALL_STATE(3580)] = 180347, + [SMALL_STATE(3581)] = 180357, + [SMALL_STATE(3582)] = 180367, + [SMALL_STATE(3583)] = 180377, + [SMALL_STATE(3584)] = 180387, + [SMALL_STATE(3585)] = 180397, + [SMALL_STATE(3586)] = 180407, + [SMALL_STATE(3587)] = 180417, + [SMALL_STATE(3588)] = 180427, + [SMALL_STATE(3589)] = 180437, + [SMALL_STATE(3590)] = 180447, + [SMALL_STATE(3591)] = 180457, + [SMALL_STATE(3592)] = 180467, + [SMALL_STATE(3593)] = 180477, + [SMALL_STATE(3594)] = 180487, + [SMALL_STATE(3595)] = 180497, + [SMALL_STATE(3596)] = 180507, + [SMALL_STATE(3597)] = 180514, + [SMALL_STATE(3598)] = 180521, + [SMALL_STATE(3599)] = 180528, + [SMALL_STATE(3600)] = 180535, + [SMALL_STATE(3601)] = 180542, + [SMALL_STATE(3602)] = 180549, + [SMALL_STATE(3603)] = 180556, + [SMALL_STATE(3604)] = 180563, + [SMALL_STATE(3605)] = 180570, + [SMALL_STATE(3606)] = 180577, + [SMALL_STATE(3607)] = 180584, + [SMALL_STATE(3608)] = 180591, + [SMALL_STATE(3609)] = 180598, + [SMALL_STATE(3610)] = 180605, + [SMALL_STATE(3611)] = 180612, + [SMALL_STATE(3612)] = 180619, + [SMALL_STATE(3613)] = 180626, + [SMALL_STATE(3614)] = 180633, + [SMALL_STATE(3615)] = 180640, + [SMALL_STATE(3616)] = 180647, + [SMALL_STATE(3617)] = 180654, + [SMALL_STATE(3618)] = 180661, + [SMALL_STATE(3619)] = 180668, + [SMALL_STATE(3620)] = 180675, + [SMALL_STATE(3621)] = 180682, + [SMALL_STATE(3622)] = 180689, + [SMALL_STATE(3623)] = 180696, + [SMALL_STATE(3624)] = 180703, + [SMALL_STATE(3625)] = 180710, + [SMALL_STATE(3626)] = 180717, + [SMALL_STATE(3627)] = 180724, + [SMALL_STATE(3628)] = 180731, + [SMALL_STATE(3629)] = 180738, + [SMALL_STATE(3630)] = 180745, + [SMALL_STATE(3631)] = 180752, + [SMALL_STATE(3632)] = 180759, + [SMALL_STATE(3633)] = 180766, + [SMALL_STATE(3634)] = 180773, + [SMALL_STATE(3635)] = 180780, + [SMALL_STATE(3636)] = 180787, + [SMALL_STATE(3637)] = 180794, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -167474,4347 +179985,5056 @@ 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(154), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [59] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(773), - [63] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(468), - [67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(765), - [70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(1995), - [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(1943), - [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(3337), - [79] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(3337), - [82] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(3185), - [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(1810), - [88] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(2071), - [92] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(2070), - [96] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(90), - [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 5, .production_id = 53), - [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(2303), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(3186), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(3225), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(384), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(385), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(387), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(388), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(389), - [127] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(1811), - [131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 5, .production_id = 53), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(3389), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(1995), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(535), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(2850), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(13), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(468), - [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(2071), - [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(2070), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(90), - [177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(1932), - [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 2, .production_id = 39), - [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [210] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 6, .production_id = 70), SHIFT(773), - [214] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 6, .production_id = 70), SHIFT(468), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(1964), - [221] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 6, .production_id = 70), SHIFT(2071), - [225] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 6, .production_id = 70), SHIFT(2070), - [229] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 6, .production_id = 70), SHIFT(90), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 6, .production_id = 70), - [236] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 6, .production_id = 70), SHIFT(1811), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 6, .production_id = 70), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(1964), - [246] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), REDUCE(sym_with_clause, 6, .production_id = 103), SHIFT(9), - [250] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), REDUCE(sym_with_clause, 6, .production_id = 103), SHIFT(468), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [256] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), REDUCE(sym_with_clause, 6, .production_id = 103), SHIFT(2071), - [260] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), REDUCE(sym_with_clause, 6, .production_id = 103), SHIFT(2070), - [264] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), REDUCE(sym_with_clause, 6, .production_id = 103), SHIFT(90), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), REDUCE(sym_with_clause, 6, .production_id = 103), - [271] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 83), REDUCE(sym_with_clause, 6, .production_id = 103), SHIFT(1915), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 83), REDUCE(sym_with_clause, 6, .production_id = 103), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 2, .production_id = 39), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 2, .production_id = 39), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [324] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 7, .production_id = 82), SHIFT(773), - [328] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 7, .production_id = 82), SHIFT(468), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(2024), - [335] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 7, .production_id = 82), SHIFT(2071), - [339] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 7, .production_id = 82), SHIFT(2070), - [343] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 7, .production_id = 82), SHIFT(90), - [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 7, .production_id = 82), - [350] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 7, .production_id = 82), SHIFT(1811), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 7, .production_id = 82), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(2024), - [360] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 5, .production_id = 54), REDUCE(sym_with_clause, 5, .production_id = 70), SHIFT(4), - [365] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 5, .production_id = 54), REDUCE(sym_with_clause, 5, .production_id = 70), SHIFT(468), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(1963), - [373] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 5, .production_id = 54), REDUCE(sym_with_clause, 5, .production_id = 70), SHIFT(2071), - [378] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 5, .production_id = 54), REDUCE(sym_with_clause, 5, .production_id = 70), SHIFT(2070), - [383] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 5, .production_id = 54), REDUCE(sym_with_clause, 5, .production_id = 70), SHIFT(90), - [388] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 5, .production_id = 54), REDUCE(sym_with_clause, 5, .production_id = 70), - [392] = {.entry = {.count = 4, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 5, .production_id = 54), REDUCE(sym_with_clause, 5, .production_id = 70), SHIFT(1835), - [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(44), - [400] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 5, .production_id = 54), REDUCE(sym_with_clause, 5, .production_id = 70), - [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(1963), - [407] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 7, .production_id = 83), REDUCE(sym_with_clause, 7, .production_id = 103), SHIFT(19), - [412] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 7, .production_id = 83), REDUCE(sym_with_clause, 7, .production_id = 103), SHIFT(468), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(1962), - [420] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 7, .production_id = 83), REDUCE(sym_with_clause, 7, .production_id = 103), SHIFT(2071), - [425] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 7, .production_id = 83), REDUCE(sym_with_clause, 7, .production_id = 103), SHIFT(2070), - [430] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 7, .production_id = 83), REDUCE(sym_with_clause, 7, .production_id = 103), SHIFT(90), - [435] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 7, .production_id = 83), REDUCE(sym_with_clause, 7, .production_id = 103), - [439] = {.entry = {.count = 4, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 7, .production_id = 83), REDUCE(sym_with_clause, 7, .production_id = 103), SHIFT(1834), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(21), - [447] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 7, .production_id = 83), REDUCE(sym_with_clause, 7, .production_id = 103), - [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(1962), - [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 4, .production_id = 64), - [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 4, .production_id = 64), - [458] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 6, .production_id = 64), REDUCE(sym_with_clause, 6, .production_id = 82), SHIFT(7), - [463] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 6, .production_id = 64), REDUCE(sym_with_clause, 6, .production_id = 82), SHIFT(468), - [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(1997), - [471] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 6, .production_id = 64), REDUCE(sym_with_clause, 6, .production_id = 82), SHIFT(2071), - [476] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 6, .production_id = 64), REDUCE(sym_with_clause, 6, .production_id = 82), SHIFT(2070), - [481] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 6, .production_id = 64), REDUCE(sym_with_clause, 6, .production_id = 82), SHIFT(90), - [486] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 6, .production_id = 64), REDUCE(sym_with_clause, 6, .production_id = 82), - [490] = {.entry = {.count = 4, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 6, .production_id = 64), REDUCE(sym_with_clause, 6, .production_id = 82), SHIFT(1911), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(57), - [498] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 6, .production_id = 64), REDUCE(sym_with_clause, 6, .production_id = 82), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(1997), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(5), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(468), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(2071), - [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(2070), - [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(90), - [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 83), - [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(1843), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 83), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [533] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), REDUCE(sym_with_clause, 3, .production_id = 53), SHIFT(17), - [537] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), REDUCE(sym_with_clause, 3, .production_id = 53), SHIFT(468), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [543] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), REDUCE(sym_with_clause, 3, .production_id = 53), SHIFT(2071), - [547] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), REDUCE(sym_with_clause, 3, .production_id = 53), SHIFT(2070), - [551] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), REDUCE(sym_with_clause, 3, .production_id = 53), SHIFT(90), - [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), REDUCE(sym_with_clause, 3, .production_id = 53), - [558] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 39), REDUCE(sym_with_clause, 3, .production_id = 53), SHIFT(1923), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 39), REDUCE(sym_with_clause, 3, .production_id = 53), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(18), - [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(468), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(2071), - [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(2070), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(90), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(1921), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 54), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(229), - [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(649), - [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(772), - [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(778), - [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(789), - [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3351), - [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3351), - [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3193), - [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(950), - [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2071), - [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2070), - [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(89), - [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), - [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2322), - [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3194), - [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3219), - [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(238), - [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(236), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(234), - [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(232), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(230), - [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(989), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3384), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(778), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(219), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2763), - [676] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), REDUCE(sym_with_clause, 5, .production_id = 82), SHIFT(11), - [680] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), REDUCE(sym_with_clause, 5, .production_id = 82), SHIFT(468), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [686] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), REDUCE(sym_with_clause, 5, .production_id = 82), SHIFT(2071), - [690] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), REDUCE(sym_with_clause, 5, .production_id = 82), SHIFT(2070), - [694] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), REDUCE(sym_with_clause, 5, .production_id = 82), SHIFT(90), - [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), REDUCE(sym_with_clause, 5, .production_id = 82), - [701] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 64), REDUCE(sym_with_clause, 5, .production_id = 82), SHIFT(1845), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 64), REDUCE(sym_with_clause, 5, .production_id = 82), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [712] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 4, .production_id = 39), REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(2), - [717] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 4, .production_id = 39), REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(468), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(2028), - [725] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 4, .production_id = 39), REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(2071), - [730] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 4, .production_id = 39), REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(2070), - [735] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 4, .production_id = 39), REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(90), - [740] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 4, .production_id = 39), REDUCE(sym_with_clause, 4, .production_id = 53), - [744] = {.entry = {.count = 4, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 4, .production_id = 39), REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(1884), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(61), - [752] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 4, .production_id = 39), REDUCE(sym_with_clause, 4, .production_id = 53), - [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(2028), - [759] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 70), SHIFT(8), - [763] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 70), SHIFT(468), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [769] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 70), SHIFT(2071), - [773] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 70), SHIFT(2070), - [777] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 70), SHIFT(90), - [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 70), - [784] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 70), SHIFT(1880), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 70), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [795] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 8, .production_id = 103), SHIFT(773), - [799] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 8, .production_id = 103), SHIFT(468), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(1998), - [806] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 8, .production_id = 103), SHIFT(2071), - [810] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 8, .production_id = 103), SHIFT(2070), - [814] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 8, .production_id = 103), SHIFT(90), - [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 8, .production_id = 103), - [821] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 8, .production_id = 103), SHIFT(1811), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), REDUCE(sym_with_clause, 8, .production_id = 103), - [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT(1998), - [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 64), SHIFT(16), - [834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 64), SHIFT(468), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 64), SHIFT(2071), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 64), SHIFT(2070), - [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 64), SHIFT(90), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 64), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 64), SHIFT(1893), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 64), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 103), SHIFT(33), - [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 103), SHIFT(527), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 103), SHIFT(2071), - [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 103), SHIFT(2070), - [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 103), SHIFT(90), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 103), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 103), SHIFT(1811), - [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 103), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [885] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 64), REDUCE(sym_with_clause, 7, .production_id = 82), SHIFT(775), - [889] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 64), REDUCE(sym_with_clause, 7, .production_id = 82), SHIFT(527), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [895] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 64), REDUCE(sym_with_clause, 7, .production_id = 82), SHIFT(2071), - [899] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 64), REDUCE(sym_with_clause, 7, .production_id = 82), SHIFT(2070), - [903] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 64), REDUCE(sym_with_clause, 7, .production_id = 82), SHIFT(90), - [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 64), REDUCE(sym_with_clause, 7, .production_id = 82), - [910] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 64), REDUCE(sym_with_clause, 7, .production_id = 82), SHIFT(1811), - [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 64), REDUCE(sym_with_clause, 7, .production_id = 82), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 103), SHIFT(775), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 103), SHIFT(527), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 103), SHIFT(2071), - [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 103), SHIFT(2070), - [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 103), SHIFT(90), - [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 103), - [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 103), SHIFT(1811), - [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 103), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [945] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), REDUCE(sym_with_clause, 6, .production_id = 53), SHIFT(69), - [949] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), REDUCE(sym_with_clause, 6, .production_id = 53), SHIFT(527), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [955] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), REDUCE(sym_with_clause, 6, .production_id = 53), SHIFT(2071), - [959] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), REDUCE(sym_with_clause, 6, .production_id = 53), SHIFT(2070), - [963] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), REDUCE(sym_with_clause, 6, .production_id = 53), SHIFT(90), - [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), REDUCE(sym_with_clause, 6, .production_id = 53), - [970] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 39), REDUCE(sym_with_clause, 6, .production_id = 53), SHIFT(1811), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 39), REDUCE(sym_with_clause, 6, .production_id = 53), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 103), SHIFT(23), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 103), SHIFT(527), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 103), SHIFT(2071), - [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 103), SHIFT(2070), - [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 103), SHIFT(90), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 103), - [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 103), SHIFT(1811), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 103), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [1005] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 83), REDUCE(sym_with_clause, 10, .production_id = 103), SHIFT(775), - [1009] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 83), REDUCE(sym_with_clause, 10, .production_id = 103), SHIFT(527), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [1015] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 83), REDUCE(sym_with_clause, 10, .production_id = 103), SHIFT(2071), - [1019] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 83), REDUCE(sym_with_clause, 10, .production_id = 103), SHIFT(2070), - [1023] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 83), REDUCE(sym_with_clause, 10, .production_id = 103), SHIFT(90), - [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 83), REDUCE(sym_with_clause, 10, .production_id = 103), - [1030] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 83), REDUCE(sym_with_clause, 10, .production_id = 103), SHIFT(1811), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 83), REDUCE(sym_with_clause, 10, .production_id = 103), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 53), SHIFT(775), - [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 53), SHIFT(527), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 53), SHIFT(2071), - [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 53), SHIFT(2070), - [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 53), SHIFT(90), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 53), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 53), SHIFT(1811), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 53), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(67), - [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(527), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(2071), - [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(2070), - [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(90), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(1811), - [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 54), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 82), SHIFT(775), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 82), SHIFT(527), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 82), SHIFT(2071), - [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 82), SHIFT(2070), - [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 82), SHIFT(90), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 82), - [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 82), SHIFT(1811), - [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 82), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 70), SHIFT(775), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 70), SHIFT(527), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 70), SHIFT(2071), - [1128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 70), SHIFT(2070), - [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 70), SHIFT(90), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 70), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 70), SHIFT(1811), - [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 70), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(775), - [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(527), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(2071), - [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(2070), - [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(90), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), - [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(1811), - [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 39), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [1169] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(60), - [1173] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(527), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [1179] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(2071), - [1183] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(2070), - [1187] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(90), - [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), REDUCE(sym_with_clause, 4, .production_id = 53), - [1194] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 39), REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(1811), - [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 39), REDUCE(sym_with_clause, 4, .production_id = 53), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 103), SHIFT(775), - [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 103), SHIFT(527), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 103), SHIFT(2071), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 103), SHIFT(2070), - [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 103), SHIFT(90), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 103), - [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 103), SHIFT(1811), - [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 103), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(64), - [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(527), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(2071), - [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(2070), - [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(90), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), - [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(1811), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 54), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [1255] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), REDUCE(sym_with_clause, 9, .production_id = 103), SHIFT(26), - [1259] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), REDUCE(sym_with_clause, 9, .production_id = 103), SHIFT(527), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [1265] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), REDUCE(sym_with_clause, 9, .production_id = 103), SHIFT(2071), - [1269] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), REDUCE(sym_with_clause, 9, .production_id = 103), SHIFT(2070), - [1273] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), REDUCE(sym_with_clause, 9, .production_id = 103), SHIFT(90), - [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), REDUCE(sym_with_clause, 9, .production_id = 103), - [1280] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 83), REDUCE(sym_with_clause, 9, .production_id = 103), SHIFT(1811), - [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 83), REDUCE(sym_with_clause, 9, .production_id = 103), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(775), - [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(527), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(2071), - [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(2070), - [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(90), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), - [1308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(1811), - [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 83), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 82), SHIFT(29), - [1318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 82), SHIFT(527), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 82), SHIFT(2071), - [1326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 82), SHIFT(2070), - [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 82), SHIFT(90), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 82), - [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 82), SHIFT(1811), - [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 82), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [1341] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 64), REDUCE(sym_with_clause, 9, .production_id = 82), SHIFT(775), - [1345] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 64), REDUCE(sym_with_clause, 9, .production_id = 82), SHIFT(527), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [1351] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 64), REDUCE(sym_with_clause, 9, .production_id = 82), SHIFT(2071), - [1355] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 64), REDUCE(sym_with_clause, 9, .production_id = 82), SHIFT(2070), - [1359] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 64), REDUCE(sym_with_clause, 9, .production_id = 82), SHIFT(90), - [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 64), REDUCE(sym_with_clause, 9, .production_id = 82), - [1366] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 64), REDUCE(sym_with_clause, 9, .production_id = 82), SHIFT(1811), - [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 64), REDUCE(sym_with_clause, 9, .production_id = 82), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(62), - [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(527), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(2071), - [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(2070), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(90), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), - [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(1811), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 83), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [1401] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), REDUCE(sym_with_clause, 6, .production_id = 70), SHIFT(775), - [1405] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), REDUCE(sym_with_clause, 6, .production_id = 70), SHIFT(527), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [1411] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), REDUCE(sym_with_clause, 6, .production_id = 70), SHIFT(2071), - [1415] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), REDUCE(sym_with_clause, 6, .production_id = 70), SHIFT(2070), - [1419] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), REDUCE(sym_with_clause, 6, .production_id = 70), SHIFT(90), - [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), REDUCE(sym_with_clause, 6, .production_id = 70), - [1426] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 54), REDUCE(sym_with_clause, 6, .production_id = 70), SHIFT(1811), - [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 54), REDUCE(sym_with_clause, 6, .production_id = 70), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(226), - [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(649), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(2071), - [1458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(2070), - [1461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(83), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 1), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 1), SHIFT(1224), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 1), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 70), SHIFT(30), - [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 70), SHIFT(527), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 70), SHIFT(2071), - [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 70), SHIFT(2070), - [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 70), SHIFT(90), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 70), - [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 70), SHIFT(1811), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 70), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [1521] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), REDUCE(sym_with_clause, 8, .production_id = 70), SHIFT(775), - [1525] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), REDUCE(sym_with_clause, 8, .production_id = 70), SHIFT(527), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [1531] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), REDUCE(sym_with_clause, 8, .production_id = 70), SHIFT(2071), - [1535] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), REDUCE(sym_with_clause, 8, .production_id = 70), SHIFT(2070), - [1539] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), REDUCE(sym_with_clause, 8, .production_id = 70), SHIFT(90), - [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), REDUCE(sym_with_clause, 8, .production_id = 70), - [1546] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 54), REDUCE(sym_with_clause, 8, .production_id = 70), SHIFT(1811), - [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 54), REDUCE(sym_with_clause, 8, .production_id = 70), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 70), SHIFT(63), - [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 70), SHIFT(527), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 70), SHIFT(2071), - [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 70), SHIFT(2070), - [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 70), SHIFT(90), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 70), - [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 70), SHIFT(1811), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 70), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 53), SHIFT(775), - [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 53), SHIFT(527), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 53), SHIFT(2071), - [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 53), SHIFT(2070), - [1595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 53), SHIFT(90), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 53), - [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 53), SHIFT(1811), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 53), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(363), - [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(649), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(2071), - [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(2070), - [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(83), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3), - [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 3), SHIFT(1224), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(775), - [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(527), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(2071), - [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(2070), - [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(90), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), - [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(1811), - [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 39), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 64), SHIFT(775), - [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 64), SHIFT(527), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 64), SHIFT(2071), - [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 64), SHIFT(2070), - [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 64), SHIFT(90), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 64), - [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 64), SHIFT(1811), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 64), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), SHIFT(48), - [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), SHIFT(527), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), SHIFT(2071), - [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), SHIFT(2070), - [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), SHIFT(90), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), - [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 64), SHIFT(1811), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 64), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [1711] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), REDUCE(sym_with_clause, 8, .production_id = 103), SHIFT(775), - [1715] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), REDUCE(sym_with_clause, 8, .production_id = 103), SHIFT(527), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [1721] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), REDUCE(sym_with_clause, 8, .production_id = 103), SHIFT(2071), - [1725] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), REDUCE(sym_with_clause, 8, .production_id = 103), SHIFT(2070), - [1729] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), REDUCE(sym_with_clause, 8, .production_id = 103), SHIFT(90), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), REDUCE(sym_with_clause, 8, .production_id = 103), - [1736] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 83), REDUCE(sym_with_clause, 8, .production_id = 103), SHIFT(1811), - [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 83), REDUCE(sym_with_clause, 8, .production_id = 103), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(36), - [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(527), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(2071), - [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(2070), - [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(90), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), - [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(1811), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 83), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [1771] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 64), REDUCE(sym_with_clause, 6, .production_id = 82), SHIFT(22), - [1775] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 64), REDUCE(sym_with_clause, 6, .production_id = 82), SHIFT(527), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [1781] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 64), REDUCE(sym_with_clause, 6, .production_id = 82), SHIFT(2071), - [1785] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 64), REDUCE(sym_with_clause, 6, .production_id = 82), SHIFT(2070), - [1789] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 64), REDUCE(sym_with_clause, 6, .production_id = 82), SHIFT(90), - [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 64), REDUCE(sym_with_clause, 6, .production_id = 82), - [1796] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 64), REDUCE(sym_with_clause, 6, .production_id = 82), SHIFT(1811), - [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 64), REDUCE(sym_with_clause, 6, .production_id = 82), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 82), SHIFT(775), - [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 82), SHIFT(527), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 82), SHIFT(2071), - [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 82), SHIFT(2070), - [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 82), SHIFT(90), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 82), - [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 82), SHIFT(1811), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 82), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [1831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 64), SHIFT(56), - [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 64), SHIFT(527), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 64), SHIFT(2071), - [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 64), SHIFT(2070), - [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 64), SHIFT(90), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 64), - [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 64), SHIFT(1811), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 64), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [1857] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 64), REDUCE(sym_with_clause, 8, .production_id = 82), SHIFT(38), - [1861] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 64), REDUCE(sym_with_clause, 8, .production_id = 82), SHIFT(527), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [1867] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 64), REDUCE(sym_with_clause, 8, .production_id = 82), SHIFT(2071), - [1871] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 64), REDUCE(sym_with_clause, 8, .production_id = 82), SHIFT(2070), - [1875] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 64), REDUCE(sym_with_clause, 8, .production_id = 82), SHIFT(90), - [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 64), REDUCE(sym_with_clause, 8, .production_id = 82), - [1882] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 64), REDUCE(sym_with_clause, 8, .production_id = 82), SHIFT(1811), - [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 64), REDUCE(sym_with_clause, 8, .production_id = 82), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 64), SHIFT(775), - [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 64), SHIFT(527), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 64), SHIFT(2071), - [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 64), SHIFT(2070), - [1905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 64), SHIFT(90), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 64), - [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 64), SHIFT(1811), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 64), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 82), SHIFT(53), - [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 82), SHIFT(527), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 82), SHIFT(2071), - [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 82), SHIFT(2070), - [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 82), SHIFT(90), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 82), - [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 82), SHIFT(1811), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 82), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(31), - [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(527), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(2071), - [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(2070), - [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(90), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), - [1962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(1811), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 39), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(47), - [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(527), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(2071), - [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(2070), - [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(90), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), - [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(1811), - [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 39), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [1995] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(775), - [1999] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(527), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [2005] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(2071), - [2009] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(2070), - [2013] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(90), - [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), REDUCE(sym_with_clause, 5, .production_id = 53), - [2020] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 39), REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(1811), - [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 39), REDUCE(sym_with_clause, 5, .production_id = 53), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(27), - [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(527), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(2071), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(2070), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(90), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 53), - [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(1811), - [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 53), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(775), - [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(527), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(2071), - [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(2070), - [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(90), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), - [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(1811), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 83), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [2081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 70), SHIFT(775), - [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 70), SHIFT(527), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 70), SHIFT(2071), - [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 70), SHIFT(2070), - [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 70), SHIFT(90), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 70), - [2100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 70), SHIFT(1811), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 70), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(775), - [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(527), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(2071), - [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(2070), - [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(90), - [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), - [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(1811), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 54), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [2133] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), REDUCE(sym_with_clause, 5, .production_id = 70), SHIFT(40), - [2137] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), REDUCE(sym_with_clause, 5, .production_id = 70), SHIFT(527), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [2143] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), REDUCE(sym_with_clause, 5, .production_id = 70), SHIFT(2071), - [2147] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), REDUCE(sym_with_clause, 5, .production_id = 70), SHIFT(2070), - [2151] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), REDUCE(sym_with_clause, 5, .production_id = 70), SHIFT(90), - [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), REDUCE(sym_with_clause, 5, .production_id = 70), - [2158] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 54), REDUCE(sym_with_clause, 5, .production_id = 70), SHIFT(1811), - [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 54), REDUCE(sym_with_clause, 5, .production_id = 70), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [2167] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), REDUCE(sym_with_clause, 7, .production_id = 70), SHIFT(43), - [2171] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), REDUCE(sym_with_clause, 7, .production_id = 70), SHIFT(527), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [2177] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), REDUCE(sym_with_clause, 7, .production_id = 70), SHIFT(2071), - [2181] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), REDUCE(sym_with_clause, 7, .production_id = 70), SHIFT(2070), - [2185] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), REDUCE(sym_with_clause, 7, .production_id = 70), SHIFT(90), - [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), REDUCE(sym_with_clause, 7, .production_id = 70), - [2192] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 54), REDUCE(sym_with_clause, 7, .production_id = 70), SHIFT(1811), - [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 54), REDUCE(sym_with_clause, 7, .production_id = 70), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(775), - [2204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(527), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(2071), - [2212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(2070), - [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(90), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), - [2220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(1811), - [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 54), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 53), SHIFT(45), - [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 53), SHIFT(527), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 53), SHIFT(2071), - [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 53), SHIFT(2070), - [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 53), SHIFT(90), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 53), - [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 53), SHIFT(1811), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 53), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [2253] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), REDUCE(sym_with_clause, 7, .production_id = 53), SHIFT(775), - [2257] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), REDUCE(sym_with_clause, 7, .production_id = 53), SHIFT(527), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [2263] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), REDUCE(sym_with_clause, 7, .production_id = 53), SHIFT(2071), - [2267] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), REDUCE(sym_with_clause, 7, .production_id = 53), SHIFT(2070), - [2271] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), REDUCE(sym_with_clause, 7, .production_id = 53), SHIFT(90), - [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), REDUCE(sym_with_clause, 7, .production_id = 53), - [2278] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 39), REDUCE(sym_with_clause, 7, .production_id = 53), SHIFT(1811), - [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 39), REDUCE(sym_with_clause, 7, .production_id = 53), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [2287] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), REDUCE(sym_with_clause, 7, .production_id = 103), SHIFT(50), - [2291] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), REDUCE(sym_with_clause, 7, .production_id = 103), SHIFT(527), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [2297] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), REDUCE(sym_with_clause, 7, .production_id = 103), SHIFT(2071), - [2301] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), REDUCE(sym_with_clause, 7, .production_id = 103), SHIFT(2070), - [2305] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), REDUCE(sym_with_clause, 7, .production_id = 103), SHIFT(90), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), REDUCE(sym_with_clause, 7, .production_id = 103), - [2312] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 83), REDUCE(sym_with_clause, 7, .production_id = 103), SHIFT(1811), - [2316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 83), REDUCE(sym_with_clause, 7, .production_id = 103), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(93), - [2520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(649), - [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(759), - [2526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1653), - [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1583), - [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3343), - [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3343), - [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3239), - [2541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1620), - [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2071), - [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2070), - [2550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(86), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), - [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2311), - [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3272), - [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3292), - [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(750), - [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(744), - [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(743), - [2573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(742), - [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(741), - [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1619), - [2582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3392), - [2585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1653), - [2588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(736), - [2591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2985), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), - [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(99), - [2615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(649), - [2618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(759), - [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1664), - [2624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1583), - [2627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3343), - [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3343), - [2633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3239), - [2636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1620), - [2639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2071), - [2642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2070), - [2645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(86), - [2648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2311), - [2651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3272), - [2654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3292), - [2657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(750), - [2660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(744), - [2663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(743), - [2666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(742), - [2669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(741), - [2672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1619), - [2675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3392), - [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1664), - [2681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(736), - [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2985), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1, .production_id = 1), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [5459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [5539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(773), - [5542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(468), - [5545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), - [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 3, .production_id = 39), - [5549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 3, .production_id = 39), - [5551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(775), - [5554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(527), - [5557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), SHIFT_REPEAT(774), - [5560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), SHIFT_REPEAT(527), - [5563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), - [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), - [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 1), - [5569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 1), - [5571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), SHIFT_REPEAT(777), - [5574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), SHIFT_REPEAT(527), - [5577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), - [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), - [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_num_lit, 1), - [5583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_num_lit, 1), - [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [5587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 111), - [5589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 111), - [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 10, .production_id = 123), - [5593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 10, .production_id = 123), - [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 2), - [5597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 2), - [5599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 2, .production_id = 7), - [5601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 2, .production_id = 7), - [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 1, .production_id = 6), - [5605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 1, .production_id = 6), - [5607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 1, .production_id = 5), - [5609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 1, .production_id = 5), - [5611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 1), - [5613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 1), - [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 1), - [5621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 1), - [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 1), - [5625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 1), - [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [5629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 2, .production_id = 9), - [5631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 2, .production_id = 9), - [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_num_lit, 2), - [5635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_num_lit, 2), - [5637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_symbol, 1), - [5639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_symbol, 1), - [5641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_lit, 2), - [5643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_lit, 2), - [5645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 2), - [5647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 2), - [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 2, .production_id = 11), - [5651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 2, .production_id = 11), - [5653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 2, .production_id = 13), - [5655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 2, .production_id = 13), - [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 13), - [5659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 13), - [5661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), - [5663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), - [5665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), - [5667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), - [5669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), - [5671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), - [5673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), - [5675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), - [5677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), - [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), - [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_lit, 2, .production_id = 14), - [5683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_lit, 2, .production_id = 14), - [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 2, .production_id = 16), - [5687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 2, .production_id = 16), - [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 2, .production_id = 17), - [5691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 2, .production_id = 17), - [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 3, .production_id = 19), - [5695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 3, .production_id = 19), - [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 3, .production_id = 21), - [5699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 3, .production_id = 21), - [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), - [5703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), - [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 3, .production_id = 9), - [5707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 3, .production_id = 9), - [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 3), - [5711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 3), - [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 3, .production_id = 25), - [5715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 3, .production_id = 25), - [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 3, .production_id = 25), - [5719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 3, .production_id = 25), - [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 3, .production_id = 27), - [5723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 3, .production_id = 27), - [5725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 29), - [5727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 29), - [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 29), - [5731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 29), - [5733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 19), - [5735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 19), - [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 19), - [5739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 19), - [5741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 19), - [5743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 19), - [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 19), - [5747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 19), - [5749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 3, .production_id = 19), - [5751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 3, .production_id = 19), - [5753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 3, .production_id = 30), - [5755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 3, .production_id = 30), - [5757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 3, .production_id = 31), - [5759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 3, .production_id = 31), - [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 32), - [5763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 32), - [5765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 32), - [5767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 32), - [5769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 33), - [5771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 33), - [5773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 33), - [5775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 33), - [5777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 33), - [5779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 33), - [5781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 4, .production_id = 34), - [5783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 4, .production_id = 34), - [5785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 4, .production_id = 35), - [5787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 4, .production_id = 35), - [5789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 4), - [5791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 4), - [5793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 4, .production_id = 40), - [5795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 4, .production_id = 40), - [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 40), - [5799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 40), - [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 43), - [5803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 43), - [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 44), - [5807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 44), - [5809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 45), - [5811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 45), - [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 4, .production_id = 46), - [5815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 4, .production_id = 46), - [5817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 46), - [5819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 46), - [5821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 47), - [5823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 47), - [5825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 4, .production_id = 47), - [5827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 4, .production_id = 47), - [5829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 47), - [5831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 47), - [5833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 48), - [5835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 48), - [5837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 5, .production_id = 50), - [5839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 5, .production_id = 50), - [5841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 50), - [5843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 50), - [5845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 55), - [5847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 55), - [5849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 59), - [5851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 59), - [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 5, .production_id = 60), - [5855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 5, .production_id = 60), - [5857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 61), - [5859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 61), - [5861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 62), - [5863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 62), - [5865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 6, .production_id = 63), - [5867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 6, .production_id = 63), - [5869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 6, .production_id = 71), - [5871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 6, .production_id = 71), - [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 60), - [5875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 60), - [5877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 76), - [5879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 76), - [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 77), - [5883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 77), - [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 6, .production_id = 78), - [5887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 6, .production_id = 78), - [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 79), - [5891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 79), - [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 7, .production_id = 90), - [5895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 7, .production_id = 90), - [5897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 76), - [5899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 76), - [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 77), - [5903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 77), - [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 94), - [5907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 94), - [5909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 95), - [5911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 95), - [5913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 79), - [5915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 79), - [5917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 96), - [5919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 96), - [5921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 97), - [5923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 97), - [5925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 94), - [5927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 94), - [5929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 95), - [5931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 95), - [5933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 110), - [5935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 110), - [5937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 96), - [5939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 96), - [5941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 97), - [5943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 97), - [5945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 111), - [5947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 111), - [5949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 112), - [5951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 112), - [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 110), - [5955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 110), - [5957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 112), - [5959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 112), - [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 123), - [5963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 123), - [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_lit, 2), - [5967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_lit, 2), - [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [5973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1025), - [5976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(225), - [5979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 85), SHIFT(2072), - [5982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 85), SHIFT(568), - [5985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 85), - [5987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 85), SHIFT(3374), - [5990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 85), - [5992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), SHIFT(2072), - [5995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), SHIFT(568), - [5998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), - [6000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), SHIFT(3374), - [6003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3, .production_id = 51), - [6005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 65), SHIFT(2072), - [6008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 65), SHIFT(568), - [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 65), - [6013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 65), SHIFT(3374), - [6016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 65), - [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 66), SHIFT(2072), - [6021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 66), SHIFT(568), - [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 66), - [6026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 66), SHIFT(3374), - [6029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 66), - [6031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 80), SHIFT(2072), - [6034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 80), SHIFT(568), - [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 80), - [6039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 80), SHIFT(3374), - [6042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 80), - [6044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 84), SHIFT(2072), - [6047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 84), SHIFT(568), - [6050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 84), - [6052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 84), SHIFT(3374), - [6055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 84), - [6057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2072), - [6060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(568), - [6063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), - [6065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3374), - [6068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1806), - [6071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1806), - [6074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), - [6076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 124), SHIFT(2072), - [6079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 124), SHIFT(568), - [6082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 124), - [6084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 124), SHIFT(3374), - [6087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 8, .production_id = 124), - [6089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 98), SHIFT(2072), - [6092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 98), SHIFT(568), - [6095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 98), - [6097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 98), SHIFT(3374), - [6100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 98), - [6102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 99), SHIFT(2072), - [6105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 99), SHIFT(568), - [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 99), - [6110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 99), SHIFT(3374), - [6113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 99), - [6115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 113), SHIFT(2072), - [6118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 113), SHIFT(568), - [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 113), - [6123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 113), SHIFT(3374), - [6126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, .production_id = 113), - [6128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 114), SHIFT(2072), - [6131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 114), SHIFT(568), - [6134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 114), - [6136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 114), SHIFT(3374), - [6139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, .production_id = 114), - [6141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 104), SHIFT(2072), - [6144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 104), SHIFT(568), - [6147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 104), - [6149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 104), SHIFT(3374), - [6152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 104), - [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [6368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(1245), - [6371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(719), - [6374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2062), - [6377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2066), - [6380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(90), - [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), - [6385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(3360), - [6388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(1803), - [6391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(459), - [6394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(41), - [6397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(457), - [6400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(139), - [6403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(456), - [6406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(455), - [6409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(449), - [6412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2019), - [6415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(447), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 3, .production_id = 54), - [6428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 3, .production_id = 54), - [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 1, .production_id = 1), - [6432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 1, .production_id = 1), - [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 4, .production_id = 64), - [6436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 4, .production_id = 64), - [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 2, .production_id = 39), - [6440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 2, .production_id = 39), - [6442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), - [6444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [6556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1652), - [6559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(649), - [6562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 12), - [6564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 12), - [6566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 75), - [6568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 75), - [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [6586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 1, .production_id = 1), - [6588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 1, .production_id = 1), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [6594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 2, .production_id = 26), - [6596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 2, .production_id = 26), - [6598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 41), - [6600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 41), - [6602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 42), - [6604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 42), - [6606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 56), - [6608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 56), - [6610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 57), - [6612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 57), - [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 58), - [6616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 58), - [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 72), - [6620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 72), - [6622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 73), - [6624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 73), - [6626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 74), - [6628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 74), - [6630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 91), - [6632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 91), - [6634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 92), - [6636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 92), - [6638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 93), - [6640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 93), - [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 7, .production_id = 109), - [6644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 7, .production_id = 109), - [6646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 3), - [6648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 3), - [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 1), - [6652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 1), - [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 1), - [6656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 1), - [6658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 3), - [6660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 3), - [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 3), - [6664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 3), - [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 1), - [6668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 1), - [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [6674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(2679), - [6677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(439), - [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), - [6682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(3358), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [6687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 54), SHIFT(2712), - [6690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 54), SHIFT(439), - [6693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 54), - [6695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 54), SHIFT(3377), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [6710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_prefix_parameters, 1), - [6712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_prefix_parameters, 1), - [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), - [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [6732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 5, .production_id = 83), - [6734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 115), - [6736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), - [6738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, .production_id = 131), - [6740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), REDUCE(sym_with_clause, 7, .production_id = 122), - [6743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 117), REDUCE(sym_with_clause, 7, .production_id = 118), - [6746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 133), - [6748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, .production_id = 105), - [6750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 3, .production_id = 54), - [6752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 54), - [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 3, .production_id = 54), - [6756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 3, .production_id = 54), - [6758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 52), - [6760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 119), REDUCE(sym_with_clause, 7, .production_id = 120), - [6763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), REDUCE(sym_with_clause, 8, .production_id = 128), - [6766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 108), - [6769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), - [6771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, .production_id = 107), - [6773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3), - [6775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, .production_id = 119), - [6777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 4, .production_id = 64), - [6779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 4, .production_id = 64), - [6781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 64), - [6783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 4, .production_id = 64), - [6785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, .production_id = 129), - [6787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 132), - [6789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 131), REDUCE(sym_with_clause, 8, .production_id = 132), - [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), - [6794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 119), - [6796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 67), - [6798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 120), - [6800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 131), - [6802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, .production_id = 121), - [6804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 67), REDUCE(sym_with_clause, 4, .production_id = 68), - [6807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 139), - [6809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 69), - [6811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 138), REDUCE(sym_with_clause, 9, .production_id = 139), - [6814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 2, .production_id = 39), - [6816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2, .production_id = 39), - [6818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 2, .production_id = 39), - [6820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 2, .production_id = 39), - [6822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 137), - [6824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 4, .production_id = 67), - [6826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), - [6828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 117), - [6830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 115), REDUCE(sym_with_clause, 7, .production_id = 116), - [6833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 136), - [6835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 135), REDUCE(sym_with_clause, 9, .production_id = 136), - [6838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), - [6840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 135), - [6842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), REDUCE(sym_with_clause, 8, .production_id = 130), - [6845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 140), REDUCE(sym_with_clause, 10, .production_id = 141), - [6848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 134), - [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 9, .production_id = 138), - [6852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 141), - [6854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), REDUCE(sym_with_clause, 6, .production_id = 106), - [6857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), - [6859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 81), - [6861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 5, .production_id = 83), - [6863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 5, .production_id = 83), - [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 125), - [6867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 125), REDUCE(sym_with_clause, 8, .production_id = 126), - [6870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_clause, 1), - [6872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 1), - [6874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 126), - [6876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 5, .production_id = 83), - [6878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 142), - [6880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 102), - [6882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 86), - [6884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 100), REDUCE(sym_with_clause, 6, .production_id = 101), - [6887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 86), REDUCE(sym_with_clause, 5, .production_id = 87), - [6890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 88), - [6892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 88), REDUCE(sym_with_clause, 5, .production_id = 89), - [6895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, .production_id = 86), - [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, .production_id = 88), - [6899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 142), REDUCE(sym_with_clause, 10, .production_id = 143), - [6902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 143), - [6904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 144), - [6906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 145), - [6908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 146), REDUCE(sym_with_clause, 11, .production_id = 147), - [6911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 100), - [6913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 147), - [6915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 148), - [6917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 133), REDUCE(sym_with_clause, 9, .production_id = 134), - [6920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [6928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 1), - [6930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 2), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [6968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2073), - [6971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(568), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [7250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), - [7252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [7256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), - [7258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [7262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2151), - [7265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(261), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [7270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), - [7272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [7276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), - [7278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [7302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 2, .production_id = 10), - [7304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 2, .production_id = 10), - [7306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 3, .production_id = 27), - [7308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 3, .production_id = 27), - [7310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 1, .production_id = 5), - [7312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 1, .production_id = 5), - [7314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 2, .production_id = 10), - [7316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 2, .production_id = 10), - [7318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), - [7320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2071), - [7323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2070), - [7326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 2, .production_id = 11), - [7332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 2, .production_id = 11), - [7334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 3, .production_id = 24), - [7336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 3, .production_id = 24), - [7338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 2, .production_id = 16), - [7340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 2, .production_id = 16), - [7342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 3, .production_id = 24), - [7344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 3, .production_id = 24), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [7372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 1, .production_id = 2), - [7374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 1, .production_id = 2), - [7376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2198), - [7379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(540), - [7382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2199), - [7385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(705), - [7388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 1), - [7390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 1), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [7396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 2), - [7398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 2), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [7404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 1, .production_id = 23), - [7406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 1, .production_id = 23), - [7408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2264), - [7411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(342), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [7422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2062), - [7425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2066), - [7428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_dimension, 1), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [7470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(2262), - [7473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), - [7475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(3381), - [7478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(2376), - [7481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), - [7483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2379), - [7486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(539), - [7489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2399), - [7492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(439), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [8733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [9057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [9175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [9349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), - [9351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), SHIFT_REPEAT(3281), - [9354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), SHIFT_REPEAT(1528), - [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [9377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sym_lit_without_slash, 1, .production_id = 36), - [9379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sym_lit_without_slash, 1, .production_id = 36), - [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [9383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), - [9385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), - [9387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), SHIFT_REPEAT(3309), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [9416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 1), - [9418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1), - [9420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1), - [9422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3), - [9424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2), - [9426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3, .production_id = 49), - [9428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), - [9430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), - [9432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, .production_id = 37), - [9434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), - [9436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, .production_id = 38), - [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [9440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [9444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), SHIFT_REPEAT(3321), - [9447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), - [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [9453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [9455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [9457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [9459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [9465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [9469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [9471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [9531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_lit_without_slash, 3, .production_id = 30), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [9535] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [9547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [59] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(829), + [62] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(786), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [79] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(2301), + [82] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(2292), + [85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(146), + [88] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), + [90] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [92] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [94] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [96] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(962), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 54), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [121] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), REDUCE(sym_with_clause, 5, .production_id = 69), SHIFT(829), + [125] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), REDUCE(sym_with_clause, 5, .production_id = 69), SHIFT(786), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [143] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), REDUCE(sym_with_clause, 5, .production_id = 69), SHIFT(2301), + [147] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), REDUCE(sym_with_clause, 5, .production_id = 69), SHIFT(2292), + [151] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), REDUCE(sym_with_clause, 5, .production_id = 69), SHIFT(144), + [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), REDUCE(sym_with_clause, 5, .production_id = 69), + [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [174] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 67), REDUCE(sym_with_clause, 5, .production_id = 69), SHIFT(2133), + [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 67), REDUCE(sym_with_clause, 5, .production_id = 69), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [191] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), REDUCE(sym_with_clause, 6, .production_id = 107), SHIFT(18), + [195] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), REDUCE(sym_with_clause, 6, .production_id = 107), SHIFT(786), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [201] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), REDUCE(sym_with_clause, 6, .production_id = 107), SHIFT(2301), + [205] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), REDUCE(sym_with_clause, 6, .production_id = 107), SHIFT(2292), + [209] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), REDUCE(sym_with_clause, 6, .production_id = 107), SHIFT(144), + [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), REDUCE(sym_with_clause, 6, .production_id = 107), + [216] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 106), REDUCE(sym_with_clause, 6, .production_id = 107), SHIFT(2188), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 106), REDUCE(sym_with_clause, 6, .production_id = 107), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), SHIFT(829), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), SHIFT(786), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), SHIFT(2301), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), SHIFT(2292), + [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), SHIFT(146), + [244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 84), SHIFT(902), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 84), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [255] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 90), REDUCE(sym_with_clause, 5, .production_id = 92), SHIFT(13), + [259] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 90), REDUCE(sym_with_clause, 5, .production_id = 92), SHIFT(786), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [265] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 90), REDUCE(sym_with_clause, 5, .production_id = 92), SHIFT(2301), + [269] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 90), REDUCE(sym_with_clause, 5, .production_id = 92), SHIFT(2292), + [273] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 90), REDUCE(sym_with_clause, 5, .production_id = 92), SHIFT(144), + [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 90), REDUCE(sym_with_clause, 5, .production_id = 92), + [280] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 90), REDUCE(sym_with_clause, 5, .production_id = 92), SHIFT(2125), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 90), REDUCE(sym_with_clause, 5, .production_id = 92), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [291] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 82), REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(829), + [295] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 82), REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(786), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [301] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 82), REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(2301), + [305] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 82), REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(2292), + [309] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 82), REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(144), + [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 82), REDUCE(sym_with_clause, 6, .production_id = 83), + [316] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 82), REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(2123), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 82), REDUCE(sym_with_clause, 6, .production_id = 83), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [327] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(829), + [331] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(786), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [337] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(2301), + [341] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(2292), + [345] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(144), + [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 71), + [352] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(2129), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 71), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [363] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(8), + [367] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(786), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [373] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(2301), + [377] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(2292), + [381] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(144), + [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 71), + [388] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(2143), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 71), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), SHIFT(5), + [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), SHIFT(786), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), SHIFT(2301), + [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), SHIFT(2292), + [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), SHIFT(146), + [416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 84), SHIFT(960), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 84), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), SHIFT(829), + [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), SHIFT(786), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), SHIFT(2301), + [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), SHIFT(2292), + [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), SHIFT(146), + [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 64), SHIFT(906), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 64), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [455] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 82), REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(7), + [459] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 82), REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(786), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [465] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 82), REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(2301), + [469] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 82), REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(2292), + [473] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 82), REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(144), + [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 82), REDUCE(sym_with_clause, 5, .production_id = 83), + [480] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 82), REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(2139), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 82), REDUCE(sym_with_clause, 5, .production_id = 83), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [491] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 90), REDUCE(sym_with_clause, 6, .production_id = 92), SHIFT(829), + [495] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 90), REDUCE(sym_with_clause, 6, .production_id = 92), SHIFT(786), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [501] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 90), REDUCE(sym_with_clause, 6, .production_id = 92), SHIFT(2301), + [505] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 90), REDUCE(sym_with_clause, 6, .production_id = 92), SHIFT(2292), + [509] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 90), REDUCE(sym_with_clause, 6, .production_id = 92), SHIFT(144), + [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 90), REDUCE(sym_with_clause, 6, .production_id = 92), + [516] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 90), REDUCE(sym_with_clause, 6, .production_id = 92), SHIFT(2132), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 90), REDUCE(sym_with_clause, 6, .production_id = 92), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [527] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 67), REDUCE(sym_with_clause, 4, .production_id = 69), SHIFT(3), + [531] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 67), REDUCE(sym_with_clause, 4, .production_id = 69), SHIFT(786), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [537] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 67), REDUCE(sym_with_clause, 4, .production_id = 69), SHIFT(2301), + [541] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 67), REDUCE(sym_with_clause, 4, .production_id = 69), SHIFT(2292), + [545] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 67), REDUCE(sym_with_clause, 4, .production_id = 69), SHIFT(144), + [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 67), REDUCE(sym_with_clause, 4, .production_id = 69), + [552] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 67), REDUCE(sym_with_clause, 4, .production_id = 69), SHIFT(2162), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 67), REDUCE(sym_with_clause, 4, .production_id = 69), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [563] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 103), REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(17), + [567] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 103), REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(786), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [573] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 103), REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(2301), + [577] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 103), REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(2292), + [581] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 103), REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(144), + [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 103), REDUCE(sym_with_clause, 6, .production_id = 105), + [588] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 103), REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(2141), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 103), REDUCE(sym_with_clause, 6, .production_id = 105), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(2), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(786), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(2301), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(2292), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(146), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), + [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(965), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 54), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [627] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 103), REDUCE(sym_with_clause, 7, .production_id = 105), SHIFT(829), + [631] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 103), REDUCE(sym_with_clause, 7, .production_id = 105), SHIFT(786), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [637] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 103), REDUCE(sym_with_clause, 7, .production_id = 105), SHIFT(2301), + [641] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 103), REDUCE(sym_with_clause, 7, .production_id = 105), SHIFT(2292), + [645] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 103), REDUCE(sym_with_clause, 7, .production_id = 105), SHIFT(144), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 103), REDUCE(sym_with_clause, 7, .production_id = 105), + [652] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 103), REDUCE(sym_with_clause, 7, .production_id = 105), SHIFT(2134), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 103), REDUCE(sym_with_clause, 7, .production_id = 105), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [663] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), REDUCE(sym_with_clause, 7, .production_id = 107), SHIFT(829), + [667] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), REDUCE(sym_with_clause, 7, .production_id = 107), SHIFT(786), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [673] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), REDUCE(sym_with_clause, 7, .production_id = 107), SHIFT(2301), + [677] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), REDUCE(sym_with_clause, 7, .production_id = 107), SHIFT(2292), + [681] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), REDUCE(sym_with_clause, 7, .production_id = 107), SHIFT(144), + [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), REDUCE(sym_with_clause, 7, .production_id = 107), + [688] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 106), REDUCE(sym_with_clause, 7, .production_id = 107), SHIFT(2136), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 106), REDUCE(sym_with_clause, 7, .production_id = 107), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [699] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(829), + [703] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(786), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [709] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(2301), + [713] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(2292), + [717] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(144), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), REDUCE(sym_with_clause, 4, .production_id = 53), + [724] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 52), REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(2224), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 52), REDUCE(sym_with_clause, 4, .production_id = 53), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [735] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), REDUCE(sym_with_clause, 7, .production_id = 126), SHIFT(26), + [739] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), REDUCE(sym_with_clause, 7, .production_id = 126), SHIFT(786), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [745] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), REDUCE(sym_with_clause, 7, .production_id = 126), SHIFT(2301), + [749] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), REDUCE(sym_with_clause, 7, .production_id = 126), SHIFT(2292), + [753] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), REDUCE(sym_with_clause, 7, .production_id = 126), SHIFT(144), + [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), REDUCE(sym_with_clause, 7, .production_id = 126), + [760] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 124), REDUCE(sym_with_clause, 7, .production_id = 126), SHIFT(2137), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 124), REDUCE(sym_with_clause, 7, .production_id = 126), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 4, .production_id = 64), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 4, .production_id = 64), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [813] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 52), REDUCE(sym_with_clause, 3, .production_id = 53), SHIFT(19), + [817] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 52), REDUCE(sym_with_clause, 3, .production_id = 53), SHIFT(786), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [823] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 52), REDUCE(sym_with_clause, 3, .production_id = 53), SHIFT(2301), + [827] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 52), REDUCE(sym_with_clause, 3, .production_id = 53), SHIFT(2292), + [831] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 52), REDUCE(sym_with_clause, 3, .production_id = 53), SHIFT(144), + [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 52), REDUCE(sym_with_clause, 3, .production_id = 53), + [838] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 52), REDUCE(sym_with_clause, 3, .production_id = 53), SHIFT(2153), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 52), REDUCE(sym_with_clause, 3, .production_id = 53), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(829), + [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(786), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(2301), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(2292), + [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(146), + [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(966), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 39), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 64), SHIFT(11), + [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 64), SHIFT(786), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 64), SHIFT(2301), + [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 64), SHIFT(2292), + [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 64), SHIFT(146), + [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 64), + [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 64), SHIFT(961), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 64), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 2, .production_id = 39), + [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 2, .production_id = 39), + [909] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), REDUCE(sym_with_clause, 8, .production_id = 126), SHIFT(829), + [913] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), REDUCE(sym_with_clause, 8, .production_id = 126), SHIFT(786), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [919] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), REDUCE(sym_with_clause, 8, .production_id = 126), SHIFT(2301), + [923] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), REDUCE(sym_with_clause, 8, .production_id = 126), SHIFT(2292), + [927] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), REDUCE(sym_with_clause, 8, .production_id = 126), SHIFT(144), + [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), REDUCE(sym_with_clause, 8, .production_id = 126), + [934] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 124), REDUCE(sym_with_clause, 8, .production_id = 126), SHIFT(2147), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 124), REDUCE(sym_with_clause, 8, .production_id = 126), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(23), + [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(786), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(2301), + [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(2292), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(146), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(964), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 2, .production_id = 39), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(364), + [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(267), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(818), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(830), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(963), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3583), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3583), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3416), + [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(973), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2301), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2292), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(143), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), + [1011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2537), + [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3419), + [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3440), + [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(490), + [1023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(489), + [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(488), + [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(487), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(485), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(975), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), + [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3629), + [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(830), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(767), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3015), + [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(834), + [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(814), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(2301), + [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(2292), + [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(144), + [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 71), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(1873), + [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 71), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 84), SHIFT(51), + [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 84), SHIFT(814), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 84), SHIFT(2301), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 84), SHIFT(2292), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 84), SHIFT(144), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 84), + [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 84), SHIFT(1873), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 84), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 84), SHIFT(115), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 84), SHIFT(814), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 84), SHIFT(2301), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 84), SHIFT(2292), + [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 84), SHIFT(144), + [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 84), + [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 84), SHIFT(1873), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 84), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 107), SHIFT(834), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 107), SHIFT(814), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 107), SHIFT(2301), + [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 107), SHIFT(2292), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 107), SHIFT(144), + [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 107), + [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 107), SHIFT(1873), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 107), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 107), SHIFT(111), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 84), SHIFT(834), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 105), SHIFT(834), + [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 105), SHIFT(814), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 105), SHIFT(2301), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 105), SHIFT(2292), + [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 105), SHIFT(144), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 105), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 105), SHIFT(1873), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 105), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 105), SHIFT(103), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 64), SHIFT(834), + [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 64), SHIFT(814), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 64), SHIFT(2301), + [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 64), SHIFT(2292), + [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 64), SHIFT(144), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 64), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 64), SHIFT(1873), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 64), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(102), + [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(814), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(2301), + [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(2292), + [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(144), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), + [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(1873), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 83), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 64), SHIFT(834), + [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 64), SHIFT(814), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 64), SHIFT(2301), + [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 64), SHIFT(2292), + [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 64), SHIFT(144), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 64), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 64), SHIFT(1873), + [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 64), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(834), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 92), SHIFT(834), + [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 92), SHIFT(814), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 92), SHIFT(2301), + [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 92), SHIFT(2292), + [1302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 92), SHIFT(144), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 92), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 92), SHIFT(1873), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 92), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 92), SHIFT(96), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), SHIFT(834), + [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), SHIFT(814), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), SHIFT(2301), + [1332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), SHIFT(2292), + [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), SHIFT(144), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), + [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 54), SHIFT(1873), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 54), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(93), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(104), + [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(814), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [1362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(2301), + [1365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(2292), + [1368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(144), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), + [1373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(1873), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 83), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [1380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 69), SHIFT(88), + [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 69), SHIFT(814), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 69), SHIFT(2301), + [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 69), SHIFT(2292), + [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 69), SHIFT(144), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 69), + [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 69), SHIFT(1873), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 69), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(363), + [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(267), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(2301), + [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(2292), + [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(142), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 3), SHIFT(1238), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 69), SHIFT(834), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 53), SHIFT(834), + [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 53), SHIFT(814), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 53), SHIFT(2301), + [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 53), SHIFT(2292), + [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 53), SHIFT(144), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 53), + [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 53), SHIFT(1873), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 53), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [1499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 126), SHIFT(91), + [1502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 126), SHIFT(814), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 126), SHIFT(2301), + [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 126), SHIFT(2292), + [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 126), SHIFT(144), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 126), + [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 126), SHIFT(1873), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 126), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 84), SHIFT(834), + [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 84), SHIFT(814), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 84), SHIFT(2301), + [1536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 84), SHIFT(2292), + [1539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 84), SHIFT(144), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 84), + [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 84), SHIFT(1873), + [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 84), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 126), SHIFT(74), + [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 126), SHIFT(814), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 126), SHIFT(2301), + [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 126), SHIFT(2292), + [1565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 126), SHIFT(144), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 126), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 126), SHIFT(1873), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 126), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 64), SHIFT(98), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 126), SHIFT(834), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), SHIFT(95), + [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), SHIFT(814), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), SHIFT(144), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 84), SHIFT(1873), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 107), SHIFT(834), + [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 107), SHIFT(814), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 107), SHIFT(2301), + [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 107), SHIFT(2292), + [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 107), SHIFT(144), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 107), + [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 107), SHIFT(1873), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 107), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 107), SHIFT(32), + [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 107), SHIFT(814), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 107), SHIFT(2301), + [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 107), SHIFT(2292), + [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 107), SHIFT(144), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 107), + [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 107), SHIFT(1873), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 107), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 107), SHIFT(834), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(80), + [1669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(814), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(144), + [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(1873), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 84), SHIFT(34), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 105), SHIFT(35), + [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 105), SHIFT(814), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 105), SHIFT(2301), + [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 105), SHIFT(2292), + [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 105), SHIFT(144), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 105), + [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 105), SHIFT(1873), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 105), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 105), SHIFT(834), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 64), SHIFT(37), + [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 64), SHIFT(814), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 64), SHIFT(2301), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 64), SHIFT(2292), + [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 64), SHIFT(144), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 64), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 64), SHIFT(1873), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 64), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 105), SHIFT(834), + [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 105), SHIFT(814), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 105), SHIFT(2301), + [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 105), SHIFT(2292), + [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 105), SHIFT(144), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 105), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 105), SHIFT(1873), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 105), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(834), + [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(814), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(2301), + [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(2292), + [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(144), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), + [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(1873), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 83), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(40), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 92), SHIFT(834), + [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 92), SHIFT(814), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 92), SHIFT(2301), + [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 92), SHIFT(2292), + [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 92), SHIFT(144), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 92), + [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 92), SHIFT(1873), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 92), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 64), SHIFT(834), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(834), + [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(814), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(2301), + [1851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(2292), + [1854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(144), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), + [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(1873), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 39), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(386), + [1869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(267), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(2301), + [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(2292), + [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(142), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 1), + [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 1), SHIFT(1238), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 1), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 92), SHIFT(41), + [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 92), SHIFT(814), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [1900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 92), SHIFT(2301), + [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 92), SHIFT(2292), + [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 92), SHIFT(144), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 92), + [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 92), SHIFT(1873), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 92), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 92), SHIFT(834), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(43), + [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(814), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(2301), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(2292), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(144), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), + [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(1873), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 54), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 126), SHIFT(834), + [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 126), SHIFT(814), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 126), SHIFT(2301), + [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 126), SHIFT(2292), + [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 126), SHIFT(144), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 126), + [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 12, .production_id = 126), SHIFT(1873), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 12, .production_id = 126), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(834), + [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(814), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(2301), + [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(2292), + [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(144), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), + [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(1873), + [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 71), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 126), SHIFT(834), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 126), SHIFT(814), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 126), SHIFT(2301), + [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 126), SHIFT(2292), + [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 126), SHIFT(144), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 126), + [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 126), SHIFT(1873), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 126), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(29), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(113), + [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(814), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(2301), + [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(2292), + [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(144), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), + [2055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(1873), + [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 54), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [2062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(834), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(834), + [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(814), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(2301), + [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(2292), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(144), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), + [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(1873), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 39), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 69), SHIFT(834), + [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 69), SHIFT(814), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 69), SHIFT(2301), + [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 69), SHIFT(2292), + [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 69), SHIFT(144), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 69), + [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 69), SHIFT(1873), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 69), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 69), SHIFT(48), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [2128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), SHIFT(834), + [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), SHIFT(814), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), SHIFT(2301), + [2139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), SHIFT(2292), + [2142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), SHIFT(144), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), + [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 39), SHIFT(1873), + [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 39), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 53), SHIFT(49), + [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 53), SHIFT(814), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 53), SHIFT(2301), + [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 53), SHIFT(2292), + [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 53), SHIFT(144), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 53), + [2173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 53), SHIFT(1873), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 53), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 53), SHIFT(834), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 126), SHIFT(76), + [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 126), SHIFT(814), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 126), SHIFT(2301), + [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 126), SHIFT(2292), + [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 126), SHIFT(144), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 126), + [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 126), SHIFT(1873), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 126), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [2213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(121), + [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(814), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(2301), + [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(2292), + [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(144), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 53), + [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 53), SHIFT(1873), + [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 53), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 69), SHIFT(834), + [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 69), SHIFT(814), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 69), SHIFT(2301), + [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 69), SHIFT(2292), + [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 69), SHIFT(144), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 69), + [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 69), SHIFT(1873), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 69), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 53), SHIFT(85), + [2268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 53), SHIFT(814), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 53), SHIFT(2301), + [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 53), SHIFT(2292), + [2279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 53), SHIFT(144), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 53), + [2284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 53), SHIFT(1873), + [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 53), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(124), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [2298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 126), SHIFT(834), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [2305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 53), SHIFT(834), + [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 71), SHIFT(834), + [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 71), SHIFT(814), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 71), SHIFT(2301), + [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 71), SHIFT(2292), + [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 71), SHIFT(144), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 71), + [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 71), SHIFT(1873), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 71), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), SHIFT(58), + [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), SHIFT(814), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), SHIFT(2301), + [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), SHIFT(2292), + [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), SHIFT(144), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), + [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 107), SHIFT(1873), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 107), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 84), SHIFT(834), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 92), SHIFT(834), + [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 92), SHIFT(814), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 92), SHIFT(2301), + [2382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 92), SHIFT(2292), + [2385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 92), SHIFT(144), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 92), + [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 92), SHIFT(1873), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 92), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [2397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), SHIFT(62), + [2400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), SHIFT(814), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), SHIFT(2301), + [2408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), SHIFT(2292), + [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), SHIFT(144), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), + [2416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 105), SHIFT(1873), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 105), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 64), SHIFT(834), + [2426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 64), SHIFT(814), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 64), SHIFT(2301), + [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 64), SHIFT(2292), + [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 64), SHIFT(144), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 64), + [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 64), SHIFT(1873), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 64), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(65), + [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(814), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [2457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(2301), + [2460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(2292), + [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(144), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), + [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(1873), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 83), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 92), SHIFT(67), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(118), + [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(814), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [2490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(144), + [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(1873), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 83), SHIFT(834), + [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 83), SHIFT(814), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 83), SHIFT(2301), + [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 83), SHIFT(2292), + [2512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 83), SHIFT(144), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 83), + [2517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 83), SHIFT(1873), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 83), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 105), SHIFT(834), + [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 105), SHIFT(814), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 105), SHIFT(2301), + [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 105), SHIFT(2292), + [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 105), SHIFT(144), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 105), + [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 105), SHIFT(1873), + [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 105), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [2550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(834), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [2557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 64), SHIFT(68), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(83), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [2571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 126), SHIFT(54), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(119), + [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(814), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(2301), + [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(2292), + [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(144), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), + [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(1873), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 71), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [2604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), SHIFT(39), + [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), SHIFT(814), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), SHIFT(144), + [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 64), SHIFT(1873), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 105), SHIFT(64), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [2627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 107), SHIFT(834), + [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 107), SHIFT(814), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 107), SHIFT(2301), + [2638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 107), SHIFT(2292), + [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 107), SHIFT(144), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 107), + [2646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 107), SHIFT(1873), + [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 107), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [2653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), SHIFT(72), + [2656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), SHIFT(814), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), SHIFT(2301), + [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), SHIFT(2292), + [2667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), SHIFT(144), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), + [2672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 92), SHIFT(1873), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 92), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [2679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(834), + [2682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(814), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(2301), + [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(2292), + [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(144), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), + [2698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(1873), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 54), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 107), SHIFT(56), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 84), SHIFT(834), + [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 84), SHIFT(814), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [2720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 84), SHIFT(2301), + [2723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 84), SHIFT(2292), + [2726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 84), SHIFT(144), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 84), + [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 84), SHIFT(1873), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 84), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [2738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(69), + [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(814), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(2301), + [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(2292), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(144), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), + [2757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(1873), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 39), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(75), + [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(814), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [2772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(2301), + [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(2292), + [2778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(144), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), + [2783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(1873), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 71), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [2790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(834), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(834), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(79), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [2811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(834), + [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(814), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(2301), + [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(2292), + [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(144), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 53), + [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(1873), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 53), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [2837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 53), SHIFT(92), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), SHIFT(126), + [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), SHIFT(814), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), SHIFT(2301), + [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), SHIFT(2292), + [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), SHIFT(144), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), + [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 69), SHIFT(1873), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 69), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(834), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [2877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 69), SHIFT(81), + [2880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 69), SHIFT(814), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [2885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 69), SHIFT(2301), + [2888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 69), SHIFT(2292), + [2891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 69), SHIFT(144), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 69), + [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 69), SHIFT(1873), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 69), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [2903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 69), SHIFT(834), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [3106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(149), + [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(267), + [3112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(823), + [3115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1717), + [3118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1595), + [3121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3587), + [3124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3587), + [3127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3518), + [3130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1643), + [3133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2301), + [3136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2292), + [3139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(141), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), + [3144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2540), + [3147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3517), + [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3516), + [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(683), + [3156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(697), + [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(703), + [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(712), + [3165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(727), + [3168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1639), + [3171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3626), + [3174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1717), + [3177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(749), + [3180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3249), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1, .production_id = 1), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), + [3331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(202), + [3334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(267), + [3337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(823), + [3340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1851), + [3343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1595), + [3346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3587), + [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3587), + [3352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3518), + [3355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1643), + [3358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2301), + [3361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2292), + [3364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(141), + [3367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2540), + [3370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3517), + [3373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3516), + [3376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(683), + [3379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(697), + [3382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(703), + [3385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(712), + [3388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(727), + [3391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1639), + [3394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3626), + [3397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1851), + [3400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(749), + [3403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3249), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [6094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(829), + [6097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(786), + [6100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), + [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), + [6104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), SHIFT_REPEAT(832), + [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), SHIFT_REPEAT(814), + [6110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), + [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), + [6114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), SHIFT_REPEAT(833), + [6117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), SHIFT_REPEAT(814), + [6120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), + [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), + [6124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 1), + [6126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 1), + [6128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 3, .production_id = 39), + [6130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 3, .production_id = 39), + [6132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(834), + [6135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(814), + [6138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_num_lit, 1), + [6140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_num_lit, 1), + [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [6144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 10, .production_id = 133), + [6146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 10, .production_id = 133), + [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 1), + [6150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 1), + [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 1), + [6154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 1), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [6160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 55), + [6162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 55), + [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 1), + [6166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 1), + [6168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 1, .production_id = 5), + [6170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 1, .production_id = 5), + [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 1, .production_id = 6), + [6174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 1, .production_id = 6), + [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 2, .production_id = 7), + [6178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 2, .production_id = 7), + [6180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 2), + [6182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 2), + [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_lit, 2), + [6186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_lit, 2), + [6188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 2, .production_id = 9), + [6190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 2, .production_id = 9), + [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_num_lit, 2), + [6194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_num_lit, 2), + [6196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_symbol, 1), + [6198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_symbol, 1), + [6200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_lit, 2), + [6202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_lit, 2), + [6204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 2), + [6206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 2), + [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 2, .production_id = 11), + [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 2, .production_id = 11), + [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 2, .production_id = 13), + [6214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 2, .production_id = 13), + [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 13), + [6218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 13), + [6220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), + [6222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), + [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), + [6226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), + [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), + [6230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), + [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), + [6234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), + [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), + [6238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), + [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_lit, 2, .production_id = 14), + [6242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_lit, 2, .production_id = 14), + [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 2, .production_id = 16), + [6246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 2, .production_id = 16), + [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 2, .production_id = 17), + [6250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 2, .production_id = 17), + [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 3, .production_id = 19), + [6254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 3, .production_id = 19), + [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 3, .production_id = 21), + [6258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 3, .production_id = 21), + [6260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), + [6262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), + [6264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 3, .production_id = 9), + [6266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 3, .production_id = 9), + [6268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 3), + [6270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 3), + [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 3, .production_id = 25), + [6274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 3, .production_id = 25), + [6276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 3, .production_id = 25), + [6278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 3, .production_id = 25), + [6280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 3, .production_id = 27), + [6282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 3, .production_id = 27), + [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 29), + [6286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 29), + [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 29), + [6290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 29), + [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 19), + [6294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 19), + [6296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 19), + [6298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 19), + [6300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 19), + [6302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 19), + [6304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 19), + [6306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 19), + [6308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 3, .production_id = 19), + [6310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 3, .production_id = 19), + [6312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 3, .production_id = 30), + [6314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 3, .production_id = 30), + [6316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 3, .production_id = 31), + [6318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 3, .production_id = 31), + [6320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 32), + [6322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 32), + [6324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 32), + [6326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 32), + [6328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 33), + [6330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 33), + [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 33), + [6334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 33), + [6336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 33), + [6338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 33), + [6340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 4, .production_id = 34), + [6342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 4, .production_id = 34), + [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 4, .production_id = 35), + [6346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 4, .production_id = 35), + [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 4), + [6350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 4), + [6352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 4, .production_id = 40), + [6354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 4, .production_id = 40), + [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 40), + [6358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 40), + [6360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 43), + [6362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 43), + [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 44), + [6366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 44), + [6368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 45), + [6370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 45), + [6372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 4, .production_id = 46), + [6374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 4, .production_id = 46), + [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 46), + [6378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 46), + [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 47), + [6382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 47), + [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 4, .production_id = 47), + [6386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 4, .production_id = 47), + [6388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 47), + [6390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 47), + [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 48), + [6394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 48), + [6396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(3553), + [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 5, .production_id = 50), + [6401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 5, .production_id = 50), + [6403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 50), + [6405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 50), + [6407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(3550), + [6410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 59), + [6412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 59), + [6414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 5, .production_id = 60), + [6416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 5, .production_id = 60), + [6418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 61), + [6420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 61), + [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 62), + [6424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 62), + [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 6, .production_id = 63), + [6428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 6, .production_id = 63), + [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 6, .production_id = 72), + [6432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 6, .production_id = 72), + [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 60), + [6436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 60), + [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 77), + [6440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 77), + [6442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 78), + [6444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 78), + [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 6, .production_id = 79), + [6448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 6, .production_id = 79), + [6450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 80), + [6452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 80), + [6454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 7, .production_id = 93), + [6456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 7, .production_id = 93), + [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 77), + [6460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 77), + [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 78), + [6464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 78), + [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 97), + [6468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 97), + [6470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 98), + [6472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 98), + [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 80), + [6476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 80), + [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 99), + [6480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 99), + [6482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 100), + [6484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 100), + [6486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 97), + [6488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 97), + [6490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 98), + [6492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 98), + [6494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 116), + [6496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 116), + [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 99), + [6500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 99), + [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 100), + [6504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 100), + [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 117), + [6508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 117), + [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 118), + [6512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 118), + [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 116), + [6516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 116), + [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 117), + [6520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 117), + [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 118), + [6524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 118), + [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 133), + [6528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 133), + [6530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(3571), + [6533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(3565), + [6536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(3564), + [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [6541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(3560), + [6544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(3549), + [6547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(3551), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [6554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1089), + [6557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(755), + [6560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 119), SHIFT(2290), + [6563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 119), SHIFT(790), + [6566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 119), + [6568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 119), SHIFT(3603), + [6571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, .production_id = 119), + [6573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 65), SHIFT(2290), + [6576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 65), SHIFT(790), + [6579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 65), + [6581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 65), SHIFT(3603), + [6584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 65), + [6586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 86), SHIFT(2290), + [6589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 86), SHIFT(790), + [6592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 86), + [6594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 86), SHIFT(3603), + [6597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 86), + [6599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 85), SHIFT(2290), + [6602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 85), SHIFT(790), + [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 85), + [6607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 85), SHIFT(3603), + [6610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 85), + [6612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 102), SHIFT(2290), + [6615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 102), SHIFT(790), + [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 102), + [6620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 102), SHIFT(3603), + [6623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 102), + [6625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 108), SHIFT(2290), + [6628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 108), SHIFT(790), + [6631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 108), + [6633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 108), SHIFT(3603), + [6636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 108), + [6638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 101), SHIFT(2290), + [6641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 101), SHIFT(790), + [6644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 101), + [6646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 101), SHIFT(3603), + [6649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 101), + [6651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 81), SHIFT(2290), + [6654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 81), SHIFT(790), + [6657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 81), + [6659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 81), SHIFT(3603), + [6662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 81), + [6664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 134), SHIFT(2290), + [6667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 134), SHIFT(790), + [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 134), + [6672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 134), SHIFT(3603), + [6675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 8, .production_id = 134), + [6677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 66), SHIFT(2290), + [6680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 66), SHIFT(790), + [6683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 66), + [6685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 66), SHIFT(3603), + [6688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 66), + [6690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2290), + [6693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(790), + [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), + [6698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3603), + [6701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1865), + [6704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1865), + [6707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), + [6709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), SHIFT(2290), + [6712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), SHIFT(790), + [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), + [6717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), SHIFT(3603), + [6720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3, .production_id = 51), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [6724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 120), SHIFT(2290), + [6727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 120), SHIFT(790), + [6730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 120), + [6732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 120), SHIFT(3603), + [6735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, .production_id = 120), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [6841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(1251), + [6844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(494), + [6847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2297), + [6850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2296), + [6853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(144), + [6856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), + [6858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(3612), + [6861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(1870), + [6864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(593), + [6867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(70), + [6870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(592), + [6873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(161), + [6876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(591), + [6879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(587), + [6882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(586), + [6885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2252), + [6888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(585), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [7007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 1, .production_id = 1), + [7009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 1, .production_id = 1), + [7011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 2, .production_id = 39), + [7013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 2, .production_id = 39), + [7015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 4, .production_id = 64), + [7017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 4, .production_id = 64), + [7019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 3, .production_id = 54), + [7021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 3, .production_id = 54), + [7023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), + [7025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [7137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1716), + [7140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(267), + [7143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 12), + [7145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 12), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [7149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 94), + [7151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 94), + [7153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 58), + [7155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 58), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [7159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 95), + [7161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 95), + [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [7167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 76), + [7169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 76), + [7171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 96), + [7173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 96), + [7175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 7, .production_id = 115), + [7177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 7, .production_id = 115), + [7179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 56), + [7181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 56), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [7187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 57), + [7189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 57), + [7191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 75), + [7193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 75), + [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 41), + [7199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 41), + [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 42), + [7203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 42), + [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 1, .production_id = 1), + [7207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 1, .production_id = 1), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [7215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 2, .production_id = 26), + [7217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 2, .production_id = 26), + [7219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 73), + [7221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 73), + [7223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 74), + [7225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 74), + [7227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 1), + [7229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 1), + [7231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 3), + [7233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 3), + [7235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 3), + [7237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 3), + [7239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 1), + [7241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 1), + [7243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 3), + [7245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 3), + [7247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 1), + [7249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 1), + [7251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 54), SHIFT(2930), + [7254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 54), SHIFT(615), + [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 54), + [7259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 54), SHIFT(3631), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [7268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(2885), + [7271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(615), + [7274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), + [7276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(3600), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [7281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(1899), + [7284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(494), + [7287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), + [7289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(1894), + [7292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(494), + [7295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), + [7297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 14, .production_id = 176), SHIFT(1899), + [7300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 14, .production_id = 176), SHIFT(494), + [7303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 14, .production_id = 176), + [7305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(1996), + [7308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(494), + [7311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), + [7313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(1934), + [7316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(494), + [7319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), + [7321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 140), SHIFT(1899), + [7324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 140), SHIFT(494), + [7327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 140), + [7329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(1924), + [7332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(494), + [7335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 67), + [7337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(1930), + [7340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(494), + [7343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 68), + [7345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 138), SHIFT(1899), + [7348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 138), SHIFT(494), + [7351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 138), + [7353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 139), SHIFT(1899), + [7356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 139), SHIFT(494), + [7359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 139), + [7361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 175), SHIFT(1899), + [7364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 175), SHIFT(494), + [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 175), + [7369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 163), SHIFT(1899), + [7372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 163), SHIFT(494), + [7375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 163), + [7377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 176), SHIFT(1879), + [7380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 176), SHIFT(494), + [7383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 176), + [7385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2116), + [7388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(494), + [7391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), + [7393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 171), SHIFT(1899), + [7396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 171), SHIFT(494), + [7399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 171), + [7401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 172), SHIFT(1899), + [7404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 172), SHIFT(494), + [7407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 172), + [7409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 173), SHIFT(1899), + [7412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 173), SHIFT(494), + [7415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 173), + [7417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), SHIFT(2073), + [7420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), SHIFT(494), + [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), + [7425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2013), + [7428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 137), SHIFT(1899), + [7431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 137), SHIFT(494), + [7434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 137), + [7436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1899), + [7439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(494), + [7442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 159), SHIFT(1899), + [7445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 159), SHIFT(494), + [7448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 159), + [7450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 171), SHIFT(2002), + [7453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 171), SHIFT(494), + [7456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 171), + [7458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(1995), + [7461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(494), + [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), + [7466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(2020), + [7469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(2035), + [7472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(494), + [7475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), + [7477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 161), SHIFT(1899), + [7480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 161), SHIFT(494), + [7483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 161), + [7485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 162), SHIFT(1899), + [7488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 162), SHIFT(494), + [7491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 162), + [7493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(2038), + [7496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(494), + [7499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), + [7501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 135), SHIFT(1899), + [7504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 135), SHIFT(494), + [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 135), + [7509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(2048), + [7512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 171), SHIFT(1892), + [7515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 160), SHIFT(1899), + [7518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 160), SHIFT(494), + [7521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 160), + [7523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(1990), + [7526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 141), SHIFT(1957), + [7529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 141), SHIFT(494), + [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 141), + [7534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(2079), + [7537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(494), + [7540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), + [7542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 168), SHIFT(2054), + [7545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 168), SHIFT(494), + [7548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 168), + [7550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 141), SHIFT(1899), + [7553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 141), SHIFT(494), + [7556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 141), + [7558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 168), SHIFT(2056), + [7561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(1899), + [7564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(494), + [7567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), + [7569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), SHIFT(1960), + [7572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), SHIFT(494), + [7575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), + [7577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 136), SHIFT(1899), + [7580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 136), SHIFT(494), + [7583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 136), + [7585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(1877), + [7588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(494), + [7591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 88), + [7593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(2099), + [7596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(1899), + [7599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(494), + [7602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), + [7604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), SHIFT(2101), + [7607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 152), SHIFT(1899), + [7610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 152), SHIFT(494), + [7613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 152), + [7615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 175), SHIFT(1889), + [7618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 175), SHIFT(494), + [7621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 175), + [7623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2001), + [7626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 103), SHIFT(2098), + [7629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 103), SHIFT(494), + [7632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 103), + [7634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 167), SHIFT(2057), + [7637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 167), SHIFT(494), + [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 167), + [7642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 175), SHIFT(1887), + [7645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(2104), + [7648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(494), + [7651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), + [7653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 158), SHIFT(1899), + [7656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 158), SHIFT(494), + [7659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 158), + [7661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 132), SHIFT(1899), + [7664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 132), SHIFT(494), + [7667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 132), + [7669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), SHIFT(2109), + [7672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), SHIFT(494), + [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), + [7677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 157), SHIFT(1899), + [7680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 157), SHIFT(494), + [7683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 157), + [7685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), SHIFT(2111), + [7688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 166), SHIFT(2064), + [7691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 166), SHIFT(494), + [7694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 166), + [7696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(1899), + [7699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(494), + [7702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), + [7704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 144), SHIFT(2114), + [7707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 144), SHIFT(494), + [7710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 144), + [7712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 145), SHIFT(2096), + [7715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 145), SHIFT(494), + [7718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 145), + [7720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 166), SHIFT(2087), + [7723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(1982), + [7726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(494), + [7729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), + [7731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(2078), + [7734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(494), + [7737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 109), + [7739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(1899), + [7742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(494), + [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), + [7747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 156), SHIFT(1899), + [7750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 156), SHIFT(494), + [7753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 156), + [7755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 131), SHIFT(1899), + [7758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 131), SHIFT(494), + [7761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 131), + [7763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 145), SHIFT(2086), + [7766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 144), SHIFT(2083), + [7769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), SHIFT(2092), + [7772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), SHIFT(494), + [7775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), + [7777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 155), SHIFT(1899), + [7780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 155), SHIFT(494), + [7783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 155), + [7785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), SHIFT(2106), + [7788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), SHIFT(494), + [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), + [7793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 154), SHIFT(1899), + [7796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 154), SHIFT(494), + [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 154), + [7801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 143), SHIFT(2082), + [7804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 143), SHIFT(494), + [7807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 143), + [7809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(1899), + [7812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(494), + [7815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), + [7817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 143), SHIFT(1987), + [7820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 142), SHIFT(1985), + [7823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 142), SHIFT(494), + [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 142), + [7828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), SHIFT(1899), + [7831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), SHIFT(494), + [7834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), + [7836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), SHIFT(1899), + [7839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), SHIFT(494), + [7842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), + [7844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 153), SHIFT(1899), + [7847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 153), SHIFT(494), + [7850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 153), + [7852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(2085), + [7855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(494), + [7858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), + [7860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 141), SHIFT(1922), + [7863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 142), SHIFT(1899), + [7866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 142), SHIFT(494), + [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 142), + [7871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 143), SHIFT(1899), + [7874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 143), SHIFT(494), + [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 143), + [7879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(1888), + [7882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(494), + [7885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), + [7887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 140), SHIFT(1882), + [7890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 140), SHIFT(494), + [7893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 140), + [7895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2113), + [7898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(494), + [7901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), + [7903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(1901), + [7906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 149), SHIFT(1899), + [7909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 149), SHIFT(494), + [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 149), + [7914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 150), SHIFT(1899), + [7917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 150), SHIFT(494), + [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 150), + [7922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(1907), + [7925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(494), + [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), + [7930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 174), SHIFT(1899), + [7933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 174), SHIFT(494), + [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 174), + [7938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 110), SHIFT(2074), + [7941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 110), SHIFT(494), + [7944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 110), + [7946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(1909), + [7949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(494), + [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), + [7954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 151), SHIFT(1899), + [7957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 151), SHIFT(494), + [7960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 151), + [7962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 110), SHIFT(2071), + [7965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 125), SHIFT(1899), + [7968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 125), SHIFT(494), + [7971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 125), + [7973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), SHIFT(1980), + [7976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), SHIFT(494), + [7979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), + [7981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(1886), + [7984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(2068), + [7987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(1939), + [7990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(1914), + [7993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(1915), + [7996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(494), + [7999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), + [8001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 156), SHIFT(1962), + [8004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 156), SHIFT(494), + [8007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 156), + [8009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(1885), + [8012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(1898), + [8015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(494), + [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), + [8020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 111), SHIFT(2067), + [8023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 111), SHIFT(494), + [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 111), + [8028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 123), SHIFT(1899), + [8031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 123), SHIFT(494), + [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 123), + [8036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(1899), + [8039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(494), + [8042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 89), + [8044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(1905), + [8047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(1931), + [8050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(1900), + [8053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(494), + [8056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), + [8058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(1911), + [8061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(494), + [8064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), + [8066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 121), SHIFT(1899), + [8069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 121), SHIFT(494), + [8072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 121), + [8074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 122), SHIFT(1899), + [8077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 122), SHIFT(494), + [8080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 122), + [8082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(1926), + [8085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(494), + [8088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), + [8090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(1928), + [8093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(2004), + [8096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(1933), + [8099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 170), SHIFT(1899), + [8102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 170), SHIFT(494), + [8105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 170), + [8107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 174), SHIFT(1998), + [8110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 174), SHIFT(494), + [8113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 174), + [8115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), SHIFT(1943), + [8118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), SHIFT(494), + [8121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), + [8123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 169), SHIFT(1899), + [8126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 169), SHIFT(494), + [8129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 169), + [8131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 114), SHIFT(1899), + [8134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 114), SHIFT(494), + [8137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 114), + [8139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), SHIFT(1948), + [8142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(1950), + [8145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(494), + [8148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 130), + [8150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 111), SHIFT(2063), + [8153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 90), SHIFT(1899), + [8156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 90), SHIFT(494), + [8159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 90), + [8161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(2061), + [8164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(494), + [8167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 112), + [8169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(1899), + [8172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(494), + [8175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), + [8177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), SHIFT(2060), + [8180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), SHIFT(494), + [8183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), + [8185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 113), SHIFT(1899), + [8188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 113), SHIFT(494), + [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 113), + [8193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 91), SHIFT(1899), + [8196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 91), SHIFT(494), + [8199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 91), + [8201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 173), SHIFT(1895), + [8204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 173), SHIFT(494), + [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 173), + [8209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), SHIFT(2047), + [8212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), SHIFT(1963), + [8215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), SHIFT(494), + [8218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), + [8220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(2045), + [8223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 168), SHIFT(1899), + [8226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 168), SHIFT(494), + [8229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 168), + [8231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 114), SHIFT(2039), + [8234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 114), SHIFT(494), + [8237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 114), + [8239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 167), SHIFT(1899), + [8242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 167), SHIFT(494), + [8245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 167), + [8247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), SHIFT(1964), + [8250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 172), SHIFT(1893), + [8253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 172), SHIFT(494), + [8256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 172), + [8258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(1972), + [8261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), SHIFT(1899), + [8264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), SHIFT(494), + [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), + [8269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 166), SHIFT(1899), + [8272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 166), SHIFT(494), + [8275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 166), + [8277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 129), SHIFT(1974), + [8280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 129), SHIFT(494), + [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 129), + [8285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 129), SHIFT(1975), + [8288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(1899), + [8291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(494), + [8294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), + [8296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), SHIFT(1979), + [8299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), SHIFT(494), + [8302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), + [8304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), SHIFT(1981), + [8307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), SHIFT(494), + [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), + [8312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 110), SHIFT(1899), + [8315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 110), SHIFT(494), + [8318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 110), + [8320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 147), SHIFT(1899), + [8323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 147), SHIFT(494), + [8326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 147), + [8328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), SHIFT(1986), + [8331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), SHIFT(1988), + [8334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 148), SHIFT(1899), + [8337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 148), SHIFT(494), + [8340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 148), + [8342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 158), SHIFT(2007), + [8345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 158), SHIFT(494), + [8348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 158), + [8350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), SHIFT(1971), + [8353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 144), SHIFT(1899), + [8356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 144), SHIFT(494), + [8359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 144), + [8361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 125), SHIFT(2005), + [8364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 125), SHIFT(494), + [8367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 125), + [8369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), SHIFT(1899), + [8372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), SHIFT(494), + [8375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), + [8377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 145), SHIFT(1899), + [8380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 145), SHIFT(494), + [8383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 145), + [8385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), SHIFT(1969), + [8388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), SHIFT(494), + [8391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), + [8393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 158), SHIFT(1942), + [8396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), SHIFT(2006), + [8399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 165), SHIFT(1899), + [8402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 165), SHIFT(494), + [8405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 165), + [8407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 89), SHIFT(2021), + [8410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 89), SHIFT(494), + [8413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 89), + [8415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), SHIFT(1968), + [8418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 90), SHIFT(2043), + [8421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 90), SHIFT(494), + [8424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 90), + [8426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 103), SHIFT(1899), + [8429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 103), SHIFT(494), + [8432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 103), + [8434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2032), + [8437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(494), + [8440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), + [8442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2031), + [8445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(494), + [8448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), + [8450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 157), SHIFT(1945), + [8453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 157), SHIFT(494), + [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 157), + [8458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 104), SHIFT(1899), + [8461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 104), SHIFT(494), + [8464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 104), + [8466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 91), SHIFT(2049), + [8469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 91), SHIFT(494), + [8472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 91), + [8474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 164), SHIFT(1899), + [8477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 164), SHIFT(494), + [8480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 164), + [8482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2028), + [8485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2027), + [8488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 146), SHIFT(1899), + [8491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 146), SHIFT(494), + [8494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 146), + [8496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(2019), + [8499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(494), + [8502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), + [8504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 157), SHIFT(1961), + [8507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [8509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [8511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [8517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [8519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [8521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [8523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [8525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [8531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [8533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [8535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [8537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [8539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_prefix_parameters, 1), + [8541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_prefix_parameters, 1), + [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [8547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 3, .production_id = 54), + [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, .production_id = 90), + [8551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, .production_id = 112), + [8553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3), + [8555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, .production_id = 109), + [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 4, .production_id = 67), + [8559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 5, .production_id = 84), + [8561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 5, .production_id = 84), + [8563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, .production_id = 87), + [8565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 3, .production_id = 54), + [8567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 1), + [8569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 9, .production_id = 156), + [8571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 5, .production_id = 84), + [8573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 5, .production_id = 84), + [8575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_clause, 1), + [8577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, .production_id = 144), + [8579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, .production_id = 142), + [8581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 2, .production_id = 39), + [8583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 54), + [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, .production_id = 127), + [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, .production_id = 130), + [8589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 2, .production_id = 39), + [8591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 4, .production_id = 64), + [8593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 2, .production_id = 39), + [8595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 64), + [8597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 3, .production_id = 54), + [8599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2, .production_id = 39), + [8601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 4, .production_id = 64), + [8603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 4, .production_id = 64), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [8611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 2), + [8613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 1), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [8651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2302), + [8654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(790), + [8657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [8661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [8665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [8685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [8699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [8701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [8721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [8739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [8765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [8805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [8807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [8825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [8827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [8935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2382), + [8938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(396), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [8947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), + [8949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [8953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), + [8955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [8961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), + [8963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), + [8965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), + [8967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [8981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [8985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 2, .production_id = 11), + [8987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 2, .production_id = 11), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [8991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 2, .production_id = 10), + [8993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 2, .production_id = 10), + [8995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 3, .production_id = 24), + [8997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 3, .production_id = 24), + [8999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), + [9001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2301), + [9004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2292), + [9007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), + [9009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 1, .production_id = 5), + [9011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 1, .production_id = 5), + [9013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 3, .production_id = 24), + [9015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 3, .production_id = 24), + [9017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 2, .production_id = 10), + [9019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 2, .production_id = 10), + [9021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 2, .production_id = 16), + [9023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 2, .production_id = 16), + [9025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 3, .production_id = 27), + [9027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 3, .production_id = 27), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [9053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2425), + [9056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(294), + [9059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 1, .production_id = 2), + [9061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 1, .production_id = 2), + [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [9065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2428), + [9068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(291), + [9071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2430), + [9074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(680), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [9081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 1), + [9083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 1), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [9089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 1, .production_id = 23), + [9091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 1, .production_id = 23), + [9093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 2), + [9095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 2), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [9103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_dimension, 1), + [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [9135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2297), + [9138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2296), + [9141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(2494), + [9144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), + [9146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(3628), + [9149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(2589), + [9152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), + [9154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2594), + [9157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(462), + [9160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [9168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [9174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2629), + [9177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(615), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [10454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [10456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [10538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [10598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [10608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [10676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [10754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [10814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [10830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [10864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [11010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), + [11012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), SHIFT_REPEAT(3496), + [11015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), SHIFT_REPEAT(1592), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [11072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sym_lit_without_slash, 1, .production_id = 36), + [11074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sym_lit_without_slash, 1, .production_id = 36), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [11078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), + [11080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), + [11082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), SHIFT_REPEAT(3541), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [11097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [11099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, .production_id = 38), + [11101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), + [11103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, .production_id = 37), + [11105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 1), + [11107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1), + [11109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1), + [11111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3, .production_id = 49), + [11113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3), + [11115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), + [11117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), + [11119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2), + [11121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [11127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [11129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [11131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [11133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [11135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [11137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [11139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [11141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [11143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [11145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [11147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [11149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [11151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [11153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [11155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [11157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [11159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [11161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [11163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [11165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [11167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [11169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [11171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [11173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), SHIFT_REPEAT(3572), + [11176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), + [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [11232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_lit_without_slash, 3, .production_id = 30), + [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [11256] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [11262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), }; #ifdef __cplusplus diff --git a/test/corpus/basic.txt b/test/corpus/basic.txt index 5c32895b2..d43f31925 100644 --- a/test/corpus/basic.txt +++ b/test/corpus/basic.txt @@ -1175,3 +1175,33 @@ loop with (list_lit (sym_lit) (sym_lit))))))) + +================================================================================ +loop with 2 +================================================================================ +(loop with consecutive-yields fixnum = 0) +(loop with consecutive-yields fixnum = 0 do + (block block)) + +-------------------------------------------------------------------------------- + +(source + (list_lit + (loop_macro + (loop_clause + (with_clause + (sym_lit) + (sym_lit) + (num_lit))))) + (list_lit + (loop_macro + (loop_clause + (with_clause + (sym_lit) + (sym_lit) + (num_lit))) + (loop_clause + (do_clause + (list_lit + (sym_lit) + (sym_lit)))))))