diff --git a/grammar.js b/grammar.js index 5cd89cb..9538c33 100644 --- a/grammar.js +++ b/grammar.js @@ -597,7 +597,8 @@ module.exports = grammar({ 'universal', 'sql', 'toml', - 'php' + 'php', + 'c' ), backtickSnippet: (_$) => /`(?:[^`\\]|\\\$|\\\\|\\`|\\n)*`/, diff --git a/src/grammar.json b/src/grammar.json index 945180c..df0cb44 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -5875,6 +5875,10 @@ { "type": "STRING", "value": "php" + }, + { + "type": "STRING", + "value": "c" } ] }, diff --git a/src/node-types.json b/src/node-types.json index ca66125..69fc4a6 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -14375,6 +14375,10 @@ "type": "bubble", "named": false }, + { + "type": "c", + "named": false + }, { "type": "comment", "named": true diff --git a/src/parser.c b/src/parser.c index 4b02b88..66a8186 100644 --- a/src/parser.c +++ b/src/parser.c @@ -8,9 +8,9 @@ #define LANGUAGE_VERSION 14 #define STATE_COUNT 1537 #define LARGE_STATE_COUNT 298 -#define SYMBOL_COUNT 206 +#define SYMBOL_COUNT 207 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 110 +#define TOKEN_COUNT 111 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 48 #define MAX_ALIAS_SEQUENCE_LENGTH 11 @@ -112,116 +112,117 @@ enum ts_symbol_identifiers { anon_sym_sql = 93, anon_sym_toml = 94, anon_sym_php = 95, - sym_backtickSnippet = 96, - sym_rawBacktickSnippet = 97, - sym_doubleQuoteSnippet = 98, - sym_undefined = 99, - sym_top = 100, - sym_bottom = 101, - sym_intConstant = 102, - sym_signedIntConstant = 103, - sym_doubleConstant = 104, - sym_stringConstant = 105, - sym_regex = 106, - anon_sym_r = 107, - sym_annotation = 108, - sym_comment = 109, - sym_source_file = 110, - sym_sequential = 111, - sym_files = 112, - sym_definition = 113, - sym_version = 114, - sym_langdecl = 115, - sym__pattern = 116, - sym__container = 117, - sym_mulOperation = 118, - sym_divOperation = 119, - sym_modOperation = 120, - sym_addOperation = 121, - sym_subOperation = 122, - sym_patternAs = 123, - sym_patternLimit = 124, - sym_assignmentAsPattern = 125, - sym_patternAccumulate = 126, - sym_patternWhere = 127, - sym__literal = 128, - sym_patternNot = 129, - sym_patternOr = 130, - sym_patternOrElse = 131, - sym_patternAny = 132, - sym_patternAnd = 133, - sym_patternMaybe = 134, - sym_patternAfter = 135, - sym_patternBefore = 136, - sym_patternContains = 137, - sym_patternIncludes = 138, - sym_rewrite = 139, - sym_patternIfElse = 140, - sym_within = 141, - sym__bubbleScope = 142, - sym_bubble = 143, - sym_namedArg = 144, - sym_nodeLike = 145, - sym_like = 146, - sym_map = 147, - sym_mapElement = 148, - sym_mapAccessor = 149, - sym_list = 150, - sym_listIndex = 151, - sym_dot = 152, - sym_some = 153, - sym_every = 154, - sym_dotdotdot = 155, - sym_regexPattern = 156, - sym_patternDefinitionBody = 157, - sym_patternDefinition = 158, - sym_predicateDefinitionBody = 159, - sym_predicateDefinition = 160, - sym_foreignLanguageCode = 161, - sym_foreignFunctionBody = 162, - sym_functionDefinitionBody = 163, - sym_functionDefinition = 164, - sym_foreignFunctionDefinition = 165, - sym__logMessage = 166, - sym__logVariable = 167, - sym_log = 168, - sym__start_line = 169, - sym__end_line = 170, - sym__start_column = 171, - sym__end_column = 172, - sym_range = 173, - sym__predicate = 174, - sym_predicateNot = 175, - sym_predicateMaybe = 176, - sym_predicateAnd = 177, - sym_predicateOr = 178, - sym_predicateAny = 179, - sym_predicateIfElse = 180, - sym_predicateRewrite = 181, - sym_predicateAssignment = 182, - sym_predicateAccumulate = 183, - sym_predicateGreater = 184, - sym_predicateLess = 185, - sym_predicateGreaterEqual = 186, - sym_predicateLessEqual = 187, - sym_predicateNotEqual = 188, - sym_predicateEqual = 189, - sym_predicateMatch = 190, - sym_predicateCall = 191, - sym_predicateReturn = 192, - sym_foreignLanguageName = 193, - sym_languageName = 194, - sym_languageSpecificSnippet = 195, - sym_codeSnippet = 196, - sym_snippetRegex = 197, - aux_sym_source_file_repeat1 = 198, - aux_sym_sequential_repeat1 = 199, - aux_sym__bubbleScope_repeat1 = 200, - aux_sym_nodeLike_repeat1 = 201, - aux_sym_map_repeat1 = 202, - aux_sym_list_repeat1 = 203, - aux_sym_predicateDefinitionBody_repeat1 = 204, - aux_sym_foreignLanguageCode_repeat1 = 205, + anon_sym_c = 96, + sym_backtickSnippet = 97, + sym_rawBacktickSnippet = 98, + sym_doubleQuoteSnippet = 99, + sym_undefined = 100, + sym_top = 101, + sym_bottom = 102, + sym_intConstant = 103, + sym_signedIntConstant = 104, + sym_doubleConstant = 105, + sym_stringConstant = 106, + sym_regex = 107, + anon_sym_r = 108, + sym_annotation = 109, + sym_comment = 110, + sym_source_file = 111, + sym_sequential = 112, + sym_files = 113, + sym_definition = 114, + sym_version = 115, + sym_langdecl = 116, + sym__pattern = 117, + sym__container = 118, + sym_mulOperation = 119, + sym_divOperation = 120, + sym_modOperation = 121, + sym_addOperation = 122, + sym_subOperation = 123, + sym_patternAs = 124, + sym_patternLimit = 125, + sym_assignmentAsPattern = 126, + sym_patternAccumulate = 127, + sym_patternWhere = 128, + sym__literal = 129, + sym_patternNot = 130, + sym_patternOr = 131, + sym_patternOrElse = 132, + sym_patternAny = 133, + sym_patternAnd = 134, + sym_patternMaybe = 135, + sym_patternAfter = 136, + sym_patternBefore = 137, + sym_patternContains = 138, + sym_patternIncludes = 139, + sym_rewrite = 140, + sym_patternIfElse = 141, + sym_within = 142, + sym__bubbleScope = 143, + sym_bubble = 144, + sym_namedArg = 145, + sym_nodeLike = 146, + sym_like = 147, + sym_map = 148, + sym_mapElement = 149, + sym_mapAccessor = 150, + sym_list = 151, + sym_listIndex = 152, + sym_dot = 153, + sym_some = 154, + sym_every = 155, + sym_dotdotdot = 156, + sym_regexPattern = 157, + sym_patternDefinitionBody = 158, + sym_patternDefinition = 159, + sym_predicateDefinitionBody = 160, + sym_predicateDefinition = 161, + sym_foreignLanguageCode = 162, + sym_foreignFunctionBody = 163, + sym_functionDefinitionBody = 164, + sym_functionDefinition = 165, + sym_foreignFunctionDefinition = 166, + sym__logMessage = 167, + sym__logVariable = 168, + sym_log = 169, + sym__start_line = 170, + sym__end_line = 171, + sym__start_column = 172, + sym__end_column = 173, + sym_range = 174, + sym__predicate = 175, + sym_predicateNot = 176, + sym_predicateMaybe = 177, + sym_predicateAnd = 178, + sym_predicateOr = 179, + sym_predicateAny = 180, + sym_predicateIfElse = 181, + sym_predicateRewrite = 182, + sym_predicateAssignment = 183, + sym_predicateAccumulate = 184, + sym_predicateGreater = 185, + sym_predicateLess = 186, + sym_predicateGreaterEqual = 187, + sym_predicateLessEqual = 188, + sym_predicateNotEqual = 189, + sym_predicateEqual = 190, + sym_predicateMatch = 191, + sym_predicateCall = 192, + sym_predicateReturn = 193, + sym_foreignLanguageName = 194, + sym_languageName = 195, + sym_languageSpecificSnippet = 196, + sym_codeSnippet = 197, + sym_snippetRegex = 198, + aux_sym_source_file_repeat1 = 199, + aux_sym_sequential_repeat1 = 200, + aux_sym__bubbleScope_repeat1 = 201, + aux_sym_nodeLike_repeat1 = 202, + aux_sym_map_repeat1 = 203, + aux_sym_list_repeat1 = 204, + aux_sym_predicateDefinitionBody_repeat1 = 205, + aux_sym_foreignLanguageCode_repeat1 = 206, }; static const char * const ts_symbol_names[] = { @@ -321,6 +322,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_sql] = "sql", [anon_sym_toml] = "toml", [anon_sym_php] = "php", + [anon_sym_c] = "c", [sym_backtickSnippet] = "backtickSnippet", [sym_rawBacktickSnippet] = "rawBacktickSnippet", [sym_doubleQuoteSnippet] = "doubleQuoteSnippet", @@ -530,6 +532,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_sql] = anon_sym_sql, [anon_sym_toml] = anon_sym_toml, [anon_sym_php] = anon_sym_php, + [anon_sym_c] = anon_sym_c, [sym_backtickSnippet] = sym_backtickSnippet, [sym_rawBacktickSnippet] = sym_rawBacktickSnippet, [sym_doubleQuoteSnippet] = sym_doubleQuoteSnippet, @@ -1027,6 +1030,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_c] = { + .visible = true, + .named = false, + }, [sym_backtickSnippet] = { .visible = true, .named = true, @@ -5824,6 +5831,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(30); END_STATE(); case 5: + ACCEPT_TOKEN(anon_sym_c); if (lookahead == 'o') ADVANCE(31); if (lookahead == 's') ADVANCE(32); END_STATE(); @@ -8256,6 +8264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1), [anon_sym_toml] = ACTIONS(1), [anon_sym_php] = ACTIONS(1), + [anon_sym_c] = ACTIONS(1), [sym_backtickSnippet] = ACTIONS(1), [sym_rawBacktickSnippet] = ACTIONS(1), [sym_doubleQuoteSnippet] = ACTIONS(1), @@ -8381,6 +8390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(59), @@ -8502,6 +8512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(109), [sym_rawBacktickSnippet] = ACTIONS(109), [sym_undefined] = ACTIONS(97), @@ -8623,6 +8634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(109), [sym_rawBacktickSnippet] = ACTIONS(109), [sym_undefined] = ACTIONS(119), @@ -8744,6 +8756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(109), [sym_rawBacktickSnippet] = ACTIONS(109), [sym_undefined] = ACTIONS(125), @@ -8865,6 +8878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(129), @@ -8986,6 +9000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(109), [sym_rawBacktickSnippet] = ACTIONS(109), [sym_undefined] = ACTIONS(137), @@ -9107,6 +9122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(109), [sym_rawBacktickSnippet] = ACTIONS(109), [sym_undefined] = ACTIONS(143), @@ -9228,6 +9244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(109), [sym_rawBacktickSnippet] = ACTIONS(109), [sym_undefined] = ACTIONS(149), @@ -9349,6 +9366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(109), [sym_rawBacktickSnippet] = ACTIONS(109), [sym_undefined] = ACTIONS(155), @@ -9470,6 +9488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(109), [sym_rawBacktickSnippet] = ACTIONS(109), [sym_undefined] = ACTIONS(161), @@ -9589,6 +9608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(143), @@ -9708,6 +9728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(119), @@ -9827,6 +9848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(169), @@ -9946,6 +9968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(175), @@ -10065,6 +10088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(125), @@ -10184,6 +10208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(183), @@ -10303,6 +10328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(189), @@ -10422,6 +10448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(195), @@ -10541,6 +10568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(201), @@ -10660,6 +10688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(161), @@ -10772,6 +10801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(257), @@ -10884,6 +10914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(257), @@ -10996,6 +11027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(277), @@ -11108,6 +11140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(257), @@ -11220,6 +11253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(257), @@ -11332,6 +11366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(287), @@ -11444,6 +11479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(293), @@ -11556,6 +11592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(299), @@ -11668,6 +11705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(257), @@ -11780,6 +11818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(257), @@ -11892,6 +11931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(257), @@ -12004,6 +12044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(257), @@ -12115,6 +12156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(317), @@ -12226,6 +12268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(323), @@ -12337,6 +12380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(331), @@ -12448,6 +12492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(335), @@ -12559,6 +12604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(339), @@ -12670,6 +12716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(343), @@ -12781,6 +12828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(347), @@ -12892,6 +12940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(351), @@ -13003,6 +13052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(355), @@ -13114,6 +13164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(331), @@ -13225,6 +13276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(361), @@ -13336,6 +13388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(365), @@ -13447,6 +13500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(331), @@ -13558,6 +13612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(371), @@ -13669,6 +13724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(257), @@ -13780,6 +13836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(331), @@ -13891,6 +13948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(331), @@ -14002,6 +14060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(379), @@ -14113,6 +14172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(383), @@ -14224,6 +14284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(387), @@ -14335,6 +14396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(391), @@ -14446,6 +14508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(331), @@ -14557,6 +14620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(397), @@ -14668,6 +14732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(331), @@ -14779,6 +14844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(407), @@ -14890,6 +14956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(331), @@ -15001,6 +15068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(413), @@ -15112,6 +15180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(417), @@ -15223,6 +15292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(331), @@ -15334,6 +15404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(423), @@ -15445,6 +15516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(427), @@ -15556,6 +15628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(331), @@ -15667,6 +15740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(433), @@ -15778,6 +15852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(331), @@ -15889,6 +15964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(331), @@ -15999,6 +16075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -16109,6 +16186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -16219,6 +16297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(451), @@ -16329,6 +16408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -16439,6 +16519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -16549,6 +16630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -16659,6 +16741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -16769,6 +16852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -16879,6 +16963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(467), @@ -16989,6 +17074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -17099,6 +17185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -17209,6 +17296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -17319,6 +17407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -17429,6 +17518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(481), @@ -17539,6 +17629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -17649,6 +17740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -17759,6 +17851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(491), @@ -17869,6 +17962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -17979,6 +18073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -18089,6 +18184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -18199,6 +18295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -18309,6 +18406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(505), @@ -18419,6 +18517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -18529,6 +18628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(513), @@ -18639,6 +18739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(519), @@ -18749,6 +18850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(331), @@ -18859,6 +18961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -18969,6 +19072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -19079,6 +19183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -19189,6 +19294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -19299,6 +19405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -19409,6 +19516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -19519,6 +19627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -19629,6 +19738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -19738,6 +19848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(539), @@ -19847,6 +19958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(543), @@ -19956,6 +20068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(547), @@ -20065,6 +20178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(551), @@ -20174,6 +20288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(555), @@ -20283,6 +20398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(559), @@ -20392,6 +20508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(563), @@ -20501,6 +20618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(567), @@ -20610,6 +20728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(573), @@ -20719,6 +20838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(579), @@ -20828,6 +20948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(585), @@ -20937,6 +21058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(589), @@ -21046,6 +21168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(593), @@ -21155,6 +21278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(599), @@ -21264,6 +21388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(603), @@ -21373,6 +21498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(607), @@ -21482,6 +21608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(611), @@ -21591,6 +21718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(615), @@ -21700,6 +21828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(619), @@ -21809,6 +21938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(623), @@ -21918,6 +22048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(627), @@ -22027,6 +22158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(631), @@ -22136,6 +22268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(635), @@ -22245,6 +22378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(639), @@ -22354,6 +22488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(643), @@ -22463,6 +22598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(649), @@ -22572,6 +22708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(653), @@ -22681,6 +22818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(657), @@ -22790,6 +22928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(661), @@ -22899,6 +23038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(665), @@ -23008,6 +23148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(669), @@ -23117,6 +23258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(673), @@ -23226,6 +23368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(677), @@ -23335,6 +23478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(681), @@ -23444,6 +23588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(687), @@ -23553,6 +23698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(691), @@ -23662,6 +23808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(697), @@ -23771,6 +23918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(703), @@ -23880,6 +24028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(709), @@ -23989,6 +24138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(715), @@ -24098,6 +24248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(719), @@ -24207,6 +24358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(723), @@ -24316,6 +24468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(727), @@ -24425,6 +24578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(731), @@ -24534,6 +24688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(737), @@ -24643,6 +24798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(741), @@ -24752,6 +24908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(745), @@ -24861,6 +25018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(749), @@ -24970,6 +25128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(753), @@ -25079,6 +25238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(757), @@ -25188,6 +25348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(763), @@ -25297,6 +25458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(769), @@ -25406,6 +25568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(773), @@ -25515,6 +25678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(777), @@ -25624,6 +25788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(783), @@ -25733,6 +25898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(787), @@ -25842,6 +26008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(791), @@ -25951,6 +26118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(797), @@ -26060,6 +26228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(803), @@ -26169,6 +26338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(807), @@ -26278,6 +26448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(811), @@ -26387,6 +26558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(815), @@ -26496,6 +26668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(819), @@ -26605,6 +26778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(823), @@ -26714,6 +26888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(827), @@ -26823,6 +26998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(831), @@ -26932,6 +27108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(835), @@ -27041,6 +27218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(839), @@ -27150,6 +27328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(843), @@ -27259,6 +27438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(849), @@ -27368,6 +27548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(853), @@ -27477,6 +27658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(857), @@ -27586,6 +27768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(861), @@ -27695,6 +27878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(867), @@ -27804,6 +27988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(871), @@ -27913,6 +28098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(877), @@ -28022,6 +28208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(881), @@ -28131,6 +28318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(887), @@ -28240,6 +28428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(891), @@ -28349,6 +28538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(895), @@ -28458,6 +28648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(899), @@ -28567,6 +28758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(903), @@ -28676,6 +28868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(907), @@ -28785,6 +28978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(911), @@ -28894,6 +29088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(915), @@ -29003,6 +29198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(919), @@ -29112,6 +29308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -29221,6 +29418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(923), @@ -29330,6 +29528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(927), @@ -29410,6 +29609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -29488,6 +29688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -29565,6 +29766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -29642,6 +29844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -29719,6 +29922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -29796,6 +30000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -29873,6 +30078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -29950,6 +30156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -30027,6 +30234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -30104,6 +30312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -30181,6 +30390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -30258,6 +30468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -30335,6 +30546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -30412,6 +30624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -30489,6 +30702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -30566,6 +30780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -30643,6 +30858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -30720,6 +30936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -30797,6 +31014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -30874,6 +31092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -30951,6 +31170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -31028,6 +31248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -31105,6 +31326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -31182,6 +31404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -31259,6 +31482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -31336,6 +31560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -31413,6 +31638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -31490,6 +31716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -31567,6 +31794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -31644,6 +31872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -31720,6 +31949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(1049), @@ -31796,6 +32026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -31872,6 +32103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -31948,6 +32180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -32024,6 +32257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -32100,6 +32334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(1049), @@ -32176,6 +32411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -32252,6 +32488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -32328,6 +32565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(1049), @@ -32404,6 +32642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -32480,6 +32719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -32556,6 +32796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -32632,6 +32873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -32708,6 +32950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -32784,6 +33027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(959), @@ -32860,6 +33104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(1049), @@ -32936,6 +33181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(75), [anon_sym_toml] = ACTIONS(75), [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(1049), @@ -33004,6 +33250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1056), [anon_sym_toml] = ACTIONS(1056), [anon_sym_php] = ACTIONS(1056), + [anon_sym_c] = ACTIONS(1056), [sym_backtickSnippet] = ACTIONS(1056), [sym_rawBacktickSnippet] = ACTIONS(1056), [sym_undefined] = ACTIONS(1056), @@ -33074,6 +33321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1056), [anon_sym_toml] = ACTIONS(1056), [anon_sym_php] = ACTIONS(1056), + [anon_sym_c] = ACTIONS(1056), [sym_backtickSnippet] = ACTIONS(1056), [sym_rawBacktickSnippet] = ACTIONS(1056), [sym_undefined] = ACTIONS(1056), @@ -33144,6 +33392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1056), [anon_sym_toml] = ACTIONS(1056), [anon_sym_php] = ACTIONS(1056), + [anon_sym_c] = ACTIONS(1056), [sym_backtickSnippet] = ACTIONS(1056), [sym_rawBacktickSnippet] = ACTIONS(1056), [sym_undefined] = ACTIONS(1056), @@ -33214,6 +33463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1056), [anon_sym_toml] = ACTIONS(1056), [anon_sym_php] = ACTIONS(1056), + [anon_sym_c] = ACTIONS(1056), [sym_backtickSnippet] = ACTIONS(1056), [sym_rawBacktickSnippet] = ACTIONS(1056), [sym_undefined] = ACTIONS(1056), @@ -33284,6 +33534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1056), [anon_sym_toml] = ACTIONS(1056), [anon_sym_php] = ACTIONS(1056), + [anon_sym_c] = ACTIONS(1056), [sym_backtickSnippet] = ACTIONS(1056), [sym_rawBacktickSnippet] = ACTIONS(1056), [sym_undefined] = ACTIONS(1056), @@ -33354,6 +33605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1056), [anon_sym_toml] = ACTIONS(1056), [anon_sym_php] = ACTIONS(1056), + [anon_sym_c] = ACTIONS(1056), [sym_backtickSnippet] = ACTIONS(1056), [sym_rawBacktickSnippet] = ACTIONS(1056), [sym_undefined] = ACTIONS(1056), @@ -33424,6 +33676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1056), [anon_sym_toml] = ACTIONS(1056), [anon_sym_php] = ACTIONS(1056), + [anon_sym_c] = ACTIONS(1056), [sym_backtickSnippet] = ACTIONS(1056), [sym_rawBacktickSnippet] = ACTIONS(1056), [sym_undefined] = ACTIONS(1056), @@ -33494,6 +33747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1056), [anon_sym_toml] = ACTIONS(1056), [anon_sym_php] = ACTIONS(1056), + [anon_sym_c] = ACTIONS(1056), [sym_backtickSnippet] = ACTIONS(1056), [sym_rawBacktickSnippet] = ACTIONS(1056), [sym_undefined] = ACTIONS(1056), @@ -33564,6 +33818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1056), [anon_sym_toml] = ACTIONS(1056), [anon_sym_php] = ACTIONS(1056), + [anon_sym_c] = ACTIONS(1056), [sym_backtickSnippet] = ACTIONS(1056), [sym_rawBacktickSnippet] = ACTIONS(1056), [sym_undefined] = ACTIONS(1056), @@ -33633,6 +33888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1110), [anon_sym_toml] = ACTIONS(1110), [anon_sym_php] = ACTIONS(1110), + [anon_sym_c] = ACTIONS(1110), [sym_backtickSnippet] = ACTIONS(1110), [sym_rawBacktickSnippet] = ACTIONS(1110), [sym_undefined] = ACTIONS(1110), @@ -33702,6 +33958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1114), [anon_sym_toml] = ACTIONS(1114), [anon_sym_php] = ACTIONS(1114), + [anon_sym_c] = ACTIONS(1114), [sym_backtickSnippet] = ACTIONS(1114), [sym_rawBacktickSnippet] = ACTIONS(1114), [sym_undefined] = ACTIONS(1114), @@ -33771,6 +34028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1118), [anon_sym_toml] = ACTIONS(1118), [anon_sym_php] = ACTIONS(1118), + [anon_sym_c] = ACTIONS(1118), [sym_backtickSnippet] = ACTIONS(1118), [sym_rawBacktickSnippet] = ACTIONS(1118), [sym_undefined] = ACTIONS(1118), @@ -33840,6 +34098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1122), [anon_sym_toml] = ACTIONS(1122), [anon_sym_php] = ACTIONS(1122), + [anon_sym_c] = ACTIONS(1122), [sym_backtickSnippet] = ACTIONS(1122), [sym_rawBacktickSnippet] = ACTIONS(1122), [sym_undefined] = ACTIONS(1122), @@ -33909,6 +34168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1126), [anon_sym_toml] = ACTIONS(1126), [anon_sym_php] = ACTIONS(1126), + [anon_sym_c] = ACTIONS(1126), [sym_backtickSnippet] = ACTIONS(1126), [sym_rawBacktickSnippet] = ACTIONS(1126), [sym_undefined] = ACTIONS(1126), @@ -33978,6 +34238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1130), [anon_sym_toml] = ACTIONS(1130), [anon_sym_php] = ACTIONS(1130), + [anon_sym_c] = ACTIONS(1130), [sym_backtickSnippet] = ACTIONS(1130), [sym_rawBacktickSnippet] = ACTIONS(1130), [sym_undefined] = ACTIONS(1130), @@ -34047,6 +34308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1134), [anon_sym_toml] = ACTIONS(1134), [anon_sym_php] = ACTIONS(1134), + [anon_sym_c] = ACTIONS(1134), [sym_backtickSnippet] = ACTIONS(1134), [sym_rawBacktickSnippet] = ACTIONS(1134), [sym_undefined] = ACTIONS(1134), @@ -34116,6 +34378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1138), [anon_sym_toml] = ACTIONS(1138), [anon_sym_php] = ACTIONS(1138), + [anon_sym_c] = ACTIONS(1138), [sym_backtickSnippet] = ACTIONS(1138), [sym_rawBacktickSnippet] = ACTIONS(1138), [sym_undefined] = ACTIONS(1138), @@ -34185,6 +34448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1142), [anon_sym_toml] = ACTIONS(1142), [anon_sym_php] = ACTIONS(1142), + [anon_sym_c] = ACTIONS(1142), [sym_backtickSnippet] = ACTIONS(1142), [sym_rawBacktickSnippet] = ACTIONS(1142), [sym_undefined] = ACTIONS(1142), @@ -34254,6 +34518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1146), [anon_sym_toml] = ACTIONS(1146), [anon_sym_php] = ACTIONS(1146), + [anon_sym_c] = ACTIONS(1146), [sym_backtickSnippet] = ACTIONS(1146), [sym_rawBacktickSnippet] = ACTIONS(1146), [sym_undefined] = ACTIONS(1146), @@ -34323,6 +34588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1150), [anon_sym_toml] = ACTIONS(1150), [anon_sym_php] = ACTIONS(1150), + [anon_sym_c] = ACTIONS(1150), [sym_backtickSnippet] = ACTIONS(1150), [sym_rawBacktickSnippet] = ACTIONS(1150), [sym_undefined] = ACTIONS(1150), @@ -34392,6 +34658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1056), [anon_sym_toml] = ACTIONS(1056), [anon_sym_php] = ACTIONS(1056), + [anon_sym_c] = ACTIONS(1056), [sym_backtickSnippet] = ACTIONS(1056), [sym_rawBacktickSnippet] = ACTIONS(1056), [sym_undefined] = ACTIONS(1056), @@ -34461,6 +34728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1154), [anon_sym_toml] = ACTIONS(1154), [anon_sym_php] = ACTIONS(1154), + [anon_sym_c] = ACTIONS(1154), [sym_backtickSnippet] = ACTIONS(1154), [sym_rawBacktickSnippet] = ACTIONS(1154), [sym_undefined] = ACTIONS(1154), @@ -34530,6 +34798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1158), [anon_sym_toml] = ACTIONS(1158), [anon_sym_php] = ACTIONS(1158), + [anon_sym_c] = ACTIONS(1158), [sym_backtickSnippet] = ACTIONS(1158), [sym_rawBacktickSnippet] = ACTIONS(1158), [sym_undefined] = ACTIONS(1158), @@ -34599,6 +34868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1162), [anon_sym_toml] = ACTIONS(1162), [anon_sym_php] = ACTIONS(1162), + [anon_sym_c] = ACTIONS(1162), [sym_backtickSnippet] = ACTIONS(1162), [sym_rawBacktickSnippet] = ACTIONS(1162), [sym_undefined] = ACTIONS(1162), @@ -34668,6 +34938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1166), [anon_sym_toml] = ACTIONS(1166), [anon_sym_php] = ACTIONS(1166), + [anon_sym_c] = ACTIONS(1166), [sym_backtickSnippet] = ACTIONS(1166), [sym_rawBacktickSnippet] = ACTIONS(1166), [sym_undefined] = ACTIONS(1166), @@ -34737,6 +35008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1170), [anon_sym_toml] = ACTIONS(1170), [anon_sym_php] = ACTIONS(1170), + [anon_sym_c] = ACTIONS(1170), [sym_backtickSnippet] = ACTIONS(1170), [sym_rawBacktickSnippet] = ACTIONS(1170), [sym_undefined] = ACTIONS(1170), @@ -34806,6 +35078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1174), [anon_sym_toml] = ACTIONS(1174), [anon_sym_php] = ACTIONS(1174), + [anon_sym_c] = ACTIONS(1174), [sym_backtickSnippet] = ACTIONS(1174), [sym_rawBacktickSnippet] = ACTIONS(1174), [sym_undefined] = ACTIONS(1174), @@ -34875,6 +35148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1178), [anon_sym_toml] = ACTIONS(1178), [anon_sym_php] = ACTIONS(1178), + [anon_sym_c] = ACTIONS(1178), [sym_backtickSnippet] = ACTIONS(1178), [sym_rawBacktickSnippet] = ACTIONS(1178), [sym_undefined] = ACTIONS(1178), @@ -34944,6 +35218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1182), [anon_sym_toml] = ACTIONS(1182), [anon_sym_php] = ACTIONS(1182), + [anon_sym_c] = ACTIONS(1182), [sym_backtickSnippet] = ACTIONS(1182), [sym_rawBacktickSnippet] = ACTIONS(1182), [sym_undefined] = ACTIONS(1182), @@ -35013,6 +35288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1186), [anon_sym_toml] = ACTIONS(1186), [anon_sym_php] = ACTIONS(1186), + [anon_sym_c] = ACTIONS(1186), [sym_backtickSnippet] = ACTIONS(1184), [sym_rawBacktickSnippet] = ACTIONS(1184), [sym_undefined] = ACTIONS(1186), @@ -35082,6 +35358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1190), [anon_sym_toml] = ACTIONS(1190), [anon_sym_php] = ACTIONS(1190), + [anon_sym_c] = ACTIONS(1190), [sym_backtickSnippet] = ACTIONS(1188), [sym_rawBacktickSnippet] = ACTIONS(1188), [sym_undefined] = ACTIONS(1190), @@ -35151,6 +35428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1196), [anon_sym_toml] = ACTIONS(1196), [anon_sym_php] = ACTIONS(1196), + [anon_sym_c] = ACTIONS(1196), [sym_backtickSnippet] = ACTIONS(1196), [sym_rawBacktickSnippet] = ACTIONS(1196), [sym_undefined] = ACTIONS(1196), @@ -35220,6 +35498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1200), [anon_sym_toml] = ACTIONS(1200), [anon_sym_php] = ACTIONS(1200), + [anon_sym_c] = ACTIONS(1200), [sym_backtickSnippet] = ACTIONS(1200), [sym_rawBacktickSnippet] = ACTIONS(1200), [sym_undefined] = ACTIONS(1200), @@ -35289,6 +35568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1204), [anon_sym_toml] = ACTIONS(1204), [anon_sym_php] = ACTIONS(1204), + [anon_sym_c] = ACTIONS(1204), [sym_backtickSnippet] = ACTIONS(1204), [sym_rawBacktickSnippet] = ACTIONS(1204), [sym_undefined] = ACTIONS(1204), @@ -35358,6 +35638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1208), [anon_sym_toml] = ACTIONS(1208), [anon_sym_php] = ACTIONS(1208), + [anon_sym_c] = ACTIONS(1208), [sym_backtickSnippet] = ACTIONS(1208), [sym_rawBacktickSnippet] = ACTIONS(1208), [sym_undefined] = ACTIONS(1208), @@ -35427,6 +35708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1212), [anon_sym_toml] = ACTIONS(1212), [anon_sym_php] = ACTIONS(1212), + [anon_sym_c] = ACTIONS(1212), [sym_backtickSnippet] = ACTIONS(1212), [sym_rawBacktickSnippet] = ACTIONS(1212), [sym_undefined] = ACTIONS(1212), @@ -35496,6 +35778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1216), [anon_sym_toml] = ACTIONS(1216), [anon_sym_php] = ACTIONS(1216), + [anon_sym_c] = ACTIONS(1216), [sym_backtickSnippet] = ACTIONS(1216), [sym_rawBacktickSnippet] = ACTIONS(1216), [sym_undefined] = ACTIONS(1216), @@ -35565,6 +35848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1220), [anon_sym_toml] = ACTIONS(1220), [anon_sym_php] = ACTIONS(1220), + [anon_sym_c] = ACTIONS(1220), [sym_backtickSnippet] = ACTIONS(1220), [sym_rawBacktickSnippet] = ACTIONS(1220), [sym_undefined] = ACTIONS(1220), @@ -35634,6 +35918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1224), [anon_sym_toml] = ACTIONS(1224), [anon_sym_php] = ACTIONS(1224), + [anon_sym_c] = ACTIONS(1224), [sym_backtickSnippet] = ACTIONS(1224), [sym_rawBacktickSnippet] = ACTIONS(1224), [sym_undefined] = ACTIONS(1224), @@ -35703,6 +35988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1228), [anon_sym_toml] = ACTIONS(1228), [anon_sym_php] = ACTIONS(1228), + [anon_sym_c] = ACTIONS(1228), [sym_backtickSnippet] = ACTIONS(1228), [sym_rawBacktickSnippet] = ACTIONS(1228), [sym_undefined] = ACTIONS(1228), @@ -35772,6 +36058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1232), [anon_sym_toml] = ACTIONS(1232), [anon_sym_php] = ACTIONS(1232), + [anon_sym_c] = ACTIONS(1232), [sym_backtickSnippet] = ACTIONS(1232), [sym_rawBacktickSnippet] = ACTIONS(1232), [sym_undefined] = ACTIONS(1232), @@ -35841,6 +36128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1236), [anon_sym_toml] = ACTIONS(1236), [anon_sym_php] = ACTIONS(1236), + [anon_sym_c] = ACTIONS(1236), [sym_backtickSnippet] = ACTIONS(1236), [sym_rawBacktickSnippet] = ACTIONS(1236), [sym_undefined] = ACTIONS(1236), @@ -35910,6 +36198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1240), [anon_sym_toml] = ACTIONS(1240), [anon_sym_php] = ACTIONS(1240), + [anon_sym_c] = ACTIONS(1240), [sym_backtickSnippet] = ACTIONS(1240), [sym_rawBacktickSnippet] = ACTIONS(1240), [sym_undefined] = ACTIONS(1240), @@ -35979,6 +36268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1244), [anon_sym_toml] = ACTIONS(1244), [anon_sym_php] = ACTIONS(1244), + [anon_sym_c] = ACTIONS(1244), [sym_backtickSnippet] = ACTIONS(1244), [sym_rawBacktickSnippet] = ACTIONS(1244), [sym_undefined] = ACTIONS(1244), @@ -36048,6 +36338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1248), [anon_sym_toml] = ACTIONS(1248), [anon_sym_php] = ACTIONS(1248), + [anon_sym_c] = ACTIONS(1248), [sym_backtickSnippet] = ACTIONS(1248), [sym_rawBacktickSnippet] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), @@ -36117,6 +36408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1252), [anon_sym_toml] = ACTIONS(1252), [anon_sym_php] = ACTIONS(1252), + [anon_sym_c] = ACTIONS(1252), [sym_backtickSnippet] = ACTIONS(1252), [sym_rawBacktickSnippet] = ACTIONS(1252), [sym_undefined] = ACTIONS(1252), @@ -36186,6 +36478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1256), [anon_sym_toml] = ACTIONS(1256), [anon_sym_php] = ACTIONS(1256), + [anon_sym_c] = ACTIONS(1256), [sym_backtickSnippet] = ACTIONS(1256), [sym_rawBacktickSnippet] = ACTIONS(1256), [sym_undefined] = ACTIONS(1256), @@ -36255,6 +36548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1260), [anon_sym_toml] = ACTIONS(1260), [anon_sym_php] = ACTIONS(1260), + [anon_sym_c] = ACTIONS(1260), [sym_backtickSnippet] = ACTIONS(1260), [sym_rawBacktickSnippet] = ACTIONS(1260), [sym_undefined] = ACTIONS(1260), @@ -36324,6 +36618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1264), [anon_sym_toml] = ACTIONS(1264), [anon_sym_php] = ACTIONS(1264), + [anon_sym_c] = ACTIONS(1264), [sym_backtickSnippet] = ACTIONS(1264), [sym_rawBacktickSnippet] = ACTIONS(1264), [sym_undefined] = ACTIONS(1264), @@ -36393,6 +36688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1268), [anon_sym_toml] = ACTIONS(1268), [anon_sym_php] = ACTIONS(1268), + [anon_sym_c] = ACTIONS(1268), [sym_backtickSnippet] = ACTIONS(1268), [sym_rawBacktickSnippet] = ACTIONS(1268), [sym_undefined] = ACTIONS(1268), @@ -36462,6 +36758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1272), [anon_sym_toml] = ACTIONS(1272), [anon_sym_php] = ACTIONS(1272), + [anon_sym_c] = ACTIONS(1272), [sym_backtickSnippet] = ACTIONS(1272), [sym_rawBacktickSnippet] = ACTIONS(1272), [sym_undefined] = ACTIONS(1272), @@ -36531,6 +36828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1276), [anon_sym_toml] = ACTIONS(1276), [anon_sym_php] = ACTIONS(1276), + [anon_sym_c] = ACTIONS(1276), [sym_backtickSnippet] = ACTIONS(1276), [sym_rawBacktickSnippet] = ACTIONS(1276), [sym_undefined] = ACTIONS(1276), @@ -36600,6 +36898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1280), [anon_sym_toml] = ACTIONS(1280), [anon_sym_php] = ACTIONS(1280), + [anon_sym_c] = ACTIONS(1280), [sym_backtickSnippet] = ACTIONS(1280), [sym_rawBacktickSnippet] = ACTIONS(1280), [sym_undefined] = ACTIONS(1280), @@ -36669,6 +36968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1284), [anon_sym_toml] = ACTIONS(1284), [anon_sym_php] = ACTIONS(1284), + [anon_sym_c] = ACTIONS(1284), [sym_backtickSnippet] = ACTIONS(1284), [sym_rawBacktickSnippet] = ACTIONS(1284), [sym_undefined] = ACTIONS(1284), @@ -36738,6 +37038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1288), [anon_sym_toml] = ACTIONS(1288), [anon_sym_php] = ACTIONS(1288), + [anon_sym_c] = ACTIONS(1288), [sym_backtickSnippet] = ACTIONS(1288), [sym_rawBacktickSnippet] = ACTIONS(1288), [sym_undefined] = ACTIONS(1288), @@ -36807,6 +37108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1292), [anon_sym_toml] = ACTIONS(1292), [anon_sym_php] = ACTIONS(1292), + [anon_sym_c] = ACTIONS(1292), [sym_backtickSnippet] = ACTIONS(1292), [sym_rawBacktickSnippet] = ACTIONS(1292), [sym_undefined] = ACTIONS(1292), @@ -36876,6 +37178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1296), [anon_sym_toml] = ACTIONS(1296), [anon_sym_php] = ACTIONS(1296), + [anon_sym_c] = ACTIONS(1296), [sym_backtickSnippet] = ACTIONS(1296), [sym_rawBacktickSnippet] = ACTIONS(1296), [sym_undefined] = ACTIONS(1296), @@ -36944,6 +37247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1300), [anon_sym_toml] = ACTIONS(1300), [anon_sym_php] = ACTIONS(1300), + [anon_sym_c] = ACTIONS(1300), [sym_backtickSnippet] = ACTIONS(1298), [sym_rawBacktickSnippet] = ACTIONS(1298), [sym_undefined] = ACTIONS(1300), @@ -37012,6 +37316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1304), [anon_sym_toml] = ACTIONS(1304), [anon_sym_php] = ACTIONS(1304), + [anon_sym_c] = ACTIONS(1304), [sym_backtickSnippet] = ACTIONS(1302), [sym_rawBacktickSnippet] = ACTIONS(1302), [sym_undefined] = ACTIONS(1304), @@ -37080,6 +37385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1308), [anon_sym_toml] = ACTIONS(1308), [anon_sym_php] = ACTIONS(1308), + [anon_sym_c] = ACTIONS(1308), [sym_backtickSnippet] = ACTIONS(1306), [sym_rawBacktickSnippet] = ACTIONS(1306), [sym_undefined] = ACTIONS(1308), @@ -37111,7 +37417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doubleConstant, sym_stringConstant, sym_regex, - ACTIONS(1312), 48, + ACTIONS(1312), 49, anon_sym_sequential, anon_sym_multifile, anon_sym_not, @@ -37155,12 +37461,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sql, anon_sym_toml, anon_sym_php, + anon_sym_c, sym_undefined, sym_top, sym_bottom, sym_intConstant, anon_sym_r, - [68] = 3, + [69] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1318), 12, @@ -37176,7 +37483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doubleConstant, sym_stringConstant, sym_regex, - ACTIONS(1316), 48, + ACTIONS(1316), 49, anon_sym_sequential, anon_sym_multifile, anon_sym_not, @@ -37220,12 +37527,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sql, anon_sym_toml, anon_sym_php, + anon_sym_c, sym_undefined, sym_top, sym_bottom, sym_intConstant, anon_sym_r, - [136] = 3, + [138] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1322), 12, @@ -37241,7 +37549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doubleConstant, sym_stringConstant, sym_regex, - ACTIONS(1320), 48, + ACTIONS(1320), 49, anon_sym_sequential, anon_sym_multifile, anon_sym_not, @@ -37285,12 +37593,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sql, anon_sym_toml, anon_sym_php, + anon_sym_c, sym_undefined, sym_top, sym_bottom, sym_intConstant, anon_sym_r, - [204] = 3, + [207] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1326), 12, @@ -37306,7 +37615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doubleConstant, sym_stringConstant, sym_regex, - ACTIONS(1324), 48, + ACTIONS(1324), 49, anon_sym_sequential, anon_sym_multifile, anon_sym_not, @@ -37350,12 +37659,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sql, anon_sym_toml, anon_sym_php, + anon_sym_c, sym_undefined, sym_top, sym_bottom, sym_intConstant, anon_sym_r, - [272] = 4, + [276] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1332), 1, @@ -37372,7 +37682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doubleConstant, sym_stringConstant, sym_regex, - ACTIONS(1328), 48, + ACTIONS(1328), 49, anon_sym_sequential, anon_sym_multifile, anon_sym_not, @@ -37416,19 +37726,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sql, anon_sym_toml, anon_sym_php, + anon_sym_c, sym_undefined, sym_top, sym_bottom, sym_intConstant, anon_sym_r, - [342] = 4, + [347] = 4, ACTIONS(3), 1, sym_comment, STATE(1306), 1, sym_languageName, - ACTIONS(75), 2, + ACTIONS(75), 3, anon_sym_js, anon_sym_sol, + anon_sym_c, ACTIONS(1334), 19, anon_sym_grit, anon_sym_html, @@ -37449,14 +37761,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sql, anon_sym_toml, anon_sym_php, - [374] = 4, + [380] = 4, ACTIONS(3), 1, sym_comment, STATE(297), 1, sym_languageName, - ACTIONS(1336), 2, + ACTIONS(1336), 3, anon_sym_js, anon_sym_sol, + anon_sym_c, ACTIONS(1338), 19, anon_sym_grit, anon_sym_html, @@ -37477,7 +37790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sql, anon_sym_toml, anon_sym_php, - [406] = 3, + [413] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1342), 3, @@ -37503,7 +37816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [435] = 22, + [442] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -37548,7 +37861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_functionDefinition, STATE(1197), 1, sym_definition, - [502] = 22, + [509] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -37593,7 +37906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_functionDefinition, STATE(1163), 1, sym_definition, - [569] = 22, + [576] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -37638,7 +37951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_functionDefinition, STATE(1153), 1, sym_definition, - [636] = 22, + [643] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -37683,7 +37996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_functionDefinition, STATE(1173), 1, sym_definition, - [703] = 3, + [710] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 3, @@ -37709,7 +38022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [732] = 22, + [739] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -37754,7 +38067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_functionDefinition, STATE(1127), 1, sym_definition, - [799] = 22, + [806] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -37799,7 +38112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_functionDefinition, STATE(1113), 1, sym_definition, - [866] = 22, + [873] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -37844,7 +38157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_functionDefinition, STATE(1139), 1, sym_definition, - [933] = 22, + [940] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -37889,7 +38202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_functionDefinition, STATE(1121), 1, sym_definition, - [1000] = 22, + [1007] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -37934,7 +38247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_functionDefinition, STATE(1186), 1, sym_definition, - [1067] = 22, + [1074] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -37979,7 +38292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_functionDefinition, STATE(1093), 1, sym_definition, - [1134] = 22, + [1141] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -38024,7 +38337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_functionDefinition, STATE(1117), 1, sym_definition, - [1201] = 3, + [1208] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1342), 3, @@ -38050,7 +38363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [1230] = 3, + [1237] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 3, @@ -38076,7 +38389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [1259] = 22, + [1266] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -38121,7 +38434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_functionDefinition, STATE(1110), 1, sym_definition, - [1326] = 5, + [1333] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1400), 1, @@ -38149,7 +38462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [1359] = 22, + [1366] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -38194,7 +38507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_functionDefinition, STATE(1033), 1, sym_definition, - [1426] = 22, + [1433] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -38239,7 +38552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_functionDefinition, STATE(1096), 1, sym_definition, - [1493] = 22, + [1500] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -38284,7 +38597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_functionDefinition, STATE(1035), 1, sym_definition, - [1560] = 22, + [1567] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -38329,7 +38642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_functionDefinition, STATE(1040), 1, sym_definition, - [1627] = 5, + [1634] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1400), 1, @@ -38356,7 +38669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [1659] = 4, + [1666] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1414), 2, @@ -38382,7 +38695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [1689] = 3, + [1696] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1420), 2, @@ -38406,7 +38719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [1716] = 3, + [1723] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1424), 2, @@ -38430,7 +38743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [1743] = 3, + [1750] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 2, @@ -38454,7 +38767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [1770] = 3, + [1777] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1432), 2, @@ -38478,7 +38791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [1797] = 3, + [1804] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1424), 2, @@ -38502,7 +38815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [1824] = 3, + [1831] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1436), 2, @@ -38526,7 +38839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [1851] = 3, + [1858] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1440), 2, @@ -38550,7 +38863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [1878] = 3, + [1885] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1444), 2, @@ -38574,7 +38887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [1905] = 3, + [1912] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1448), 2, @@ -38598,7 +38911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [1932] = 4, + [1939] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1454), 1, @@ -38623,7 +38936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [1961] = 3, + [1968] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1436), 2, @@ -38647,7 +38960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [1988] = 4, + [1995] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1450), 1, @@ -38672,7 +38985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2017] = 3, + [2024] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1462), 2, @@ -38696,7 +39009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2044] = 3, + [2051] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1466), 2, @@ -38720,7 +39033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [2071] = 4, + [2078] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1470), 1, @@ -38745,7 +39058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2100] = 4, + [2107] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1474), 1, @@ -38770,7 +39083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [2129] = 3, + [2136] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1432), 2, @@ -38794,7 +39107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [2156] = 3, + [2163] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1476), 2, @@ -38818,7 +39131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2183] = 3, + [2190] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1420), 2, @@ -38842,7 +39155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [2210] = 3, + [2217] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1444), 2, @@ -38866,7 +39179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2237] = 4, + [2244] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1414), 2, @@ -38891,7 +39204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [2266] = 3, + [2273] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1480), 2, @@ -38915,7 +39228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2293] = 3, + [2300] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1462), 2, @@ -38939,7 +39252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [2320] = 3, + [2327] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1484), 2, @@ -38963,7 +39276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2347] = 3, + [2354] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1440), 2, @@ -38987,7 +39300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2374] = 3, + [2381] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1484), 2, @@ -39011,7 +39324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [2401] = 4, + [2408] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1486), 1, @@ -39036,7 +39349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2430] = 3, + [2437] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1448), 2, @@ -39060,7 +39373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [2457] = 4, + [2464] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1488), 1, @@ -39085,7 +39398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2486] = 3, + [2493] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1480), 2, @@ -39109,7 +39422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [2513] = 3, + [2520] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1466), 2, @@ -39133,7 +39446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2540] = 3, + [2547] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1492), 2, @@ -39156,7 +39469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2566] = 3, + [2573] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1496), 2, @@ -39179,7 +39492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2592] = 3, + [2599] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1500), 2, @@ -39202,7 +39515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2618] = 3, + [2625] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1504), 2, @@ -39225,7 +39538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2644] = 3, + [2651] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1508), 2, @@ -39248,7 +39561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2670] = 3, + [2677] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1512), 2, @@ -39271,7 +39584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2696] = 3, + [2703] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1516), 2, @@ -39294,7 +39607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2722] = 3, + [2729] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1520), 2, @@ -39317,7 +39630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2748] = 3, + [2755] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1524), 2, @@ -39340,7 +39653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2774] = 3, + [2781] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1528), 2, @@ -39363,7 +39676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2800] = 3, + [2807] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1532), 2, @@ -39386,7 +39699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2826] = 3, + [2833] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1536), 2, @@ -39409,7 +39722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2852] = 3, + [2859] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1540), 2, @@ -39432,7 +39745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2878] = 3, + [2885] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1544), 2, @@ -39455,7 +39768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2904] = 3, + [2911] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1548), 2, @@ -39478,7 +39791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2930] = 3, + [2937] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1552), 2, @@ -39501,7 +39814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2956] = 3, + [2963] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1556), 2, @@ -39524,7 +39837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2982] = 3, + [2989] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1560), 2, @@ -39547,7 +39860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3008] = 3, + [3015] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1564), 2, @@ -39570,7 +39883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3034] = 3, + [3041] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1568), 2, @@ -39593,7 +39906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3060] = 3, + [3067] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1572), 2, @@ -39616,7 +39929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3086] = 3, + [3093] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1576), 2, @@ -39639,7 +39952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3112] = 3, + [3119] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1580), 2, @@ -39662,7 +39975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3138] = 3, + [3145] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1584), 2, @@ -39685,7 +39998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3164] = 3, + [3171] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1588), 2, @@ -39708,7 +40021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3190] = 3, + [3197] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1592), 2, @@ -39731,7 +40044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3216] = 3, + [3223] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1596), 2, @@ -39754,7 +40067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3242] = 3, + [3249] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1600), 2, @@ -39777,7 +40090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3268] = 3, + [3275] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1604), 2, @@ -39800,7 +40113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3294] = 3, + [3301] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1608), 2, @@ -39823,7 +40136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3320] = 3, + [3327] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1612), 2, @@ -39846,7 +40159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3346] = 3, + [3353] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1616), 2, @@ -39869,7 +40182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3372] = 3, + [3379] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1620), 2, @@ -39892,7 +40205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3398] = 3, + [3405] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1624), 2, @@ -39915,7 +40228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3424] = 3, + [3431] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1628), 2, @@ -39938,7 +40251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3450] = 3, + [3457] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1632), 2, @@ -39961,7 +40274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3476] = 3, + [3483] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1636), 2, @@ -39984,7 +40297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3502] = 3, + [3509] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1640), 2, @@ -40007,7 +40320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3528] = 3, + [3535] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1644), 2, @@ -40030,7 +40343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3554] = 11, + [3561] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -40061,7 +40374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [3596] = 3, + [3603] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1650), 2, @@ -40084,7 +40397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3622] = 3, + [3629] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1654), 2, @@ -40107,7 +40420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3648] = 3, + [3655] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1658), 2, @@ -40130,7 +40443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3674] = 3, + [3681] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1662), 2, @@ -40153,7 +40466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3700] = 3, + [3707] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1666), 2, @@ -40176,7 +40489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3726] = 3, + [3733] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 2, @@ -40199,7 +40512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3752] = 3, + [3759] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1674), 2, @@ -40222,7 +40535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3778] = 3, + [3785] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1678), 2, @@ -40245,7 +40558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3804] = 3, + [3811] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1682), 2, @@ -40268,7 +40581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3830] = 3, + [3837] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1686), 2, @@ -40291,7 +40604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3856] = 3, + [3863] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1690), 2, @@ -40314,7 +40627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3882] = 3, + [3889] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1694), 2, @@ -40337,7 +40650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3908] = 3, + [3915] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1698), 2, @@ -40360,7 +40673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3934] = 3, + [3941] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1702), 2, @@ -40383,7 +40696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3960] = 3, + [3967] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1706), 2, @@ -40406,7 +40719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3986] = 3, + [3993] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1710), 2, @@ -40429,7 +40742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4012] = 3, + [4019] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1714), 2, @@ -40452,7 +40765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4038] = 3, + [4045] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1718), 2, @@ -40475,7 +40788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4064] = 3, + [4071] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1722), 2, @@ -40498,7 +40811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4090] = 3, + [4097] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1726), 2, @@ -40521,7 +40834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4116] = 3, + [4123] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1730), 2, @@ -40544,7 +40857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [4142] = 4, + [4149] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1732), 1, @@ -40568,7 +40881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [4170] = 3, + [4177] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1476), 2, @@ -40591,7 +40904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_RBRACK, sym_annotation, - [4196] = 3, + [4203] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1736), 2, @@ -40614,7 +40927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4222] = 3, + [4229] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1740), 2, @@ -40637,7 +40950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4248] = 3, + [4255] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1744), 2, @@ -40660,7 +40973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4274] = 3, + [4281] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1748), 2, @@ -40683,7 +40996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4300] = 3, + [4307] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1752), 2, @@ -40706,7 +41019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4326] = 3, + [4333] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1756), 2, @@ -40729,7 +41042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4352] = 3, + [4359] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1760), 2, @@ -40752,7 +41065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4378] = 3, + [4385] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1764), 2, @@ -40775,7 +41088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4404] = 3, + [4411] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1768), 2, @@ -40798,7 +41111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4430] = 3, + [4437] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1772), 2, @@ -40821,7 +41134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4456] = 3, + [4463] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 2, @@ -40844,7 +41157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [4482] = 3, + [4489] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1776), 2, @@ -40867,7 +41180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4508] = 3, + [4515] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1780), 2, @@ -40890,7 +41203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4534] = 13, + [4541] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -40923,7 +41236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [4580] = 3, + [4587] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1786), 2, @@ -40946,7 +41259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4606] = 13, + [4613] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -40979,7 +41292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [4652] = 4, + [4659] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1794), 1, @@ -41003,7 +41316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4680] = 3, + [4687] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1798), 2, @@ -41026,7 +41339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4706] = 3, + [4713] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1802), 2, @@ -41049,7 +41362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4732] = 3, + [4739] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1806), 2, @@ -41072,7 +41385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4758] = 3, + [4765] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1810), 2, @@ -41095,7 +41408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4784] = 3, + [4791] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1814), 2, @@ -41118,7 +41431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4810] = 3, + [4817] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1818), 2, @@ -41141,7 +41454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4836] = 11, + [4843] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -41172,7 +41485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [4878] = 14, + [4885] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -41206,7 +41519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [4926] = 3, + [4933] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1828), 2, @@ -41229,7 +41542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [4952] = 3, + [4959] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1832), 2, @@ -41252,7 +41565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4978] = 3, + [4985] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1836), 2, @@ -41275,7 +41588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5004] = 3, + [5011] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1840), 2, @@ -41298,7 +41611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5030] = 3, + [5037] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1844), 2, @@ -41321,7 +41634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5056] = 3, + [5063] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1848), 2, @@ -41344,7 +41657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5082] = 3, + [5089] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1852), 2, @@ -41367,7 +41680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5108] = 3, + [5115] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1856), 2, @@ -41390,7 +41703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5134] = 3, + [5141] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1860), 2, @@ -41413,7 +41726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5160] = 3, + [5167] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1864), 2, @@ -41436,7 +41749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5186] = 3, + [5193] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1868), 2, @@ -41459,7 +41772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5212] = 3, + [5219] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1872), 2, @@ -41482,7 +41795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5238] = 3, + [5245] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1876), 2, @@ -41505,7 +41818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5264] = 3, + [5271] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1880), 2, @@ -41528,7 +41841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5290] = 3, + [5297] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1884), 2, @@ -41551,7 +41864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5316] = 3, + [5323] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1888), 2, @@ -41574,7 +41887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5342] = 3, + [5349] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1892), 2, @@ -41597,7 +41910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5368] = 3, + [5375] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1896), 2, @@ -41620,7 +41933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5394] = 3, + [5401] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1900), 2, @@ -41643,7 +41956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5420] = 3, + [5427] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1904), 2, @@ -41666,7 +41979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5446] = 3, + [5453] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1908), 2, @@ -41689,7 +42002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5472] = 13, + [5479] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -41722,7 +42035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [5518] = 3, + [5525] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1914), 2, @@ -41745,7 +42058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5544] = 13, + [5551] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -41778,7 +42091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [5590] = 3, + [5597] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1920), 2, @@ -41801,7 +42114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5616] = 3, + [5623] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1924), 2, @@ -41824,7 +42137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5642] = 3, + [5649] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1928), 2, @@ -41847,7 +42160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5668] = 3, + [5675] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1932), 2, @@ -41870,7 +42183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5694] = 3, + [5701] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1936), 2, @@ -41893,7 +42206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5720] = 3, + [5727] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 2, @@ -41916,7 +42229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5746] = 3, + [5753] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1944), 2, @@ -41939,7 +42252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5772] = 3, + [5779] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1948), 2, @@ -41962,7 +42275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5798] = 3, + [5805] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1952), 2, @@ -41985,7 +42298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5824] = 3, + [5831] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1956), 2, @@ -42008,7 +42321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5850] = 11, + [5857] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -42039,7 +42352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [5892] = 3, + [5899] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1962), 2, @@ -42062,7 +42375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5918] = 3, + [5925] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1966), 2, @@ -42085,7 +42398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5944] = 3, + [5951] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1970), 2, @@ -42108,7 +42421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5970] = 3, + [5977] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1974), 2, @@ -42131,7 +42444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5996] = 3, + [6003] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 2, @@ -42154,7 +42467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6022] = 7, + [6029] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -42181,7 +42494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6056] = 3, + [6063] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1986), 2, @@ -42204,7 +42517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6082] = 7, + [6089] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -42231,7 +42544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6116] = 3, + [6123] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1994), 2, @@ -42254,7 +42567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6142] = 4, + [6149] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1356), 1, @@ -42278,7 +42591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6170] = 3, + [6177] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2002), 2, @@ -42301,7 +42614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6196] = 4, + [6203] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1356), 1, @@ -42325,7 +42638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6224] = 3, + [6231] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2010), 2, @@ -42348,7 +42661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6250] = 4, + [6257] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1356), 1, @@ -42372,7 +42685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6278] = 3, + [6285] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2018), 2, @@ -42395,7 +42708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6304] = 3, + [6311] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2022), 2, @@ -42418,7 +42731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6330] = 3, + [6337] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2026), 2, @@ -42441,7 +42754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6356] = 3, + [6363] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2030), 2, @@ -42464,7 +42777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6382] = 3, + [6389] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2034), 2, @@ -42487,7 +42800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6408] = 3, + [6415] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2038), 2, @@ -42510,7 +42823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6434] = 3, + [6441] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2042), 2, @@ -42533,7 +42846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6460] = 3, + [6467] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2046), 2, @@ -42556,7 +42869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6486] = 3, + [6493] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2050), 2, @@ -42579,7 +42892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6512] = 3, + [6519] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2054), 2, @@ -42602,7 +42915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6538] = 3, + [6545] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2058), 2, @@ -42625,7 +42938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6564] = 3, + [6571] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2062), 2, @@ -42648,7 +42961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6590] = 3, + [6597] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2066), 2, @@ -42671,7 +42984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6616] = 3, + [6623] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2070), 2, @@ -42694,7 +43007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6642] = 3, + [6649] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2074), 2, @@ -42717,7 +43030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6668] = 3, + [6675] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2078), 2, @@ -42740,7 +43053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6694] = 3, + [6701] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2082), 2, @@ -42763,7 +43076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6720] = 3, + [6727] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2086), 2, @@ -42786,7 +43099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6746] = 3, + [6753] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2090), 2, @@ -42809,7 +43122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6772] = 3, + [6779] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2094), 2, @@ -42832,7 +43145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6798] = 3, + [6805] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2098), 2, @@ -42855,7 +43168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6824] = 3, + [6831] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2102), 2, @@ -42878,7 +43191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6850] = 3, + [6857] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2106), 2, @@ -42901,7 +43214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6876] = 3, + [6883] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2110), 2, @@ -42924,7 +43237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6902] = 3, + [6909] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2114), 2, @@ -42947,7 +43260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6928] = 3, + [6935] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2118), 2, @@ -42970,7 +43283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6954] = 3, + [6961] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2122), 2, @@ -42993,7 +43306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6980] = 3, + [6987] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2126), 2, @@ -43016,7 +43329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7006] = 13, + [7013] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -43049,7 +43362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [7052] = 3, + [7059] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2132), 2, @@ -43072,7 +43385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7078] = 13, + [7085] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -43105,7 +43418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [7124] = 3, + [7131] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2138), 2, @@ -43128,7 +43441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7150] = 3, + [7157] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2142), 2, @@ -43151,7 +43464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7176] = 3, + [7183] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2146), 2, @@ -43174,7 +43487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7202] = 13, + [7209] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -43207,7 +43520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [7248] = 3, + [7255] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2152), 2, @@ -43230,7 +43543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7274] = 3, + [7281] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2156), 2, @@ -43253,7 +43566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7300] = 3, + [7307] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2160), 2, @@ -43276,7 +43589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7326] = 3, + [7333] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2164), 2, @@ -43299,7 +43612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7352] = 3, + [7359] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2168), 2, @@ -43322,7 +43635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7378] = 3, + [7385] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2172), 2, @@ -43345,7 +43658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7404] = 3, + [7411] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2176), 2, @@ -43368,7 +43681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7430] = 3, + [7437] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2180), 2, @@ -43391,7 +43704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7456] = 3, + [7463] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2184), 2, @@ -43414,7 +43727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7482] = 13, + [7489] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -43447,7 +43760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [7528] = 13, + [7535] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -43480,7 +43793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [7574] = 13, + [7581] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -43513,7 +43826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [7620] = 3, + [7627] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2194), 2, @@ -43536,7 +43849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7646] = 3, + [7653] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2198), 2, @@ -43559,7 +43872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7672] = 3, + [7679] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2202), 2, @@ -43582,7 +43895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7698] = 13, + [7705] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -43615,7 +43928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [7744] = 3, + [7751] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2208), 2, @@ -43638,7 +43951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7770] = 3, + [7777] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2212), 2, @@ -43661,7 +43974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7796] = 3, + [7803] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2216), 2, @@ -43684,7 +43997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7822] = 3, + [7829] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2220), 2, @@ -43707,7 +44020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7848] = 13, + [7855] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -43740,7 +44053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [7894] = 3, + [7901] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2226), 2, @@ -43763,7 +44076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7920] = 13, + [7927] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -43796,7 +44109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [7966] = 3, + [7973] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2232), 2, @@ -43819,7 +44132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7992] = 13, + [7999] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -43852,7 +44165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [8038] = 13, + [8045] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -43885,7 +44198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [8084] = 3, + [8091] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2240), 2, @@ -43908,7 +44221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8110] = 3, + [8117] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2244), 2, @@ -43931,7 +44244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8136] = 3, + [8143] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2248), 2, @@ -43954,7 +44267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8162] = 3, + [8169] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2252), 2, @@ -43977,7 +44290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8188] = 13, + [8195] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -44010,7 +44323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [8234] = 3, + [8241] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2258), 2, @@ -44033,7 +44346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8260] = 3, + [8267] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2262), 2, @@ -44056,7 +44369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8286] = 3, + [8293] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2266), 2, @@ -44079,7 +44392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8312] = 3, + [8319] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2270), 2, @@ -44102,7 +44415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8338] = 4, + [8345] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1450), 1, @@ -44126,7 +44439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [8366] = 3, + [8373] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2274), 2, @@ -44149,7 +44462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8392] = 4, + [8399] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2280), 1, @@ -44173,7 +44486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8420] = 3, + [8427] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2284), 2, @@ -44196,7 +44509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8446] = 3, + [8453] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2288), 2, @@ -44219,7 +44532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8472] = 3, + [8479] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2292), 2, @@ -44242,7 +44555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8498] = 3, + [8505] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2296), 2, @@ -44265,7 +44578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8524] = 13, + [8531] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -44298,7 +44611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [8570] = 3, + [8577] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2302), 2, @@ -44321,7 +44634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8596] = 4, + [8603] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2308), 1, @@ -44345,7 +44658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8624] = 3, + [8631] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2312), 2, @@ -44368,7 +44681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8650] = 3, + [8657] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2316), 2, @@ -44391,7 +44704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8676] = 3, + [8683] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2320), 2, @@ -44414,7 +44727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8702] = 3, + [8709] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 2, @@ -44437,7 +44750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8728] = 3, + [8735] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2328), 2, @@ -44460,7 +44773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8754] = 3, + [8761] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2332), 2, @@ -44483,7 +44796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8780] = 3, + [8787] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1828), 2, @@ -44506,7 +44819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8806] = 13, + [8813] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -44539,7 +44852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [8852] = 13, + [8859] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -44572,7 +44885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [8898] = 13, + [8905] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -44605,7 +44918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [8944] = 13, + [8951] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -44638,7 +44951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [8990] = 13, + [8997] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -44671,7 +44984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [9036] = 3, + [9043] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2346), 2, @@ -44694,7 +45007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9062] = 3, + [9069] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2350), 2, @@ -44717,7 +45030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9088] = 14, + [9095] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -44751,7 +45064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [9136] = 3, + [9143] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2358), 2, @@ -44774,7 +45087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9162] = 13, + [9169] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -44807,7 +45120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [9208] = 3, + [9215] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2364), 2, @@ -44830,7 +45143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9234] = 13, + [9241] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -44863,7 +45176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [9280] = 13, + [9287] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -44896,7 +45209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [9326] = 3, + [9333] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2372), 2, @@ -44919,7 +45232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9352] = 13, + [9359] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -44952,7 +45265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [9398] = 3, + [9405] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2378), 2, @@ -44975,7 +45288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9424] = 3, + [9431] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2382), 2, @@ -44998,7 +45311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9450] = 3, + [9457] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2386), 2, @@ -45021,7 +45334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9476] = 3, + [9483] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2390), 2, @@ -45044,7 +45357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9502] = 3, + [9509] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2394), 2, @@ -45067,7 +45380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9528] = 3, + [9535] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2398), 2, @@ -45090,7 +45403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9554] = 3, + [9561] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1730), 2, @@ -45113,7 +45426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9580] = 3, + [9587] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2402), 2, @@ -45136,7 +45449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9606] = 3, + [9613] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2406), 2, @@ -45159,7 +45472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9632] = 3, + [9639] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2410), 2, @@ -45182,7 +45495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9658] = 3, + [9665] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2414), 2, @@ -45205,7 +45518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9684] = 3, + [9691] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2152), 2, @@ -45227,7 +45540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [9709] = 3, + [9716] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1914), 2, @@ -45249,7 +45562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [9734] = 3, + [9741] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1844), 2, @@ -45271,7 +45584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [9759] = 3, + [9766] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1852), 2, @@ -45293,7 +45606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [9784] = 3, + [9791] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1856), 2, @@ -45315,7 +45628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [9809] = 3, + [9816] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1868), 2, @@ -45337,7 +45650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [9834] = 3, + [9841] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1876), 2, @@ -45359,7 +45672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [9859] = 13, + [9866] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -45391,7 +45704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [9904] = 11, + [9911] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -45421,7 +45734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [9945] = 3, + [9952] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1952), 2, @@ -45443,7 +45756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [9970] = 11, + [9977] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -45473,7 +45786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [10011] = 3, + [10018] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1966), 2, @@ -45495,7 +45808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10036] = 3, + [10043] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1974), 2, @@ -45517,7 +45830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10061] = 7, + [10068] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1982), 1, @@ -45543,7 +45856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10094] = 7, + [10101] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1990), 1, @@ -45569,7 +45882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10127] = 4, + [10134] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2426), 1, @@ -45592,7 +45905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10154] = 4, + [10161] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2426), 1, @@ -45615,7 +45928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10181] = 4, + [10188] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2426), 1, @@ -45638,7 +45951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10208] = 3, + [10215] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2022), 2, @@ -45660,7 +45973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10233] = 3, + [10240] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2054), 2, @@ -45682,7 +45995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10258] = 3, + [10265] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2058), 2, @@ -45704,7 +46017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10283] = 3, + [10290] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2066), 2, @@ -45726,7 +46039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10308] = 3, + [10315] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2126), 2, @@ -45748,7 +46061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10333] = 3, + [10340] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2132), 2, @@ -45770,7 +46083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10358] = 3, + [10365] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2198), 2, @@ -45792,7 +46105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10383] = 3, + [10390] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2226), 2, @@ -45814,7 +46127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10408] = 3, + [10415] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1802), 2, @@ -45836,7 +46149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10433] = 4, + [10440] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2438), 1, @@ -45859,7 +46172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10460] = 13, + [10467] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -45891,7 +46204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [10505] = 3, + [10512] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1780), 2, @@ -45913,7 +46226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10530] = 3, + [10537] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1944), 2, @@ -45935,7 +46248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10555] = 3, + [10562] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2320), 2, @@ -45957,7 +46270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10580] = 3, + [10587] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 2, @@ -45979,7 +46292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10605] = 3, + [10612] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2332), 2, @@ -46001,7 +46314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10630] = 13, + [10637] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -46033,7 +46346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [10675] = 3, + [10682] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1776), 2, @@ -46055,7 +46368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10700] = 3, + [10707] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1892), 2, @@ -46077,7 +46390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10725] = 3, + [10732] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1896), 2, @@ -46099,7 +46412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10750] = 13, + [10757] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -46131,7 +46444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [10795] = 3, + [10802] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1772), 2, @@ -46153,7 +46466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10820] = 3, + [10827] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1768), 2, @@ -46175,7 +46488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10845] = 3, + [10852] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1764), 2, @@ -46197,7 +46510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10870] = 3, + [10877] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1722), 2, @@ -46219,7 +46532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10895] = 13, + [10902] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -46251,7 +46564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [10940] = 13, + [10947] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -46283,7 +46596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [10985] = 3, + [10992] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1714), 2, @@ -46305,7 +46618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11010] = 13, + [11017] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -46337,7 +46650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [11055] = 3, + [11062] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1690), 2, @@ -46359,7 +46672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11080] = 13, + [11087] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -46391,7 +46704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [11125] = 3, + [11132] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1632), 2, @@ -46413,7 +46726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11150] = 14, + [11157] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -46446,7 +46759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_else, anon_sym_RBRACK, - [11197] = 13, + [11204] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -46478,7 +46791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [11242] = 13, + [11249] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -46510,7 +46823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [11287] = 13, + [11294] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -46542,7 +46855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [11332] = 3, + [11339] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1592), 2, @@ -46564,7 +46877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11357] = 13, + [11364] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -46596,7 +46909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [11402] = 3, + [11409] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1500), 2, @@ -46618,7 +46931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11427] = 3, + [11434] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2262), 2, @@ -46640,7 +46953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11452] = 3, + [11459] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1564), 2, @@ -46662,7 +46975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11477] = 3, + [11484] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2266), 2, @@ -46684,7 +46997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11502] = 3, + [11509] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1512), 2, @@ -46706,7 +47019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11527] = 3, + [11534] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2270), 2, @@ -46728,7 +47041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11552] = 11, + [11559] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -46758,7 +47071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [11593] = 3, + [11600] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2274), 2, @@ -46780,7 +47093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11618] = 3, + [11625] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1658), 2, @@ -46802,7 +47115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11643] = 4, + [11650] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2442), 1, @@ -46825,7 +47138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, sym_annotation, - [11670] = 3, + [11677] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2284), 2, @@ -46847,7 +47160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11695] = 3, + [11702] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1662), 2, @@ -46869,7 +47182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11720] = 3, + [11727] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1686), 2, @@ -46891,7 +47204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11745] = 3, + [11752] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1702), 2, @@ -46913,7 +47226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11770] = 3, + [11777] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1710), 2, @@ -46935,7 +47248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11795] = 3, + [11802] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2312), 2, @@ -46957,7 +47270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11820] = 3, + [11827] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1718), 2, @@ -46979,7 +47292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11845] = 3, + [11852] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1726), 2, @@ -47001,7 +47314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11870] = 14, + [11877] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -47034,7 +47347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_until, anon_sym_RBRACK, - [11917] = 3, + [11924] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 2, @@ -47056,7 +47369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11942] = 3, + [11949] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1948), 2, @@ -47078,7 +47391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11967] = 3, + [11974] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2258), 2, @@ -47100,7 +47413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11992] = 13, + [11999] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -47132,7 +47445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [12037] = 3, + [12044] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1956), 2, @@ -47154,7 +47467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12062] = 3, + [12069] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1962), 2, @@ -47176,7 +47489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12087] = 3, + [12094] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1970), 2, @@ -47198,7 +47511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12112] = 3, + [12119] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2252), 2, @@ -47220,7 +47533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12137] = 3, + [12144] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 2, @@ -47242,7 +47555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12162] = 3, + [12169] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1706), 2, @@ -47264,7 +47577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12187] = 3, + [12194] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2248), 2, @@ -47286,7 +47599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12212] = 3, + [12219] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1698), 2, @@ -47308,7 +47621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12237] = 3, + [12244] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1694), 2, @@ -47330,7 +47643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12262] = 3, + [12269] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1678), 2, @@ -47352,7 +47665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12287] = 3, + [12294] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2244), 2, @@ -47374,7 +47687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12312] = 3, + [12319] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 2, @@ -47396,7 +47709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12337] = 3, + [12344] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1654), 2, @@ -47418,7 +47731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12362] = 3, + [12369] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1986), 2, @@ -47440,7 +47753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12387] = 3, + [12394] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1616), 2, @@ -47462,7 +47775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12412] = 3, + [12419] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1994), 2, @@ -47484,7 +47797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12437] = 3, + [12444] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1612), 2, @@ -47506,7 +47819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12462] = 3, + [12469] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1596), 2, @@ -47528,7 +47841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12487] = 3, + [12494] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2240), 2, @@ -47550,7 +47863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12512] = 3, + [12519] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2002), 2, @@ -47572,7 +47885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12537] = 3, + [12544] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1556), 2, @@ -47594,7 +47907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12562] = 3, + [12569] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2010), 2, @@ -47616,7 +47929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12587] = 3, + [12594] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1560), 2, @@ -47638,7 +47951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12612] = 3, + [12619] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1496), 2, @@ -47660,7 +47973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12637] = 3, + [12644] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1532), 2, @@ -47682,7 +47995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12662] = 3, + [12669] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2018), 2, @@ -47704,7 +48017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12687] = 3, + [12694] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1544), 2, @@ -47726,7 +48039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12712] = 3, + [12719] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1548), 2, @@ -47748,7 +48061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12737] = 3, + [12744] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1576), 2, @@ -47770,7 +48083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12762] = 3, + [12769] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1504), 2, @@ -47792,7 +48105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12787] = 3, + [12794] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1508), 2, @@ -47814,7 +48127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12812] = 3, + [12819] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2026), 2, @@ -47836,7 +48149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12837] = 3, + [12844] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1516), 2, @@ -47858,7 +48171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12862] = 3, + [12869] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2034), 2, @@ -47880,7 +48193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12887] = 3, + [12894] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1520), 2, @@ -47902,7 +48215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12912] = 3, + [12919] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1524), 2, @@ -47924,7 +48237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12937] = 3, + [12944] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1528), 2, @@ -47946,7 +48259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12962] = 3, + [12969] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2042), 2, @@ -47968,7 +48281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12987] = 3, + [12994] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1536), 2, @@ -47990,7 +48303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13012] = 3, + [13019] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1540), 2, @@ -48012,7 +48325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13037] = 3, + [13044] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1552), 2, @@ -48034,7 +48347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13062] = 3, + [13069] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1568), 2, @@ -48056,7 +48369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13087] = 3, + [13094] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1572), 2, @@ -48078,7 +48391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13112] = 3, + [13119] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1580), 2, @@ -48100,7 +48413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13137] = 3, + [13144] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1588), 2, @@ -48122,7 +48435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13162] = 3, + [13169] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2050), 2, @@ -48144,7 +48457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13187] = 3, + [13194] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1600), 2, @@ -48166,7 +48479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13212] = 3, + [13219] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1604), 2, @@ -48188,7 +48501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13237] = 3, + [13244] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1608), 2, @@ -48210,7 +48523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13262] = 3, + [13269] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2074), 2, @@ -48232,7 +48545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13287] = 3, + [13294] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1620), 2, @@ -48254,7 +48567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13312] = 3, + [13319] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1624), 2, @@ -48276,7 +48589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13337] = 3, + [13344] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1628), 2, @@ -48298,7 +48611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13362] = 3, + [13369] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1636), 2, @@ -48320,7 +48633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13387] = 3, + [13394] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1640), 2, @@ -48342,7 +48655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13412] = 3, + [13419] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2194), 2, @@ -48364,7 +48677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13437] = 3, + [13444] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1644), 2, @@ -48386,7 +48699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13462] = 3, + [13469] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1650), 2, @@ -48408,7 +48721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13487] = 3, + [13494] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1666), 2, @@ -48430,7 +48743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13512] = 3, + [13519] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1674), 2, @@ -48452,7 +48765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13537] = 3, + [13544] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1682), 2, @@ -48474,7 +48787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13562] = 3, + [13569] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2202), 2, @@ -48496,7 +48809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13587] = 3, + [13594] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1736), 2, @@ -48518,7 +48831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13612] = 3, + [13619] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1740), 2, @@ -48540,7 +48853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13637] = 3, + [13644] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1744), 2, @@ -48562,7 +48875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13662] = 3, + [13669] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2208), 2, @@ -48584,7 +48897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13687] = 3, + [13694] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1748), 2, @@ -48606,7 +48919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13712] = 3, + [13719] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2212), 2, @@ -48628,7 +48941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13737] = 3, + [13744] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2216), 2, @@ -48650,7 +48963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13762] = 3, + [13769] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2220), 2, @@ -48672,7 +48985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13787] = 13, + [13794] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -48704,7 +49017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [13832] = 3, + [13839] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2386), 2, @@ -48726,7 +49039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13857] = 3, + [13864] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1752), 2, @@ -48748,7 +49061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13882] = 3, + [13889] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2390), 2, @@ -48770,7 +49083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13907] = 3, + [13914] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2394), 2, @@ -48792,7 +49105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13932] = 3, + [13939] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1756), 2, @@ -48814,7 +49127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13957] = 3, + [13964] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2402), 2, @@ -48836,7 +49149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13982] = 3, + [13989] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1760), 2, @@ -48858,7 +49171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14007] = 3, + [14014] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1786), 2, @@ -48880,7 +49193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14032] = 3, + [14039] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2414), 2, @@ -48902,7 +49215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14057] = 3, + [14064] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2358), 2, @@ -48924,7 +49237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14082] = 3, + [14089] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2372), 2, @@ -48946,7 +49259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14107] = 13, + [14114] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -48978,7 +49291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [14152] = 3, + [14159] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2292), 2, @@ -49000,7 +49313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14177] = 3, + [14184] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2296), 2, @@ -49022,7 +49335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14202] = 3, + [14209] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1492), 2, @@ -49044,7 +49357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14227] = 3, + [14234] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2398), 2, @@ -49066,7 +49379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14252] = 3, + [14259] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2316), 2, @@ -49088,7 +49401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14277] = 3, + [14284] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2410), 2, @@ -49110,7 +49423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14302] = 3, + [14309] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2030), 2, @@ -49132,7 +49445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14327] = 3, + [14334] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1798), 2, @@ -49154,7 +49467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14352] = 3, + [14359] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1806), 2, @@ -49176,7 +49489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14377] = 3, + [14384] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2364), 2, @@ -49198,7 +49511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14402] = 3, + [14409] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2382), 2, @@ -49220,7 +49533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14427] = 3, + [14434] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2302), 2, @@ -49242,7 +49555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14452] = 3, + [14459] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2038), 2, @@ -49264,7 +49577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14477] = 3, + [14484] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2378), 2, @@ -49286,7 +49599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14502] = 3, + [14509] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1810), 2, @@ -49308,7 +49621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14527] = 3, + [14534] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2046), 2, @@ -49330,7 +49643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14552] = 3, + [14559] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2350), 2, @@ -49352,7 +49665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14577] = 3, + [14584] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2406), 2, @@ -49374,7 +49687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14602] = 3, + [14609] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2346), 2, @@ -49396,7 +49709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14627] = 3, + [14634] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2062), 2, @@ -49418,7 +49731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14652] = 4, + [14659] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2446), 1, @@ -49441,7 +49754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, sym_annotation, - [14679] = 3, + [14686] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1814), 2, @@ -49463,7 +49776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14704] = 3, + [14711] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2070), 2, @@ -49485,7 +49798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14729] = 13, + [14736] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -49517,7 +49830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [14774] = 3, + [14781] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2288), 2, @@ -49539,7 +49852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14799] = 3, + [14806] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2184), 2, @@ -49561,7 +49874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14824] = 3, + [14831] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1818), 2, @@ -49583,7 +49896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14849] = 3, + [14856] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1832), 2, @@ -49605,7 +49918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14874] = 3, + [14881] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1836), 2, @@ -49627,7 +49940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14899] = 3, + [14906] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1840), 2, @@ -49649,7 +49962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14924] = 3, + [14931] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1848), 2, @@ -49671,7 +49984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14949] = 3, + [14956] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1860), 2, @@ -49693,7 +50006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14974] = 3, + [14981] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1864), 2, @@ -49715,7 +50028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14999] = 3, + [15006] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2180), 2, @@ -49737,7 +50050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15024] = 3, + [15031] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1872), 2, @@ -49759,7 +50072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15049] = 3, + [15056] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1880), 2, @@ -49781,7 +50094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15074] = 3, + [15081] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1884), 2, @@ -49803,7 +50116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15099] = 3, + [15106] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1888), 2, @@ -49825,7 +50138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15124] = 3, + [15131] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1900), 2, @@ -49847,7 +50160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15149] = 3, + [15156] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1904), 2, @@ -49869,7 +50182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15174] = 3, + [15181] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1908), 2, @@ -49891,7 +50204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15199] = 3, + [15206] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1584), 2, @@ -49913,7 +50226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15224] = 3, + [15231] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1920), 2, @@ -49935,7 +50248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15249] = 3, + [15256] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1924), 2, @@ -49957,7 +50270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15274] = 3, + [15281] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1928), 2, @@ -49979,7 +50292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15299] = 3, + [15306] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1932), 2, @@ -50001,7 +50314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15324] = 3, + [15331] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1936), 2, @@ -50023,7 +50336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15349] = 13, + [15356] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -50055,7 +50368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [15394] = 13, + [15401] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -50087,7 +50400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [15439] = 13, + [15446] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -50119,7 +50432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [15484] = 13, + [15491] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -50151,7 +50464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [15529] = 3, + [15536] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2176), 2, @@ -50173,7 +50486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15554] = 3, + [15561] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2078), 2, @@ -50195,7 +50508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15579] = 3, + [15586] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2082), 2, @@ -50217,7 +50530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15604] = 3, + [15611] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2086), 2, @@ -50239,7 +50552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15629] = 3, + [15636] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2090), 2, @@ -50261,7 +50574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15654] = 3, + [15661] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2094), 2, @@ -50283,7 +50596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15679] = 13, + [15686] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -50315,7 +50628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [15724] = 3, + [15731] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2098), 2, @@ -50337,7 +50650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15749] = 3, + [15756] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2102), 2, @@ -50359,7 +50672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15774] = 3, + [15781] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2106), 2, @@ -50381,7 +50694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15799] = 3, + [15806] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2110), 2, @@ -50403,7 +50716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15824] = 3, + [15831] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2114), 2, @@ -50425,7 +50738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15849] = 3, + [15856] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2118), 2, @@ -50447,7 +50760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15874] = 3, + [15881] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2122), 2, @@ -50469,7 +50782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15899] = 3, + [15906] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2138), 2, @@ -50491,7 +50804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15924] = 3, + [15931] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2142), 2, @@ -50513,7 +50826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15949] = 13, + [15956] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -50545,7 +50858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [15994] = 3, + [16001] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2146), 2, @@ -50567,7 +50880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16019] = 13, + [16026] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -50599,7 +50912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [16064] = 3, + [16071] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2156), 2, @@ -50621,7 +50934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16089] = 3, + [16096] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2160), 2, @@ -50643,7 +50956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16114] = 3, + [16121] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2164), 2, @@ -50665,7 +50978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16139] = 3, + [16146] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2232), 2, @@ -50687,7 +51000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16164] = 3, + [16171] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2168), 2, @@ -50709,7 +51022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16189] = 13, + [16196] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -50741,7 +51054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [16234] = 13, + [16241] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -50773,7 +51086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [16279] = 13, + [16286] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -50805,7 +51118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [16324] = 3, + [16331] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2328), 2, @@ -50827,7 +51140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16349] = 3, + [16356] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2172), 2, @@ -50849,7 +51162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16374] = 15, + [16381] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -50880,7 +51193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1023), 1, aux_sym_sequential_repeat1, - [16420] = 15, + [16427] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -50911,7 +51224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1104), 1, aux_sym_sequential_repeat1, - [16466] = 15, + [16473] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -50942,7 +51255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1018), 1, aux_sym_sequential_repeat1, - [16512] = 15, + [16519] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -50973,7 +51286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(1089), 1, aux_sym_list_repeat1, - [16558] = 15, + [16565] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51004,7 +51317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1100), 1, aux_sym_sequential_repeat1, - [16604] = 15, + [16611] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51035,7 +51348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1097), 1, aux_sym_sequential_repeat1, - [16650] = 15, + [16657] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51066,7 +51379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1090), 1, aux_sym_sequential_repeat1, - [16696] = 15, + [16703] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51097,7 +51410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1087), 1, aux_sym_sequential_repeat1, - [16742] = 15, + [16749] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51128,7 +51441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1136), 1, aux_sym_sequential_repeat1, - [16788] = 15, + [16795] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51159,7 +51472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1025), 1, aux_sym_sequential_repeat1, - [16834] = 15, + [16841] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51190,7 +51503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1019), 1, aux_sym_sequential_repeat1, - [16880] = 15, + [16887] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51221,7 +51534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(1111), 1, aux_sym_list_repeat1, - [16926] = 15, + [16933] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51252,7 +51565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1086), 1, aux_sym_sequential_repeat1, - [16972] = 15, + [16979] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51283,7 +51596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(1082), 1, aux_sym_list_repeat1, - [17018] = 15, + [17025] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51314,7 +51627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(1120), 1, aux_sym_list_repeat1, - [17064] = 15, + [17071] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51345,7 +51658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1085), 1, aux_sym_sequential_repeat1, - [17110] = 15, + [17117] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51376,7 +51689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1022), 1, aux_sym_sequential_repeat1, - [17156] = 13, + [17163] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51404,7 +51717,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2516), 2, anon_sym_COMMA, anon_sym_RBRACE, - [17197] = 12, + [17204] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1400), 1, @@ -51431,7 +51744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_LBRACK, anon_sym_LT_COLON, - [17236] = 13, + [17243] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51459,7 +51772,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2536), 2, anon_sym_COMMA, anon_sym_RPAREN, - [17277] = 13, + [17284] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51487,7 +51800,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2538), 2, anon_sym_COMMA, anon_sym_RBRACK, - [17318] = 13, + [17325] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51515,7 +51828,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2540), 2, anon_sym_COMMA, anon_sym_RBRACE, - [17359] = 13, + [17366] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51543,7 +51856,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2542), 2, anon_sym_COMMA, anon_sym_RBRACK, - [17400] = 13, + [17407] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51571,7 +51884,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2544), 2, anon_sym_COMMA, anon_sym_RPAREN, - [17441] = 12, + [17448] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1400), 1, @@ -51598,7 +51911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_LBRACK, anon_sym_LT_COLON, - [17480] = 13, + [17487] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51625,7 +51938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2564), 1, anon_sym_RBRACE, - [17520] = 13, + [17527] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51652,7 +51965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2566), 1, anon_sym_RBRACE, - [17560] = 13, + [17567] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51679,7 +51992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2568), 1, anon_sym_RBRACE, - [17600] = 13, + [17607] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51706,7 +52019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2570), 1, anon_sym_RBRACE, - [17640] = 13, + [17647] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51733,7 +52046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2572), 1, anon_sym_RBRACE, - [17680] = 13, + [17687] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51760,7 +52073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2574), 1, anon_sym_RBRACE, - [17720] = 13, + [17727] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51787,7 +52100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2576), 1, anon_sym_RPAREN, - [17760] = 13, + [17767] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51814,7 +52127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2578), 1, anon_sym_RBRACE, - [17800] = 13, + [17807] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51841,7 +52154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2580), 1, anon_sym_RBRACE, - [17840] = 13, + [17847] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51868,7 +52181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2582), 1, anon_sym_RBRACE, - [17880] = 13, + [17887] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51895,7 +52208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2584), 1, anon_sym_RBRACE, - [17920] = 13, + [17927] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51922,7 +52235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2586), 1, anon_sym_RPAREN, - [17960] = 13, + [17967] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51949,7 +52262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2588), 1, anon_sym_RBRACE, - [18000] = 13, + [18007] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -51976,7 +52289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2590), 1, anon_sym_RBRACE, - [18040] = 13, + [18047] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -52003,7 +52316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2592), 1, anon_sym_RBRACE, - [18080] = 13, + [18087] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -52030,7 +52343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2594), 1, anon_sym_RBRACE, - [18120] = 13, + [18127] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -52057,7 +52370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2596), 1, anon_sym_RBRACE, - [18160] = 13, + [18167] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -52084,7 +52397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2598), 1, anon_sym_RBRACE, - [18200] = 13, + [18207] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -52111,7 +52424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2600), 1, anon_sym_RBRACE, - [18240] = 13, + [18247] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -52138,7 +52451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2602), 1, anon_sym_RPAREN, - [18280] = 13, + [18287] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -52165,7 +52478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2604), 1, anon_sym_RBRACE, - [18320] = 13, + [18327] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -52192,7 +52505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2606), 1, anon_sym_RBRACE, - [18360] = 13, + [18367] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -52219,7 +52532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2608), 1, anon_sym_RBRACE, - [18400] = 13, + [18407] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -52246,7 +52559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2610), 1, anon_sym_RBRACE, - [18440] = 13, + [18447] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -52273,7 +52586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2612), 1, anon_sym_RBRACE, - [18480] = 13, + [18487] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -52300,7 +52613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2614), 1, anon_sym_RPAREN, - [18520] = 13, + [18527] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -52327,7 +52640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2616), 1, anon_sym_RBRACE, - [18560] = 13, + [18567] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -52354,7 +52667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2618), 1, anon_sym_RBRACE, - [18600] = 13, + [18607] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, @@ -52381,7 +52694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, ACTIONS(2620), 1, anon_sym_RBRACE, - [18640] = 11, + [18647] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52404,7 +52717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [18674] = 11, + [18681] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52427,7 +52740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [18708] = 11, + [18715] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52450,7 +52763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [18742] = 11, + [18749] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52473,7 +52786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [18776] = 11, + [18783] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52496,7 +52809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [18810] = 11, + [18817] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52519,7 +52832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [18844] = 11, + [18851] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52542,7 +52855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [18878] = 11, + [18885] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52565,7 +52878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [18912] = 11, + [18919] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52588,7 +52901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [18946] = 11, + [18953] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52611,7 +52924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [18980] = 11, + [18987] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52634,7 +52947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19014] = 11, + [19021] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52657,7 +52970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19048] = 11, + [19055] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52680,7 +52993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19082] = 11, + [19089] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52703,7 +53016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19116] = 11, + [19123] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52726,7 +53039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19150] = 11, + [19157] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52749,7 +53062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19184] = 11, + [19191] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52772,7 +53085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19218] = 11, + [19225] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52795,7 +53108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19252] = 11, + [19259] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52818,7 +53131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19286] = 11, + [19293] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52841,7 +53154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19320] = 9, + [19327] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(211), 1, @@ -52862,7 +53175,7 @@ static const uint16_t ts_small_parse_table[] = { sym__container, sym_mapAccessor, sym_listIndex, - [19350] = 11, + [19357] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52885,7 +53198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19384] = 11, + [19391] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52908,7 +53221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19418] = 11, + [19425] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52931,7 +53244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19452] = 9, + [19459] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(211), 1, @@ -52952,7 +53265,7 @@ static const uint16_t ts_small_parse_table[] = { sym__container, sym_mapAccessor, sym_listIndex, - [19482] = 11, + [19489] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52975,7 +53288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19516] = 11, + [19523] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -52998,7 +53311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19550] = 11, + [19557] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53021,7 +53334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19584] = 11, + [19591] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53044,7 +53357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19618] = 11, + [19625] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53067,7 +53380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19652] = 11, + [19659] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53090,7 +53403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19686] = 11, + [19693] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53113,7 +53426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19720] = 11, + [19727] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53136,7 +53449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19754] = 11, + [19761] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53159,7 +53472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19788] = 11, + [19795] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53182,7 +53495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19822] = 11, + [19829] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53205,7 +53518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19856] = 11, + [19863] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53228,7 +53541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19890] = 11, + [19897] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53251,7 +53564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19924] = 11, + [19931] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53274,7 +53587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19958] = 11, + [19965] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53297,7 +53610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [19992] = 11, + [19999] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53320,7 +53633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [20026] = 11, + [20033] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53343,7 +53656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [20060] = 11, + [20067] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53366,7 +53679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [20094] = 11, + [20101] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53389,7 +53702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [20128] = 11, + [20135] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53412,7 +53725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [20162] = 11, + [20169] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53435,7 +53748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [20196] = 11, + [20203] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53458,7 +53771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [20230] = 11, + [20237] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53481,7 +53794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [20264] = 11, + [20271] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53504,7 +53817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [20298] = 11, + [20305] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53527,7 +53840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [20332] = 10, + [20339] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53548,7 +53861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_foreignFunctionDefinition, STATE(289), 1, sym_functionDefinition, - [20363] = 9, + [20370] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -53567,7 +53880,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_line, STATE(1298), 1, sym__start_line, - [20391] = 9, + [20398] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -53586,7 +53899,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_line, STATE(1276), 1, sym__end_column, - [20419] = 8, + [20426] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -53603,7 +53916,7 @@ static const uint16_t ts_small_parse_table[] = { sym__start_column, STATE(1348), 1, sym__end_column, - [20444] = 8, + [20451] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -53620,7 +53933,7 @@ static const uint16_t ts_small_parse_table[] = { sym__start_column, STATE(1351), 1, sym__end_column, - [20469] = 8, + [20476] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -53637,7 +53950,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_line, STATE(1354), 1, sym__end_column, - [20494] = 8, + [20501] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -53654,7 +53967,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_line, STATE(1357), 1, sym__start_column, - [20519] = 8, + [20526] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -53671,7 +53984,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_line, STATE(1336), 1, sym__start_line, - [20544] = 8, + [20551] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -53688,7 +54001,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_line, STATE(1373), 1, sym__start_line, - [20569] = 8, + [20576] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -53705,7 +54018,7 @@ static const uint16_t ts_small_parse_table[] = { sym__start_column, STATE(1400), 1, sym__start_line, - [20594] = 8, + [20601] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -53722,7 +54035,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_line, STATE(1395), 1, sym__end_column, - [20619] = 7, + [20626] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2744), 1, @@ -53737,7 +54050,7 @@ static const uint16_t ts_small_parse_table[] = { sym__logVariable, STATE(1332), 1, sym__logMessage, - [20641] = 7, + [20648] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2744), 1, @@ -53752,7 +54065,7 @@ static const uint16_t ts_small_parse_table[] = { sym__logMessage, STATE(1272), 1, sym__logVariable, - [20663] = 6, + [20670] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -53765,7 +54078,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_line, STATE(1314), 1, sym__start_line, - [20682] = 6, + [20689] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2724), 1, @@ -53778,7 +54091,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_column, STATE(1394), 1, sym__start_column, - [20701] = 6, + [20708] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -53791,7 +54104,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_column, STATE(1388), 1, sym__start_line, - [20720] = 6, + [20727] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -53804,7 +54117,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_line, STATE(1324), 1, sym__start_line, - [20739] = 6, + [20746] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -53817,7 +54130,7 @@ static const uint16_t ts_small_parse_table[] = { sym__start_column, STATE(1326), 1, sym__start_line, - [20758] = 6, + [20765] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -53830,7 +54143,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_column, STATE(1384), 1, sym__end_line, - [20777] = 6, + [20784] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -53843,7 +54156,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_column, STATE(1382), 1, sym__start_line, - [20796] = 6, + [20803] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -53856,7 +54169,7 @@ static const uint16_t ts_small_parse_table[] = { sym__start_column, STATE(1328), 1, sym__end_line, - [20815] = 6, + [20822] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -53869,7 +54182,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_line, STATE(1380), 1, sym__start_line, - [20834] = 6, + [20841] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -53882,7 +54195,7 @@ static const uint16_t ts_small_parse_table[] = { sym__start_column, STATE(1367), 1, sym__end_line, - [20853] = 6, + [20860] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -53895,7 +54208,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_line, STATE(1337), 1, sym__start_line, - [20872] = 6, + [20879] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -53908,7 +54221,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_column, STATE(1340), 1, sym__start_line, - [20891] = 6, + [20898] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2724), 1, @@ -53921,7 +54234,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_column, STATE(1390), 1, sym__start_column, - [20910] = 6, + [20917] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -53934,7 +54247,7 @@ static const uint16_t ts_small_parse_table[] = { sym__start_column, STATE(1396), 1, sym__end_line, - [20929] = 6, + [20936] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -53947,7 +54260,7 @@ static const uint16_t ts_small_parse_table[] = { sym__start_column, STATE(1321), 1, sym__start_line, - [20948] = 6, + [20955] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -53960,7 +54273,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_column, STATE(1342), 1, sym__end_line, - [20967] = 6, + [20974] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -53973,7 +54286,7 @@ static const uint16_t ts_small_parse_table[] = { sym__start_column, STATE(1358), 1, sym__start_line, - [20986] = 6, + [20993] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -53986,7 +54299,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_column, STATE(1370), 1, sym__start_line, - [21005] = 6, + [21012] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2724), 1, @@ -53999,7 +54312,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_column, STATE(1375), 1, sym__start_column, - [21024] = 6, + [21031] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -54012,7 +54325,7 @@ static const uint16_t ts_small_parse_table[] = { sym__start_column, STATE(1377), 1, sym__end_line, - [21043] = 6, + [21050] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -54025,7 +54338,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_line, STATE(1397), 1, sym__end_column, - [21062] = 6, + [21069] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2724), 1, @@ -54038,7 +54351,7 @@ static const uint16_t ts_small_parse_table[] = { sym__start_column, STATE(1252), 1, sym__end_column, - [21081] = 6, + [21088] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -54051,7 +54364,7 @@ static const uint16_t ts_small_parse_table[] = { sym__end_column, STATE(1391), 1, sym__end_line, - [21100] = 6, + [21107] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -54064,7 +54377,7 @@ static const uint16_t ts_small_parse_table[] = { sym__start_column, STATE(1386), 1, sym__start_line, - [21119] = 5, + [21126] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2800), 1, @@ -54075,7 +54388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_functionDefinitionBody, STATE(1233), 1, sym_foreignLanguageName, - [21135] = 4, + [21142] = 4, ACTIONS(2804), 1, anon_sym_LBRACE, ACTIONS(2807), 1, @@ -54085,7 +54398,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2809), 2, sym_noBraces, sym_comment, - [21149] = 5, + [21156] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2800), 1, @@ -54096,7 +54409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_functionDefinitionBody, STATE(1224), 1, sym_foreignLanguageName, - [21165] = 5, + [21172] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2812), 1, @@ -54107,7 +54420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_patternDefinitionBody, STATE(1258), 1, sym_langdecl, - [21181] = 5, + [21188] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2812), 1, @@ -54118,7 +54431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_patternDefinitionBody, STATE(1254), 1, sym_langdecl, - [21197] = 5, + [21204] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2812), 1, @@ -54129,7 +54442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_patternDefinitionBody, STATE(1206), 1, sym_langdecl, - [21213] = 5, + [21220] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1454), 1, @@ -54140,7 +54453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(2818), 1, anon_sym_LT_COLON, - [21229] = 5, + [21236] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1454), 1, @@ -54151,7 +54464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(2822), 1, anon_sym_LT_COLON, - [21245] = 5, + [21252] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2744), 1, @@ -54162,7 +54475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARmessage, STATE(1345), 1, sym__logMessage, - [21261] = 5, + [21268] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, @@ -54173,7 +54486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable, STATE(1344), 1, sym__logVariable, - [21277] = 5, + [21284] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2800), 1, @@ -54184,7 +54497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_functionDefinitionBody, STATE(1234), 1, sym_foreignLanguageName, - [21293] = 5, + [21300] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2812), 1, @@ -54195,7 +54508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_patternDefinitionBody, STATE(1285), 1, sym_langdecl, - [21309] = 5, + [21316] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2812), 1, @@ -54206,7 +54519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_patternDefinitionBody, STATE(1292), 1, sym_langdecl, - [21325] = 5, + [21332] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2812), 1, @@ -54217,7 +54530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_patternDefinitionBody, STATE(1289), 1, sym_langdecl, - [21341] = 5, + [21348] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2812), 1, @@ -54228,7 +54541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_patternDefinitionBody, STATE(1238), 1, sym_langdecl, - [21357] = 5, + [21364] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2744), 1, @@ -54239,7 +54552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1312), 1, sym__logMessage, - [21373] = 5, + [21380] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, @@ -54250,7 +54563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1310), 1, sym__logVariable, - [21389] = 5, + [21396] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2812), 1, @@ -54261,7 +54574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_patternDefinitionBody, STATE(1236), 1, sym_langdecl, - [21405] = 5, + [21412] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2800), 1, @@ -54272,7 +54585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_functionDefinitionBody, STATE(1243), 1, sym_foreignLanguageName, - [21421] = 4, + [21428] = 4, ACTIONS(2836), 1, anon_sym_LBRACE, STATE(1013), 1, @@ -54282,7 +54595,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2838), 2, sym_noBraces, sym_comment, - [21435] = 4, + [21442] = 4, ACTIONS(2836), 1, anon_sym_LBRACE, STATE(1013), 1, @@ -54292,7 +54605,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2838), 2, sym_noBraces, sym_comment, - [21449] = 4, + [21456] = 4, ACTIONS(2836), 1, anon_sym_LBRACE, ACTIONS(2840), 1, @@ -54302,7 +54615,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2842), 2, sym_noBraces, sym_comment, - [21463] = 4, + [21470] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2844), 1, @@ -54311,7 +54624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1178), 1, aux_sym_nodeLike_repeat1, - [21476] = 4, + [21483] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2726), 1, @@ -54320,7 +54633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1232), 1, sym__end_column, - [21489] = 4, + [21496] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2850), 1, @@ -54329,7 +54642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1016), 1, aux_sym_map_repeat1, - [21502] = 4, + [21509] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(321), 1, @@ -54338,7 +54651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(1079), 1, sym_mapElement, - [21515] = 4, + [21522] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(509), 1, @@ -54347,7 +54660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1123), 1, aux_sym_sequential_repeat1, - [21528] = 4, + [21535] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(461), 1, @@ -54356,7 +54669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1123), 1, aux_sym_sequential_repeat1, - [21541] = 4, + [21548] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2861), 1, @@ -54365,7 +54678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1152), 1, aux_sym_predicateDefinitionBody_repeat1, - [21554] = 4, + [21561] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -54374,7 +54687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1253), 1, sym__start_line, - [21567] = 4, + [21574] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(457), 1, @@ -54383,7 +54696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1123), 1, aux_sym_sequential_repeat1, - [21580] = 4, + [21587] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(459), 1, @@ -54392,7 +54705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1123), 1, aux_sym_sequential_repeat1, - [21593] = 4, + [21600] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -54401,7 +54714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1255), 1, sym__end_line, - [21606] = 4, + [21613] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(441), 1, @@ -54410,7 +54723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1123), 1, aux_sym_sequential_repeat1, - [21619] = 4, + [21626] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -54419,7 +54732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1256), 1, sym__start_line, - [21632] = 4, + [21639] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2724), 1, @@ -54428,7 +54741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1260), 1, sym__start_column, - [21645] = 4, + [21652] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1454), 1, @@ -54437,7 +54750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2879), 1, anon_sym_RBRACK, - [21658] = 4, + [21665] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -54446,7 +54759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1261), 1, sym__end_line, - [21671] = 4, + [21678] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2724), 1, @@ -54455,7 +54768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1262), 1, sym__start_column, - [21684] = 4, + [21691] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2682), 1, @@ -54464,7 +54777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [21697] = 4, + [21704] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2887), 1, @@ -54473,7 +54786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(2891), 1, anon_sym_LBRACK, - [21710] = 4, + [21717] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2893), 1, @@ -54482,7 +54795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1119), 1, aux_sym_source_file_repeat1, - [21723] = 4, + [21730] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(139), 1, @@ -54491,7 +54804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1161), 1, aux_sym_source_file_repeat1, - [21736] = 4, + [21743] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2899), 1, @@ -54500,7 +54813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1107), 1, aux_sym_source_file_repeat1, - [21749] = 4, + [21756] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(157), 1, @@ -54509,7 +54822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1095), 1, aux_sym_source_file_repeat1, - [21762] = 4, + [21769] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(187), 1, @@ -54518,7 +54831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1092), 1, aux_sym_source_file_repeat1, - [21775] = 4, + [21782] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2907), 1, @@ -54527,7 +54840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1128), 1, aux_sym_predicateDefinitionBody_repeat1, - [21788] = 4, + [21795] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -54536,7 +54849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1263), 1, sym__start_line, - [21801] = 4, + [21808] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2913), 1, @@ -54545,7 +54858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1094), 1, aux_sym_source_file_repeat1, - [21814] = 4, + [21821] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -54554,7 +54867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1264), 1, sym__end_line, - [21827] = 4, + [21834] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -54563,7 +54876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1265), 1, sym__start_line, - [21840] = 4, + [21847] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2921), 1, @@ -54572,7 +54885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1154), 1, aux_sym__bubbleScope_repeat1, - [21853] = 4, + [21860] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2726), 1, @@ -54581,7 +54894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1266), 1, sym__end_column, - [21866] = 4, + [21873] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -54590,7 +54903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1267), 1, sym__end_line, - [21879] = 4, + [21886] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2542), 1, @@ -54599,7 +54912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1046), 1, aux_sym_list_repeat1, - [21892] = 4, + [21899] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2726), 1, @@ -54608,7 +54921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1268), 1, sym__end_column, - [21905] = 4, + [21912] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2934), 1, @@ -54617,7 +54930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1157), 1, aux_sym__bubbleScope_repeat1, - [21918] = 4, + [21925] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -54626,7 +54939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1275), 1, sym__start_line, - [21931] = 4, + [21938] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(187), 1, @@ -54635,7 +54948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [21944] = 4, + [21951] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2724), 1, @@ -54644,7 +54957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1277), 1, sym__start_column, - [21957] = 4, + [21964] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2942), 1, @@ -54653,7 +54966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1158), 1, aux_sym__bubbleScope_repeat1, - [21970] = 4, + [21977] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2946), 1, @@ -54662,7 +54975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1159), 1, aux_sym__bubbleScope_repeat1, - [21983] = 4, + [21990] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -54671,7 +54984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1280), 1, sym__start_line, - [21996] = 4, + [22003] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2726), 1, @@ -54680,7 +54993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1281), 1, sym__end_column, - [22009] = 4, + [22016] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2954), 1, @@ -54689,7 +55002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1091), 1, aux_sym__bubbleScope_repeat1, - [22022] = 4, + [22029] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2724), 1, @@ -54698,7 +55011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1283), 1, sym__start_column, - [22035] = 4, + [22042] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2726), 1, @@ -54707,7 +55020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1287), 1, sym__end_column, - [22048] = 4, + [22055] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -54716,7 +55029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1288), 1, sym__end_line, - [22061] = 4, + [22068] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2724), 1, @@ -54725,7 +55038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1291), 1, sym__start_column, - [22074] = 4, + [22081] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -54734,7 +55047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1293), 1, sym__end_line, - [22087] = 4, + [22094] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2726), 1, @@ -54743,7 +55056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1294), 1, sym__end_column, - [22100] = 4, + [22107] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2460), 1, @@ -54752,7 +55065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(1089), 1, aux_sym_list_repeat1, - [22113] = 4, + [22120] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2724), 1, @@ -54761,7 +55074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1295), 1, sym__start_column, - [22126] = 4, + [22133] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2972), 1, @@ -54770,7 +55083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1088), 1, aux_sym_nodeLike_repeat1, - [22139] = 4, + [22146] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2726), 1, @@ -54779,7 +55092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1203), 1, sym__end_column, - [22152] = 4, + [22159] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2891), 1, @@ -54788,7 +55101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2980), 1, anon_sym_EQ, - [22165] = 4, + [22172] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(369), 1, @@ -54797,7 +55110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1160), 1, aux_sym_nodeLike_repeat1, - [22178] = 4, + [22185] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(995), 1, @@ -54806,7 +55119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1151), 1, aux_sym_predicateDefinitionBody_repeat1, - [22191] = 4, + [22198] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(979), 1, @@ -54815,14 +55128,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1151), 1, aux_sym_predicateDefinitionBody_repeat1, - [22204] = 2, + [22211] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1302), 3, anon_sym_LBRACE, anon_sym_LPAREN, sym_doubleQuoteSnippet, - [22213] = 4, + [22220] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, @@ -54831,7 +55144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1151), 1, aux_sym_predicateDefinitionBody_repeat1, - [22226] = 4, + [22233] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1486), 1, @@ -54840,7 +55153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2990), 1, anon_sym_EQ, - [22239] = 4, + [22246] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2992), 1, @@ -54849,7 +55162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1068), 1, aux_sym_nodeLike_repeat1, - [22252] = 4, + [22259] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2996), 1, @@ -54858,7 +55171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1069), 1, aux_sym_predicateDefinitionBody_repeat1, - [22265] = 4, + [22272] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3000), 1, @@ -54867,7 +55180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1070), 1, aux_sym_predicateDefinitionBody_repeat1, - [22278] = 4, + [22285] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3004), 1, @@ -54876,7 +55189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1072), 1, aux_sym_predicateDefinitionBody_repeat1, - [22291] = 4, + [22298] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(973), 1, @@ -54885,7 +55198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1151), 1, aux_sym_predicateDefinitionBody_repeat1, - [22304] = 4, + [22311] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3010), 1, @@ -54894,7 +55207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1143), 1, aux_sym_map_repeat1, - [22317] = 4, + [22324] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2492), 1, @@ -54903,7 +55216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(1111), 1, aux_sym_list_repeat1, - [22330] = 4, + [22337] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3014), 1, @@ -54912,7 +55225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1154), 1, aux_sym__bubbleScope_repeat1, - [22343] = 4, + [22350] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(305), 1, @@ -54921,7 +55234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1046), 1, aux_sym_list_repeat1, - [22356] = 4, + [22363] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(437), 1, @@ -54930,7 +55243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1160), 1, aux_sym_nodeLike_repeat1, - [22369] = 4, + [22376] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3022), 1, @@ -54939,7 +55252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1078), 1, aux_sym_predicateDefinitionBody_repeat1, - [22382] = 4, + [22389] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(523), 1, @@ -54948,7 +55261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1123), 1, aux_sym_sequential_repeat1, - [22395] = 4, + [22402] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(525), 1, @@ -54957,7 +55270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1123), 1, aux_sym_sequential_repeat1, - [22408] = 4, + [22415] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(529), 1, @@ -54966,7 +55279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1123), 1, aux_sym_sequential_repeat1, - [22421] = 4, + [22428] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(329), 1, @@ -54975,7 +55288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1160), 1, aux_sym_nodeLike_repeat1, - [22434] = 4, + [22441] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(249), 1, @@ -54984,7 +55297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1046), 1, aux_sym_list_repeat1, - [22447] = 4, + [22454] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(531), 1, @@ -54993,7 +55306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1123), 1, aux_sym_sequential_repeat1, - [22460] = 4, + [22467] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3038), 1, @@ -55002,7 +55315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1154), 1, aux_sym__bubbleScope_repeat1, - [22473] = 4, + [22480] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2664), 1, @@ -55011,7 +55324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [22486] = 4, + [22493] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(3044), 1, @@ -55020,7 +55333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1108), 1, aux_sym_source_file_repeat1, - [22499] = 4, + [22506] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2654), 1, @@ -55029,7 +55342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [22512] = 4, + [22519] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(181), 1, @@ -55038,7 +55351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [22525] = 4, + [22532] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(3052), 1, @@ -55047,7 +55360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1181), 1, aux_sym_source_file_repeat1, - [22538] = 4, + [22545] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(447), 1, @@ -55056,7 +55369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1123), 1, aux_sym_sequential_repeat1, - [22551] = 4, + [22558] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(181), 1, @@ -55065,7 +55378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1176), 1, aux_sym_source_file_repeat1, - [22564] = 4, + [22571] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2855), 1, @@ -55074,7 +55387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1322), 1, sym_mapElement, - [22577] = 4, + [22584] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(477), 1, @@ -55083,7 +55396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1123), 1, aux_sym_sequential_repeat1, - [22590] = 4, + [22597] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(121), 1, @@ -55092,7 +55405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1184), 1, aux_sym_source_file_repeat1, - [22603] = 4, + [22610] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1454), 1, @@ -55101,7 +55414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(3064), 1, anon_sym_RBRACK, - [22616] = 4, + [22623] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3066), 1, @@ -55110,7 +55423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1081), 1, aux_sym__bubbleScope_repeat1, - [22629] = 4, + [22636] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(455), 1, @@ -55119,7 +55432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1123), 1, aux_sym_sequential_repeat1, - [22642] = 4, + [22649] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2500), 1, @@ -55128,7 +55441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(1082), 1, aux_sym_list_repeat1, - [22655] = 4, + [22662] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3072), 1, @@ -55137,7 +55450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1083), 1, aux_sym_nodeLike_repeat1, - [22668] = 4, + [22675] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2630), 1, @@ -55146,7 +55459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [22681] = 4, + [22688] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2632), 1, @@ -55155,7 +55468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [22694] = 4, + [22701] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2674), 1, @@ -55164,7 +55477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [22707] = 4, + [22714] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(3082), 1, @@ -55173,7 +55486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1191), 1, aux_sym_source_file_repeat1, - [22720] = 4, + [22727] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(309), 1, @@ -55182,7 +55495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1046), 1, aux_sym_list_repeat1, - [22733] = 4, + [22740] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2666), 1, @@ -55191,7 +55504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [22746] = 4, + [22753] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(3090), 1, @@ -55200,7 +55513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1200), 1, aux_sym_source_file_repeat1, - [22759] = 4, + [22766] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2668), 1, @@ -55209,7 +55522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [22772] = 4, + [22779] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3096), 1, @@ -55218,7 +55531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1043), 1, aux_sym__bubbleScope_repeat1, - [22785] = 4, + [22792] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(193), 1, @@ -55227,7 +55540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1195), 1, aux_sym_source_file_repeat1, - [22798] = 4, + [22805] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(3102), 1, @@ -55236,7 +55549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1166), 1, aux_sym_source_file_repeat1, - [22811] = 4, + [22818] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2714), 1, @@ -55245,7 +55558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [22824] = 4, + [22831] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2694), 1, @@ -55254,7 +55567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [22837] = 4, + [22844] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(307), 1, @@ -55263,7 +55576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1046), 1, aux_sym_list_repeat1, - [22850] = 4, + [22857] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(3112), 1, @@ -55272,7 +55585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1165), 1, aux_sym_source_file_repeat1, - [22863] = 4, + [22870] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2680), 1, @@ -55281,7 +55594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [22876] = 4, + [22883] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2540), 1, @@ -55290,7 +55603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1123), 1, aux_sym_sequential_repeat1, - [22889] = 4, + [22896] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3121), 1, @@ -55299,7 +55612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1149), 1, aux_sym_predicateDefinitionBody_repeat1, - [22902] = 4, + [22909] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2710), 1, @@ -55308,7 +55621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [22915] = 4, + [22922] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2708), 1, @@ -55317,7 +55630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [22928] = 4, + [22935] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(3129), 1, @@ -55326,7 +55639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1162), 1, aux_sym_source_file_repeat1, - [22941] = 4, + [22948] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1009), 1, @@ -55335,7 +55648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1151), 1, aux_sym_predicateDefinitionBody_repeat1, - [22954] = 4, + [22961] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3135), 1, @@ -55344,7 +55657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1154), 1, aux_sym__bubbleScope_repeat1, - [22967] = 4, + [22974] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3139), 1, @@ -55353,7 +55666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1016), 1, aux_sym_map_repeat1, - [22980] = 4, + [22987] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2855), 1, @@ -55362,7 +55675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1322), 1, sym_mapElement, - [22993] = 4, + [23000] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(115), 1, @@ -55371,7 +55684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1050), 1, aux_sym_source_file_repeat1, - [23006] = 4, + [23013] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3145), 1, @@ -55380,7 +55693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1150), 1, aux_sym_predicateDefinitionBody_repeat1, - [23019] = 4, + [23026] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2855), 1, @@ -55389,7 +55702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1322), 1, sym_mapElement, - [23032] = 4, + [23039] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2504), 1, @@ -55398,7 +55711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(1120), 1, aux_sym_list_repeat1, - [23045] = 4, + [23052] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(471), 1, @@ -55407,7 +55720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1123), 1, aux_sym_sequential_repeat1, - [23058] = 4, + [23065] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3153), 1, @@ -55416,7 +55729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1130), 1, aux_sym_map_repeat1, - [23071] = 4, + [23078] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1454), 1, @@ -55425,7 +55738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(3157), 1, anon_sym_EQ, - [23084] = 4, + [23091] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(3159), 1, @@ -55434,7 +55747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1031), 1, aux_sym_source_file_repeat1, - [23097] = 4, + [23104] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3163), 1, @@ -55443,7 +55756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1146), 1, aux_sym_predicateDefinitionBody_repeat1, - [23110] = 4, + [23117] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1001), 1, @@ -55452,7 +55765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1151), 1, aux_sym_predicateDefinitionBody_repeat1, - [23123] = 4, + [23130] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2855), 1, @@ -55461,7 +55774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1322), 1, sym_mapElement, - [23136] = 4, + [23143] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3169), 1, @@ -55470,7 +55783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1016), 1, aux_sym_map_repeat1, - [23149] = 4, + [23156] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3173), 1, @@ -55479,13 +55792,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1141), 1, aux_sym_predicateDefinitionBody_repeat1, - [23162] = 1, + [23169] = 1, ACTIONS(3177), 4, anon_sym_LBRACE, anon_sym_RBRACE, sym_noBraces, sym_comment, - [23169] = 4, + [23176] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(969), 1, @@ -55494,7 +55807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1151), 1, aux_sym_predicateDefinitionBody_repeat1, - [23182] = 4, + [23189] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(313), 1, @@ -55503,7 +55816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(1137), 1, sym_mapElement, - [23195] = 4, + [23202] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2688), 1, @@ -55512,7 +55825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [23208] = 4, + [23215] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(997), 1, @@ -55521,7 +55834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1151), 1, aux_sym_predicateDefinitionBody_repeat1, - [23221] = 4, + [23228] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(983), 1, @@ -55530,7 +55843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1151), 1, aux_sym_predicateDefinitionBody_repeat1, - [23234] = 4, + [23241] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3187), 1, @@ -55539,7 +55852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1151), 1, aux_sym_predicateDefinitionBody_repeat1, - [23247] = 4, + [23254] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(975), 1, @@ -55548,7 +55861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1151), 1, aux_sym_predicateDefinitionBody_repeat1, - [23260] = 4, + [23267] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(3194), 1, @@ -55557,7 +55870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1112), 1, aux_sym_source_file_repeat1, - [23273] = 4, + [23280] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3198), 1, @@ -55566,7 +55879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1154), 1, aux_sym__bubbleScope_repeat1, - [23286] = 4, + [23293] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3203), 1, @@ -55575,7 +55888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1129), 1, aux_sym__bubbleScope_repeat1, - [23299] = 4, + [23306] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2889), 1, @@ -55584,7 +55897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2978), 1, anon_sym_LPAREN, - [23312] = 4, + [23319] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3207), 1, @@ -55593,7 +55906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1154), 1, aux_sym__bubbleScope_repeat1, - [23325] = 4, + [23332] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3211), 1, @@ -55602,7 +55915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1154), 1, aux_sym__bubbleScope_repeat1, - [23338] = 4, + [23345] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3215), 1, @@ -55611,7 +55924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1154), 1, aux_sym__bubbleScope_repeat1, - [23351] = 4, + [23358] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3219), 1, @@ -55620,7 +55933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1160), 1, aux_sym_nodeLike_repeat1, - [23364] = 4, + [23371] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(193), 1, @@ -55629,7 +55942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [23377] = 4, + [23384] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2716), 1, @@ -55638,7 +55951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [23390] = 4, + [23397] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(3226), 1, @@ -55647,7 +55960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1148), 1, aux_sym_source_file_repeat1, - [23403] = 4, + [23410] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2698), 1, @@ -55656,7 +55969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [23416] = 4, + [23423] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2700), 1, @@ -55665,7 +55978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [23429] = 4, + [23436] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2696), 1, @@ -55674,7 +55987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [23442] = 4, + [23449] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -55683,7 +55996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1251), 1, sym__start_line, - [23455] = 4, + [23462] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -55692,7 +56005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1250), 1, sym__end_line, - [23468] = 4, + [23475] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -55701,7 +56014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1257), 1, sym__start_line, - [23481] = 4, + [23488] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2724), 1, @@ -55710,7 +56023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1239), 1, sym__start_column, - [23494] = 4, + [23501] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2628), 1, @@ -55719,7 +56032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [23507] = 4, + [23514] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -55728,7 +56041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1204), 1, sym__end_line, - [23520] = 4, + [23527] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(3248), 1, @@ -55737,7 +56050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1109), 1, aux_sym_source_file_repeat1, - [23533] = 4, + [23540] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2724), 1, @@ -55746,7 +56059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1214), 1, sym__start_column, - [23546] = 4, + [23553] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -55755,7 +56068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1229), 1, sym__start_line, - [23559] = 4, + [23566] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2636), 1, @@ -55764,7 +56077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [23572] = 4, + [23579] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -55773,7 +56086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1240), 1, sym__end_line, - [23585] = 4, + [23592] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(401), 1, @@ -55782,7 +56095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1160), 1, aux_sym_nodeLike_repeat1, - [23598] = 4, + [23605] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -55791,7 +56104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1242), 1, sym__start_line, - [23611] = 4, + [23618] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2726), 1, @@ -55800,7 +56113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1368), 1, sym__end_column, - [23624] = 4, + [23631] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2638), 1, @@ -55809,7 +56122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [23637] = 4, + [23644] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -55818,7 +56131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1205), 1, sym__end_line, - [23650] = 4, + [23657] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2726), 1, @@ -55827,7 +56140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1209), 1, sym__end_column, - [23663] = 4, + [23670] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(173), 1, @@ -55836,7 +56149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [23676] = 4, + [23683] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -55845,7 +56158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1212), 1, sym__start_line, - [23689] = 4, + [23696] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(3276), 1, @@ -55854,7 +56167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1122), 1, aux_sym_source_file_repeat1, - [23702] = 4, + [23709] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2724), 1, @@ -55863,7 +56176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1213), 1, sym__start_column, - [23715] = 4, + [23722] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(173), 1, @@ -55872,7 +56185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1118), 1, aux_sym_source_file_repeat1, - [23728] = 4, + [23735] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, @@ -55881,7 +56194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1215), 1, sym__start_line, - [23741] = 4, + [23748] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2726), 1, @@ -55890,7 +56203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1217), 1, sym__end_column, - [23754] = 4, + [23761] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2640), 1, @@ -55899,7 +56212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [23767] = 4, + [23774] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2724), 1, @@ -55908,7 +56221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1219), 1, sym__start_column, - [23780] = 4, + [23787] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2726), 1, @@ -55917,7 +56230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1221), 1, sym__end_column, - [23793] = 4, + [23800] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -55926,7 +56239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1223), 1, sym__end_line, - [23806] = 4, + [23813] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2644), 1, @@ -55935,7 +56248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [23819] = 4, + [23826] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2724), 1, @@ -55944,7 +56257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1225), 1, sym__start_column, - [23832] = 4, + [23839] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(3298), 1, @@ -55953,7 +56266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(1125), 1, aux_sym_source_file_repeat1, - [23845] = 4, + [23852] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, @@ -55962,7 +56275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1227), 1, sym__end_line, - [23858] = 4, + [23865] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2726), 1, @@ -55971,7 +56284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1228), 1, sym__end_column, - [23871] = 4, + [23878] = 4, ACTIONS(113), 1, sym_comment, ACTIONS(2648), 1, @@ -55980,7 +56293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, STATE(242), 1, aux_sym_source_file_repeat1, - [23884] = 4, + [23891] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2724), 1, @@ -55989,2060 +56302,2060 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1230), 1, sym__start_column, - [23897] = 3, + [23904] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3310), 1, anon_sym_COMMA, ACTIONS(3312), 1, anon_sym_RPAREN, - [23907] = 3, + [23914] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3314), 1, anon_sym_COMMA, ACTIONS(3316), 1, anon_sym_RPAREN, - [23917] = 3, + [23924] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3318), 1, anon_sym_COMMA, ACTIONS(3320), 1, anon_sym_RPAREN, - [23927] = 3, + [23934] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3322), 1, anon_sym_COMMA, ACTIONS(3324), 1, anon_sym_RPAREN, - [23937] = 3, + [23944] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2812), 1, anon_sym_LBRACE, STATE(248), 1, sym_patternDefinitionBody, - [23947] = 3, + [23954] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3326), 1, sym_name, ACTIONS(3328), 1, sym_variable, - [23957] = 3, + [23964] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3330), 1, anon_sym_RPAREN, ACTIONS(3332), 1, sym_variable, - [23967] = 3, + [23974] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3334), 1, anon_sym_COMMA, ACTIONS(3336), 1, anon_sym_RPAREN, - [23977] = 3, + [23984] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3209), 1, anon_sym_RPAREN, ACTIONS(3332), 1, sym_variable, - [23987] = 2, + [23994] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3201), 2, anon_sym_COMMA, anon_sym_RPAREN, - [23995] = 3, + [24002] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3338), 1, anon_sym_COMMA, ACTIONS(3340), 1, anon_sym_RPAREN, - [24005] = 3, + [24012] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3342), 1, anon_sym_COMMA, ACTIONS(3344), 1, anon_sym_RPAREN, - [24015] = 3, + [24022] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3346), 1, anon_sym_COMMA, ACTIONS(3348), 1, anon_sym_RPAREN, - [24025] = 3, + [24032] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3350), 1, anon_sym_COMMA, ACTIONS(3352), 1, anon_sym_RPAREN, - [24035] = 3, + [24042] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3213), 1, anon_sym_RPAREN, ACTIONS(3332), 1, sym_variable, - [24045] = 3, + [24052] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3354), 1, anon_sym_COMMA, ACTIONS(3356), 1, anon_sym_RPAREN, - [24055] = 3, + [24062] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3358), 1, anon_sym_LBRACE, STATE(269), 1, sym_predicateDefinitionBody, - [24065] = 3, + [24072] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3360), 1, anon_sym_COMMA, ACTIONS(3362), 1, anon_sym_RPAREN, - [24075] = 3, + [24082] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3332), 1, sym_variable, ACTIONS(3364), 1, anon_sym_RPAREN, - [24085] = 3, + [24092] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3366), 1, anon_sym_COMMA, ACTIONS(3368), 1, anon_sym_RPAREN, - [24095] = 3, + [24102] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3370), 1, anon_sym_LBRACE, ACTIONS(3372), 1, anon_sym_LPAREN, - [24105] = 3, + [24112] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3374), 1, anon_sym_COMMA, ACTIONS(3376), 1, anon_sym_RPAREN, - [24115] = 3, + [24122] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3378), 1, anon_sym_LBRACE, STATE(265), 1, sym_foreignFunctionBody, - [24125] = 3, + [24132] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3380), 1, anon_sym_COMMA, ACTIONS(3382), 1, anon_sym_RPAREN, - [24135] = 3, + [24142] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3217), 1, anon_sym_RPAREN, ACTIONS(3332), 1, sym_variable, - [24145] = 3, + [24152] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3384), 1, anon_sym_COMMA, ACTIONS(3386), 1, anon_sym_RPAREN, - [24155] = 3, + [24162] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3388), 1, anon_sym_COMMA, ACTIONS(3390), 1, anon_sym_RPAREN, - [24165] = 3, + [24172] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3392), 1, anon_sym_COMMA, ACTIONS(3394), 1, anon_sym_RPAREN, - [24175] = 3, + [24182] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3396), 1, anon_sym_COMMA, ACTIONS(3398), 1, anon_sym_RPAREN, - [24185] = 3, + [24192] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2891), 1, anon_sym_LBRACK, ACTIONS(3400), 1, anon_sym_LPAREN, - [24195] = 3, + [24202] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3402), 1, anon_sym_COMMA, ACTIONS(3404), 1, anon_sym_RPAREN, - [24205] = 3, + [24212] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3378), 1, anon_sym_LBRACE, STATE(292), 1, sym_foreignFunctionBody, - [24215] = 3, + [24222] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3378), 1, anon_sym_LBRACE, STATE(274), 1, sym_foreignFunctionBody, - [24225] = 3, + [24232] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3406), 1, anon_sym_LBRACE, ACTIONS(3408), 1, anon_sym_LPAREN, - [24235] = 3, + [24242] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2812), 1, anon_sym_LBRACE, STATE(290), 1, sym_patternDefinitionBody, - [24245] = 2, + [24252] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3222), 2, anon_sym_COMMA, anon_sym_RPAREN, - [24253] = 3, + [24260] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2812), 1, anon_sym_LBRACE, STATE(282), 1, sym_patternDefinitionBody, - [24263] = 3, + [24270] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3410), 1, anon_sym_COMMA, ACTIONS(3412), 1, anon_sym_RPAREN, - [24273] = 3, + [24280] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3414), 1, anon_sym_COMMA, ACTIONS(3416), 1, anon_sym_RPAREN, - [24283] = 2, + [24290] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3418), 2, anon_sym_COMMA, anon_sym_RBRACK, - [24291] = 3, + [24298] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3420), 1, anon_sym_COMMA, ACTIONS(3422), 1, anon_sym_RPAREN, - [24301] = 3, + [24308] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3378), 1, anon_sym_LBRACE, STATE(252), 1, sym_foreignFunctionBody, - [24311] = 2, + [24318] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3190), 2, anon_sym_COMMA, anon_sym_RBRACE, - [24319] = 3, + [24326] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2891), 1, anon_sym_LBRACK, ACTIONS(2978), 1, anon_sym_LPAREN, - [24329] = 3, + [24336] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3332), 1, sym_variable, ACTIONS(3424), 1, anon_sym_RPAREN, - [24339] = 3, + [24346] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3426), 1, anon_sym_COMMA, ACTIONS(3428), 1, anon_sym_RPAREN, - [24349] = 3, + [24356] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3358), 1, anon_sym_LBRACE, STATE(264), 1, sym_predicateDefinitionBody, - [24359] = 3, + [24366] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3358), 1, anon_sym_LBRACE, STATE(279), 1, sym_predicateDefinitionBody, - [24369] = 3, + [24376] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3430), 1, anon_sym_COMMA, ACTIONS(3432), 1, anon_sym_RPAREN, - [24379] = 3, + [24386] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3434), 1, anon_sym_COMMA, ACTIONS(3436), 1, anon_sym_RPAREN, - [24389] = 3, + [24396] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3438), 1, anon_sym_COMMA, ACTIONS(3440), 1, anon_sym_RPAREN, - [24399] = 3, + [24406] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3442), 1, anon_sym_COMMA, ACTIONS(3444), 1, anon_sym_RPAREN, - [24409] = 3, + [24416] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2812), 1, anon_sym_LBRACE, STATE(249), 1, sym_patternDefinitionBody, - [24419] = 3, + [24426] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3446), 1, anon_sym_COMMA, ACTIONS(3448), 1, anon_sym_RPAREN, - [24429] = 3, + [24436] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3450), 1, anon_sym_COMMA, ACTIONS(3452), 1, anon_sym_RPAREN, - [24439] = 3, + [24446] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3454), 1, anon_sym_COMMA, ACTIONS(3456), 1, anon_sym_RPAREN, - [24449] = 3, + [24456] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2812), 1, anon_sym_LBRACE, STATE(272), 1, sym_patternDefinitionBody, - [24459] = 3, + [24466] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3458), 1, anon_sym_COMMA, ACTIONS(3460), 1, anon_sym_RPAREN, - [24469] = 3, + [24476] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3462), 1, anon_sym_COMMA, ACTIONS(3464), 1, anon_sym_RPAREN, - [24479] = 3, + [24486] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3466), 1, anon_sym_COMMA, ACTIONS(3468), 1, anon_sym_RPAREN, - [24489] = 3, + [24496] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3470), 1, anon_sym_COMMA, ACTIONS(3472), 1, anon_sym_RPAREN, - [24499] = 3, + [24506] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3474), 1, anon_sym_COMMA, ACTIONS(3476), 1, anon_sym_RPAREN, - [24509] = 3, + [24516] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3478), 1, anon_sym_COMMA, ACTIONS(3480), 1, anon_sym_RPAREN, - [24519] = 3, + [24526] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3482), 1, anon_sym_COMMA, ACTIONS(3484), 1, anon_sym_RPAREN, - [24529] = 3, + [24536] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3486), 1, anon_sym_COMMA, ACTIONS(3488), 1, anon_sym_RPAREN, - [24539] = 3, + [24546] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3490), 1, anon_sym_COMMA, ACTIONS(3492), 1, anon_sym_RPAREN, - [24549] = 3, + [24556] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3494), 1, anon_sym_COMMA, ACTIONS(3496), 1, anon_sym_RPAREN, - [24559] = 3, + [24566] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3332), 1, sym_variable, ACTIONS(3498), 1, anon_sym_RPAREN, - [24569] = 3, + [24576] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2887), 1, anon_sym_LPAREN, ACTIONS(2891), 1, anon_sym_LBRACK, - [24579] = 3, + [24586] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3500), 1, anon_sym_COMMA, ACTIONS(3502), 1, anon_sym_RPAREN, - [24589] = 3, + [24596] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3504), 1, anon_sym_COMMA, ACTIONS(3506), 1, anon_sym_RPAREN, - [24599] = 3, + [24606] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3508), 1, anon_sym_COMMA, ACTIONS(3510), 1, anon_sym_RPAREN, - [24609] = 3, + [24616] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3512), 1, anon_sym_COMMA, ACTIONS(3514), 1, anon_sym_RPAREN, - [24619] = 3, + [24626] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3516), 1, anon_sym_COMMA, ACTIONS(3518), 1, anon_sym_RPAREN, - [24629] = 3, + [24636] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3520), 1, anon_sym_COMMA, ACTIONS(3522), 1, anon_sym_RPAREN, - [24639] = 3, + [24646] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3524), 1, anon_sym_COMMA, ACTIONS(3526), 1, anon_sym_RPAREN, - [24649] = 3, + [24656] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3528), 1, anon_sym_RPAREN, ACTIONS(3530), 1, sym_variable, - [24659] = 3, + [24666] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3532), 1, anon_sym_RPAREN, ACTIONS(3534), 1, sym_variable, - [24669] = 3, + [24676] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3536), 1, anon_sym_COMMA, ACTIONS(3538), 1, anon_sym_RPAREN, - [24679] = 3, + [24686] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3540), 1, anon_sym_COMMA, ACTIONS(3542), 1, anon_sym_RPAREN, - [24689] = 3, + [24696] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3544), 1, anon_sym_COMMA, ACTIONS(3546), 1, anon_sym_RPAREN, - [24699] = 3, + [24706] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3548), 1, anon_sym_COMMA, ACTIONS(3550), 1, anon_sym_RPAREN, - [24709] = 3, + [24716] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3552), 1, sym_name, ACTIONS(3554), 1, sym_variable, - [24719] = 3, + [24726] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2812), 1, anon_sym_LBRACE, STATE(281), 1, sym_patternDefinitionBody, - [24729] = 3, + [24736] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3556), 1, anon_sym_COMMA, ACTIONS(3558), 1, anon_sym_RPAREN, - [24739] = 3, + [24746] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3560), 1, anon_sym_COMMA, ACTIONS(3562), 1, anon_sym_RPAREN, - [24749] = 3, + [24756] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3564), 1, anon_sym_COMMA, ACTIONS(3566), 1, anon_sym_RPAREN, - [24759] = 3, + [24766] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2812), 1, anon_sym_LBRACE, STATE(278), 1, sym_patternDefinitionBody, - [24769] = 3, + [24776] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3137), 1, anon_sym_RPAREN, ACTIONS(3332), 1, sym_variable, - [24779] = 3, + [24786] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3568), 1, anon_sym_COMMA, ACTIONS(3570), 1, anon_sym_RPAREN, - [24789] = 3, + [24796] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2812), 1, anon_sym_LBRACE, STATE(273), 1, sym_patternDefinitionBody, - [24799] = 3, + [24806] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3572), 1, anon_sym_COMMA, ACTIONS(3574), 1, anon_sym_RPAREN, - [24809] = 3, + [24816] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3576), 1, anon_sym_COMMA, ACTIONS(3578), 1, anon_sym_RPAREN, - [24819] = 3, + [24826] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3580), 1, anon_sym_COMMA, ACTIONS(3582), 1, anon_sym_RPAREN, - [24829] = 3, + [24836] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3584), 1, anon_sym_COMMA, ACTIONS(3586), 1, anon_sym_RPAREN, - [24839] = 3, + [24846] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3588), 1, anon_sym_COMMA, ACTIONS(3590), 1, anon_sym_RPAREN, - [24849] = 3, + [24856] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3592), 1, anon_sym_COMMA, ACTIONS(3594), 1, anon_sym_RPAREN, - [24859] = 3, + [24866] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3332), 1, sym_variable, ACTIONS(3596), 1, anon_sym_RPAREN, - [24869] = 3, + [24876] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2855), 1, sym_name, STATE(1322), 1, sym_mapElement, - [24879] = 3, + [24886] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3598), 1, anon_sym_COMMA, ACTIONS(3600), 1, anon_sym_RPAREN, - [24889] = 3, + [24896] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3332), 1, sym_variable, ACTIONS(3602), 1, anon_sym_RPAREN, - [24899] = 3, + [24906] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2923), 1, anon_sym_RPAREN, ACTIONS(3332), 1, sym_variable, - [24909] = 2, + [24916] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2542), 2, anon_sym_COMMA, anon_sym_RBRACK, - [24917] = 3, + [24924] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3604), 1, anon_sym_RPAREN, ACTIONS(3606), 1, sym_variable, - [24927] = 3, + [24934] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1306), 1, anon_sym_LBRACE, ACTIONS(3608), 1, anon_sym_LPAREN, - [24937] = 3, + [24944] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3358), 1, anon_sym_LBRACE, STATE(253), 1, sym_predicateDefinitionBody, - [24947] = 2, + [24954] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3610), 2, anon_sym_COMMA, anon_sym_RPAREN, - [24955] = 2, + [24962] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3612), 2, anon_sym_COMMA, anon_sym_RPAREN, - [24963] = 3, + [24970] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3614), 1, anon_sym_COMMA, ACTIONS(3616), 1, anon_sym_RPAREN, - [24973] = 3, + [24980] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1188), 1, anon_sym_LBRACE, ACTIONS(3618), 1, anon_sym_SEMI, - [24983] = 3, + [24990] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3620), 1, anon_sym_COMMA, ACTIONS(3622), 1, anon_sym_RPAREN, - [24993] = 3, + [25000] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3624), 1, anon_sym_COMMA, ACTIONS(3626), 1, anon_sym_RPAREN, - [25003] = 3, + [25010] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3628), 1, anon_sym_COMMA, ACTIONS(3630), 1, anon_sym_RPAREN, - [25013] = 2, + [25020] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3632), 2, anon_sym_COMMA, anon_sym_RPAREN, - [25021] = 3, + [25028] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3634), 1, anon_sym_COMMA, ACTIONS(3636), 1, anon_sym_RPAREN, - [25031] = 2, + [25038] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3638), 2, anon_sym_COMMA, anon_sym_RPAREN, - [25039] = 2, + [25046] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3640), 2, anon_sym_COMMA, anon_sym_RPAREN, - [25047] = 2, + [25054] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3642), 2, anon_sym_COMMA, anon_sym_RPAREN, - [25055] = 3, + [25062] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3644), 1, anon_sym_COMMA, ACTIONS(3646), 1, anon_sym_RPAREN, - [25065] = 3, + [25072] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3648), 1, anon_sym_COMMA, ACTIONS(3650), 1, anon_sym_RPAREN, - [25075] = 2, + [25082] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2853), 2, anon_sym_COMMA, anon_sym_RBRACE, - [25083] = 3, + [25090] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3652), 1, anon_sym_COMMA, ACTIONS(3654), 1, anon_sym_RPAREN, - [25093] = 3, + [25100] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3656), 1, anon_sym_COMMA, ACTIONS(3658), 1, anon_sym_RPAREN, - [25103] = 3, + [25110] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3660), 1, anon_sym_COMMA, ACTIONS(3662), 1, anon_sym_RPAREN, - [25113] = 3, + [25120] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3664), 1, anon_sym_COMMA, ACTIONS(3666), 1, anon_sym_RPAREN, - [25123] = 3, + [25130] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3668), 1, anon_sym_COMMA, ACTIONS(3670), 1, anon_sym_RPAREN, - [25133] = 3, + [25140] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3672), 1, anon_sym_COMMA, ACTIONS(3674), 1, anon_sym_RPAREN, - [25143] = 3, + [25150] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3676), 1, anon_sym_COMMA, ACTIONS(3678), 1, anon_sym_RPAREN, - [25153] = 3, + [25160] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3680), 1, anon_sym_COMMA, ACTIONS(3682), 1, anon_sym_RPAREN, - [25163] = 3, + [25170] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3040), 1, anon_sym_RPAREN, ACTIONS(3332), 1, sym_variable, - [25173] = 3, + [25180] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3684), 1, anon_sym_COMMA, ACTIONS(3686), 1, anon_sym_RPAREN, - [25183] = 3, + [25190] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3688), 1, anon_sym_COMMA, ACTIONS(3690), 1, anon_sym_RPAREN, - [25193] = 2, + [25200] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3692), 2, anon_sym_COMMA, anon_sym_RPAREN, - [25201] = 3, + [25208] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3694), 1, anon_sym_COMMA, ACTIONS(3696), 1, anon_sym_RPAREN, - [25211] = 3, + [25218] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3698), 1, anon_sym_COMMA, ACTIONS(3700), 1, anon_sym_RPAREN, - [25221] = 3, + [25228] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3702), 1, anon_sym_COMMA, ACTIONS(3704), 1, anon_sym_RPAREN, - [25231] = 3, + [25238] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3706), 1, anon_sym_COMMA, ACTIONS(3708), 1, anon_sym_RPAREN, - [25241] = 2, + [25248] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3710), 2, anon_sym_COMMA, anon_sym_RPAREN, - [25249] = 3, + [25256] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3712), 1, anon_sym_COMMA, ACTIONS(3714), 1, anon_sym_RPAREN, - [25259] = 3, + [25266] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3716), 1, anon_sym_COMMA, ACTIONS(3718), 1, anon_sym_RPAREN, - [25269] = 3, + [25276] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3720), 1, anon_sym_COMMA, ACTIONS(3722), 1, anon_sym_RPAREN, - [25279] = 3, + [25286] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3724), 1, anon_sym_COMMA, ACTIONS(3726), 1, anon_sym_RPAREN, - [25289] = 3, + [25296] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3728), 1, anon_sym_COMMA, ACTIONS(3730), 1, anon_sym_RPAREN, - [25299] = 3, + [25306] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3732), 1, anon_sym_COMMA, ACTIONS(3734), 1, anon_sym_RPAREN, - [25309] = 3, + [25316] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3736), 1, anon_sym_COMMA, ACTIONS(3738), 1, anon_sym_RPAREN, - [25319] = 3, + [25326] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3740), 1, anon_sym_COMMA, ACTIONS(3742), 1, anon_sym_RPAREN, - [25329] = 3, + [25336] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3744), 1, anon_sym_COMMA, ACTIONS(3746), 1, anon_sym_RPAREN, - [25339] = 3, + [25346] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3748), 1, anon_sym_COMMA, ACTIONS(3750), 1, anon_sym_RPAREN, - [25349] = 3, + [25356] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3752), 1, anon_sym_COMMA, ACTIONS(3754), 1, anon_sym_RPAREN, - [25359] = 3, + [25366] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3756), 1, anon_sym_COMMA, ACTIONS(3758), 1, anon_sym_RPAREN, - [25369] = 3, + [25376] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3760), 1, anon_sym_COMMA, ACTIONS(3762), 1, anon_sym_RPAREN, - [25379] = 3, + [25386] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3764), 1, anon_sym_COMMA, ACTIONS(3766), 1, anon_sym_RPAREN, - [25389] = 3, + [25396] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3768), 1, anon_sym_COMMA, ACTIONS(3770), 1, anon_sym_RPAREN, - [25399] = 3, + [25406] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3772), 1, anon_sym_COMMA, ACTIONS(3774), 1, anon_sym_RPAREN, - [25409] = 3, + [25416] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3776), 1, anon_sym_COMMA, ACTIONS(3778), 1, anon_sym_RPAREN, - [25419] = 3, + [25426] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3780), 1, anon_sym_COMMA, ACTIONS(3782), 1, anon_sym_RPAREN, - [25429] = 3, + [25436] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3784), 1, anon_sym_COMMA, ACTIONS(3786), 1, anon_sym_RPAREN, - [25439] = 3, + [25446] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3788), 1, anon_sym_COMMA, ACTIONS(3790), 1, anon_sym_RPAREN, - [25449] = 3, + [25456] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3792), 1, anon_sym_COMMA, ACTIONS(3794), 1, anon_sym_RPAREN, - [25459] = 3, + [25466] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3796), 1, anon_sym_RPAREN, ACTIONS(3798), 1, sym_variable, - [25469] = 3, + [25476] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3016), 1, anon_sym_RPAREN, ACTIONS(3332), 1, sym_variable, - [25479] = 3, + [25486] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3800), 1, anon_sym_COMMA, ACTIONS(3802), 1, anon_sym_RPAREN, - [25489] = 3, + [25496] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3804), 1, anon_sym_RPAREN, ACTIONS(3806), 1, sym_variable, - [25499] = 3, + [25506] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3808), 1, anon_sym_COMMA, ACTIONS(3810), 1, anon_sym_RPAREN, - [25509] = 3, + [25516] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3812), 1, anon_sym_RPAREN, ACTIONS(3814), 1, sym_variable, - [25519] = 3, + [25526] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3816), 1, anon_sym_COMMA, ACTIONS(3818), 1, anon_sym_RPAREN, - [25529] = 3, + [25536] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3820), 1, anon_sym_COMMA, ACTIONS(3822), 1, anon_sym_RPAREN, - [25539] = 3, + [25546] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3824), 1, anon_sym_RPAREN, ACTIONS(3826), 1, sym_variable, - [25549] = 3, + [25556] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3828), 1, anon_sym_COMMA, ACTIONS(3830), 1, anon_sym_RPAREN, - [25559] = 2, + [25566] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3832), 2, sym_variable, sym_stringConstant, - [25567] = 3, + [25574] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3834), 1, anon_sym_COMMA, ACTIONS(3836), 1, anon_sym_RPAREN, - [25577] = 3, + [25584] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3838), 1, anon_sym_COMMA, ACTIONS(3840), 1, anon_sym_RPAREN, - [25587] = 3, + [25594] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3842), 1, anon_sym_COMMA, ACTIONS(3844), 1, anon_sym_RPAREN, - [25597] = 3, + [25604] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3846), 1, anon_sym_COMMA, ACTIONS(3848), 1, anon_sym_RPAREN, - [25607] = 3, + [25614] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3850), 1, anon_sym_COMMA, ACTIONS(3852), 1, anon_sym_RPAREN, - [25617] = 3, + [25624] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3854), 1, anon_sym_COMMA, ACTIONS(3856), 1, anon_sym_RPAREN, - [25627] = 3, + [25634] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3858), 1, anon_sym_COMMA, ACTIONS(3860), 1, anon_sym_RPAREN, - [25637] = 3, + [25644] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3862), 1, anon_sym_COMMA, ACTIONS(3864), 1, anon_sym_RPAREN, - [25647] = 3, + [25654] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3866), 1, anon_sym_COMMA, ACTIONS(3868), 1, anon_sym_RPAREN, - [25657] = 3, + [25664] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3870), 1, anon_sym_COMMA, ACTIONS(3872), 1, anon_sym_RPAREN, - [25667] = 3, + [25674] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3874), 1, anon_sym_COMMA, ACTIONS(3876), 1, anon_sym_RPAREN, - [25677] = 3, + [25684] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3878), 1, anon_sym_COMMA, ACTIONS(3880), 1, anon_sym_RPAREN, - [25687] = 3, + [25694] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3882), 1, anon_sym_COMMA, ACTIONS(3884), 1, anon_sym_RPAREN, - [25697] = 3, + [25704] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3886), 1, anon_sym_COMMA, ACTIONS(3888), 1, anon_sym_RPAREN, - [25707] = 3, + [25714] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3890), 1, anon_sym_COMMA, ACTIONS(3892), 1, anon_sym_RPAREN, - [25717] = 3, + [25724] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3894), 1, anon_sym_COMMA, ACTIONS(3896), 1, anon_sym_RPAREN, - [25727] = 3, + [25734] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3898), 1, anon_sym_COMMA, ACTIONS(3900), 1, anon_sym_RPAREN, - [25737] = 3, + [25744] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3902), 1, anon_sym_COMMA, ACTIONS(3904), 1, anon_sym_RPAREN, - [25747] = 3, + [25754] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3906), 1, anon_sym_COMMA, ACTIONS(3908), 1, anon_sym_RPAREN, - [25757] = 3, + [25764] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3910), 1, anon_sym_COMMA, ACTIONS(3912), 1, anon_sym_RPAREN, - [25767] = 3, + [25774] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3914), 1, anon_sym_COMMA, ACTIONS(3916), 1, anon_sym_RPAREN, - [25777] = 3, + [25784] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3332), 1, sym_variable, ACTIONS(3918), 1, anon_sym_RPAREN, - [25787] = 3, + [25794] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3920), 1, anon_sym_COMMA, ACTIONS(3922), 1, anon_sym_RPAREN, - [25797] = 3, + [25804] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3924), 1, anon_sym_COMMA, ACTIONS(3926), 1, anon_sym_RPAREN, - [25807] = 3, + [25814] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3928), 1, anon_sym_COMMA, ACTIONS(3930), 1, anon_sym_RPAREN, - [25817] = 3, + [25824] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3932), 1, anon_sym_COMMA, ACTIONS(3934), 1, anon_sym_RPAREN, - [25827] = 3, + [25834] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3936), 1, anon_sym_COMMA, ACTIONS(3938), 1, anon_sym_RPAREN, - [25837] = 3, + [25844] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3940), 1, anon_sym_LPAREN, ACTIONS(3942), 1, anon_sym_LBRACK, - [25847] = 3, + [25854] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3944), 1, anon_sym_COMMA, ACTIONS(3946), 1, anon_sym_RPAREN, - [25857] = 2, + [25864] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3948), 1, anon_sym_LPAREN, - [25864] = 2, + [25871] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3950), 1, sym_backtickSnippet, - [25871] = 2, + [25878] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3952), 1, sym_intConstant, - [25878] = 2, + [25885] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3954), 1, sym_intConstant, - [25885] = 2, + [25892] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3956), 1, anon_sym_LPAREN, - [25892] = 2, + [25899] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3958), 1, ts_builtin_sym_end, - [25899] = 2, + [25906] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3960), 1, sym_intConstant, - [25906] = 2, + [25913] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3962), 1, sym_doubleQuoteSnippet, - [25913] = 2, + [25920] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3964), 1, anon_sym_RPAREN, - [25920] = 2, + [25927] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3966), 1, anon_sym_RPAREN, - [25927] = 2, + [25934] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3968), 1, sym_intConstant, - [25934] = 2, + [25941] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3970), 1, anon_sym_RPAREN, - [25941] = 2, + [25948] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3972), 1, sym_variable, - [25948] = 2, + [25955] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2889), 1, anon_sym_COLON, - [25955] = 2, + [25962] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3974), 1, sym_name, - [25962] = 2, + [25969] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3976), 1, anon_sym_LBRACE, - [25969] = 2, + [25976] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3978), 1, anon_sym_LPAREN, - [25976] = 2, + [25983] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3980), 1, anon_sym_LPAREN, - [25983] = 2, + [25990] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3982), 1, anon_sym_EQ_GT, - [25990] = 2, + [25997] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3984), 1, anon_sym_EQ, - [25997] = 2, + [26004] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3986), 1, anon_sym_EQ, - [26004] = 2, + [26011] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3988), 1, anon_sym_RPAREN, - [26011] = 2, + [26018] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3990), 1, anon_sym_RPAREN, - [26018] = 2, + [26025] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3992), 1, anon_sym_EQ, - [26025] = 2, + [26032] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3994), 1, anon_sym_RPAREN, - [26032] = 2, + [26039] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3996), 1, anon_sym_LPAREN, - [26039] = 2, + [26046] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3998), 1, anon_sym_EQ, - [26046] = 2, + [26053] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4000), 1, anon_sym_RPAREN, - [26053] = 2, + [26060] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4002), 1, anon_sym_LBRACE, - [26060] = 2, + [26067] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4004), 1, sym_name, - [26067] = 2, + [26074] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4006), 1, sym_name, - [26074] = 2, + [26081] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4008), 1, sym_name, - [26081] = 2, + [26088] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4010), 1, anon_sym_RPAREN, - [26088] = 2, + [26095] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4012), 1, anon_sym_EQ, - [26095] = 2, + [26102] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1298), 1, anon_sym_LBRACE, - [26102] = 2, + [26109] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3064), 1, anon_sym_RBRACK, - [26109] = 2, + [26116] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4014), 1, anon_sym_RPAREN, - [26116] = 2, + [26123] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4016), 1, anon_sym_RPAREN, - [26123] = 2, + [26130] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4018), 1, anon_sym_RPAREN, - [26130] = 2, + [26137] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4020), 1, anon_sym_RPAREN, - [26137] = 2, + [26144] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4022), 1, anon_sym_RPAREN, - [26144] = 2, + [26151] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4024), 1, anon_sym_RPAREN, - [26151] = 2, + [26158] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4026), 1, anon_sym_RPAREN, - [26158] = 2, + [26165] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4028), 1, anon_sym_RPAREN, - [26165] = 2, + [26172] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4030), 1, anon_sym_RPAREN, - [26172] = 2, + [26179] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4032), 1, anon_sym_RPAREN, - [26179] = 2, + [26186] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4034), 1, anon_sym_EQ, - [26186] = 2, + [26193] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4036), 1, anon_sym_LBRACE, - [26193] = 2, + [26200] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4038), 1, anon_sym_RPAREN, - [26200] = 2, + [26207] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4040), 1, anon_sym_EQ_GT, - [26207] = 2, + [26214] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4042), 1, anon_sym_RPAREN, - [26214] = 2, + [26221] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2891), 1, anon_sym_LBRACK, - [26221] = 2, + [26228] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2879), 1, anon_sym_RBRACK, - [26228] = 2, + [26235] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1474), 1, anon_sym_DOT, - [26235] = 2, + [26242] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1454), 1, anon_sym_LBRACK, - [26242] = 2, + [26249] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4044), 1, anon_sym_RPAREN, - [26249] = 2, + [26256] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4046), 1, anon_sym_RPAREN, - [26256] = 2, + [26263] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4048), 1, anon_sym_RPAREN, - [26263] = 2, + [26270] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2818), 1, anon_sym_LT_COLON, - [26270] = 2, + [26277] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4050), 1, anon_sym_RPAREN, - [26277] = 2, + [26284] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4052), 1, anon_sym_RPAREN, - [26284] = 2, + [26291] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4054), 1, anon_sym_RPAREN, - [26291] = 2, + [26298] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4056), 1, anon_sym_RPAREN, - [26298] = 2, + [26305] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3332), 1, sym_variable, - [26305] = 2, + [26312] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4058), 1, anon_sym_RPAREN, - [26312] = 2, + [26319] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4060), 1, anon_sym_EQ_GT, - [26319] = 2, + [26326] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4062), 1, sym_intConstant, - [26326] = 2, + [26333] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4064), 1, sym_variable, - [26333] = 2, + [26340] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2822), 1, anon_sym_LT_COLON, - [26340] = 2, + [26347] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4066), 1, anon_sym_RPAREN, - [26347] = 2, + [26354] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4068), 1, sym_variable, - [26354] = 2, + [26361] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4070), 1, sym_intConstant, - [26361] = 2, + [26368] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4072), 1, anon_sym_EQ_GT, - [26368] = 2, + [26375] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4074), 1, anon_sym_RPAREN, - [26375] = 2, + [26382] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4076), 1, anon_sym_LPAREN, - [26382] = 2, + [26389] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4078), 1, sym_doubleQuoteSnippet, - [26389] = 2, + [26396] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4080), 1, anon_sym_LBRACE, - [26396] = 2, + [26403] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4082), 1, sym_backtickSnippet, - [26403] = 2, + [26410] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4084), 1, anon_sym_LBRACE, - [26410] = 2, + [26417] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4086), 1, anon_sym_RPAREN, - [26417] = 2, + [26424] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4088), 1, anon_sym_RPAREN, - [26424] = 2, + [26431] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4090), 1, anon_sym_RPAREN, - [26431] = 2, + [26438] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4092), 1, anon_sym_RPAREN, - [26438] = 2, + [26445] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4094), 1, anon_sym_RPAREN, - [26445] = 2, + [26452] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4096), 1, anon_sym_RPAREN, - [26452] = 2, + [26459] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4098), 1, anon_sym_RPAREN, - [26459] = 2, + [26466] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4100), 1, anon_sym_RPAREN, - [26466] = 2, + [26473] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4102), 1, anon_sym_RPAREN, - [26473] = 2, + [26480] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4104), 1, anon_sym_RPAREN, - [26480] = 2, + [26487] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4106), 1, anon_sym_RPAREN, - [26487] = 2, + [26494] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4108), 1, anon_sym_RPAREN, - [26494] = 2, + [26501] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4110), 1, anon_sym_RPAREN, - [26501] = 2, + [26508] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4112), 1, anon_sym_RPAREN, - [26508] = 2, + [26515] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4114), 1, anon_sym_RPAREN, - [26515] = 2, + [26522] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4116), 1, anon_sym_RPAREN, - [26522] = 2, + [26529] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4118), 1, anon_sym_RPAREN, - [26529] = 2, + [26536] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4120), 1, anon_sym_RPAREN, - [26536] = 2, + [26543] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4122), 1, anon_sym_RPAREN, - [26543] = 2, + [26550] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4124), 1, anon_sym_RPAREN, - [26550] = 2, + [26557] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4126), 1, anon_sym_RPAREN, - [26557] = 2, + [26564] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4128), 1, anon_sym_RPAREN, - [26564] = 2, + [26571] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4130), 1, anon_sym_RPAREN, - [26571] = 2, + [26578] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4132), 1, anon_sym_RPAREN, - [26578] = 2, + [26585] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4134), 1, anon_sym_RPAREN, - [26585] = 2, + [26592] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4136), 1, anon_sym_RPAREN, - [26592] = 2, + [26599] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4138), 1, sym_doubleConstant, - [26599] = 2, + [26606] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4140), 1, anon_sym_pattern, - [26606] = 2, + [26613] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4142), 1, anon_sym_LBRACE, - [26613] = 2, + [26620] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4144), 1, anon_sym_LBRACE, - [26620] = 2, + [26627] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4146), 1, anon_sym_LBRACE, - [26627] = 2, + [26634] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4148), 1, sym_language_flavor, - [26634] = 2, + [26641] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4150), 1, anon_sym_LBRACE, - [26641] = 2, + [26648] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4152), 1, anon_sym_RPAREN, - [26648] = 2, + [26655] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4154), 1, anon_sym_RBRACE, - [26655] = 2, + [26662] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4156), 1, anon_sym_LPAREN, - [26662] = 2, + [26669] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4158), 1, anon_sym_LBRACE, - [26669] = 2, + [26676] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4160), 1, anon_sym_LBRACE, - [26676] = 2, + [26683] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4162), 1, anon_sym_LBRACE, - [26683] = 2, + [26690] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4164), 1, anon_sym_RBRACE, - [26690] = 2, + [26697] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4166), 1, sym_language_flavor, - [26697] = 2, + [26704] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4168), 1, anon_sym_LBRACE, - [26704] = 2, + [26711] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4170), 1, anon_sym_LBRACE, - [26711] = 2, + [26718] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4172), 1, anon_sym_LBRACE, - [26718] = 2, + [26725] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4174), 1, anon_sym_LBRACE, - [26725] = 2, + [26732] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4176), 1, anon_sym_RPAREN, - [26732] = 2, + [26739] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4178), 1, anon_sym_marzano, - [26739] = 2, + [26746] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4180), 1, anon_sym_LBRACE, - [26746] = 2, + [26753] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4182), 1, anon_sym_LBRACE, - [26753] = 2, + [26760] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4184), 1, anon_sym_LBRACE, - [26760] = 2, + [26767] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4186), 1, anon_sym_LBRACE, - [26767] = 2, + [26774] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4188), 1, anon_sym_LPAREN, - [26774] = 2, + [26781] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4190), 1, anon_sym_RPAREN, - [26781] = 2, + [26788] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4192), 1, anon_sym_LPAREN, - [26788] = 2, + [26795] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4194), 1, anon_sym_LBRACE, - [26795] = 2, + [26802] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4196), 1, anon_sym_RPAREN, - [26802] = 2, + [26809] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4198), 1, @@ -58051,1244 +58364,1244 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(298)] = 0, - [SMALL_STATE(299)] = 68, - [SMALL_STATE(300)] = 136, - [SMALL_STATE(301)] = 204, - [SMALL_STATE(302)] = 272, - [SMALL_STATE(303)] = 342, - [SMALL_STATE(304)] = 374, - [SMALL_STATE(305)] = 406, - [SMALL_STATE(306)] = 435, - [SMALL_STATE(307)] = 502, - [SMALL_STATE(308)] = 569, - [SMALL_STATE(309)] = 636, - [SMALL_STATE(310)] = 703, - [SMALL_STATE(311)] = 732, - [SMALL_STATE(312)] = 799, - [SMALL_STATE(313)] = 866, - [SMALL_STATE(314)] = 933, - [SMALL_STATE(315)] = 1000, - [SMALL_STATE(316)] = 1067, - [SMALL_STATE(317)] = 1134, - [SMALL_STATE(318)] = 1201, - [SMALL_STATE(319)] = 1230, - [SMALL_STATE(320)] = 1259, - [SMALL_STATE(321)] = 1326, - [SMALL_STATE(322)] = 1359, - [SMALL_STATE(323)] = 1426, - [SMALL_STATE(324)] = 1493, - [SMALL_STATE(325)] = 1560, - [SMALL_STATE(326)] = 1627, - [SMALL_STATE(327)] = 1659, - [SMALL_STATE(328)] = 1689, - [SMALL_STATE(329)] = 1716, - [SMALL_STATE(330)] = 1743, - [SMALL_STATE(331)] = 1770, - [SMALL_STATE(332)] = 1797, - [SMALL_STATE(333)] = 1824, - [SMALL_STATE(334)] = 1851, - [SMALL_STATE(335)] = 1878, - [SMALL_STATE(336)] = 1905, - [SMALL_STATE(337)] = 1932, - [SMALL_STATE(338)] = 1961, - [SMALL_STATE(339)] = 1988, - [SMALL_STATE(340)] = 2017, - [SMALL_STATE(341)] = 2044, - [SMALL_STATE(342)] = 2071, - [SMALL_STATE(343)] = 2100, - [SMALL_STATE(344)] = 2129, - [SMALL_STATE(345)] = 2156, - [SMALL_STATE(346)] = 2183, - [SMALL_STATE(347)] = 2210, - [SMALL_STATE(348)] = 2237, - [SMALL_STATE(349)] = 2266, - [SMALL_STATE(350)] = 2293, - [SMALL_STATE(351)] = 2320, - [SMALL_STATE(352)] = 2347, - [SMALL_STATE(353)] = 2374, - [SMALL_STATE(354)] = 2401, - [SMALL_STATE(355)] = 2430, - [SMALL_STATE(356)] = 2457, - [SMALL_STATE(357)] = 2486, - [SMALL_STATE(358)] = 2513, - [SMALL_STATE(359)] = 2540, - [SMALL_STATE(360)] = 2566, - [SMALL_STATE(361)] = 2592, - [SMALL_STATE(362)] = 2618, - [SMALL_STATE(363)] = 2644, - [SMALL_STATE(364)] = 2670, - [SMALL_STATE(365)] = 2696, - [SMALL_STATE(366)] = 2722, - [SMALL_STATE(367)] = 2748, - [SMALL_STATE(368)] = 2774, - [SMALL_STATE(369)] = 2800, - [SMALL_STATE(370)] = 2826, - [SMALL_STATE(371)] = 2852, - [SMALL_STATE(372)] = 2878, - [SMALL_STATE(373)] = 2904, - [SMALL_STATE(374)] = 2930, - [SMALL_STATE(375)] = 2956, - [SMALL_STATE(376)] = 2982, - [SMALL_STATE(377)] = 3008, - [SMALL_STATE(378)] = 3034, - [SMALL_STATE(379)] = 3060, - [SMALL_STATE(380)] = 3086, - [SMALL_STATE(381)] = 3112, - [SMALL_STATE(382)] = 3138, - [SMALL_STATE(383)] = 3164, - [SMALL_STATE(384)] = 3190, - [SMALL_STATE(385)] = 3216, - [SMALL_STATE(386)] = 3242, - [SMALL_STATE(387)] = 3268, - [SMALL_STATE(388)] = 3294, - [SMALL_STATE(389)] = 3320, - [SMALL_STATE(390)] = 3346, - [SMALL_STATE(391)] = 3372, - [SMALL_STATE(392)] = 3398, - [SMALL_STATE(393)] = 3424, - [SMALL_STATE(394)] = 3450, - [SMALL_STATE(395)] = 3476, - [SMALL_STATE(396)] = 3502, - [SMALL_STATE(397)] = 3528, - [SMALL_STATE(398)] = 3554, - [SMALL_STATE(399)] = 3596, - [SMALL_STATE(400)] = 3622, - [SMALL_STATE(401)] = 3648, - [SMALL_STATE(402)] = 3674, - [SMALL_STATE(403)] = 3700, - [SMALL_STATE(404)] = 3726, - [SMALL_STATE(405)] = 3752, - [SMALL_STATE(406)] = 3778, - [SMALL_STATE(407)] = 3804, - [SMALL_STATE(408)] = 3830, - [SMALL_STATE(409)] = 3856, - [SMALL_STATE(410)] = 3882, - [SMALL_STATE(411)] = 3908, - [SMALL_STATE(412)] = 3934, - [SMALL_STATE(413)] = 3960, - [SMALL_STATE(414)] = 3986, - [SMALL_STATE(415)] = 4012, - [SMALL_STATE(416)] = 4038, - [SMALL_STATE(417)] = 4064, - [SMALL_STATE(418)] = 4090, - [SMALL_STATE(419)] = 4116, - [SMALL_STATE(420)] = 4142, - [SMALL_STATE(421)] = 4170, - [SMALL_STATE(422)] = 4196, - [SMALL_STATE(423)] = 4222, - [SMALL_STATE(424)] = 4248, - [SMALL_STATE(425)] = 4274, - [SMALL_STATE(426)] = 4300, - [SMALL_STATE(427)] = 4326, - [SMALL_STATE(428)] = 4352, - [SMALL_STATE(429)] = 4378, - [SMALL_STATE(430)] = 4404, - [SMALL_STATE(431)] = 4430, - [SMALL_STATE(432)] = 4456, - [SMALL_STATE(433)] = 4482, - [SMALL_STATE(434)] = 4508, - [SMALL_STATE(435)] = 4534, - [SMALL_STATE(436)] = 4580, - [SMALL_STATE(437)] = 4606, - [SMALL_STATE(438)] = 4652, - [SMALL_STATE(439)] = 4680, - [SMALL_STATE(440)] = 4706, - [SMALL_STATE(441)] = 4732, - [SMALL_STATE(442)] = 4758, - [SMALL_STATE(443)] = 4784, - [SMALL_STATE(444)] = 4810, - [SMALL_STATE(445)] = 4836, - [SMALL_STATE(446)] = 4878, - [SMALL_STATE(447)] = 4926, - [SMALL_STATE(448)] = 4952, - [SMALL_STATE(449)] = 4978, - [SMALL_STATE(450)] = 5004, - [SMALL_STATE(451)] = 5030, - [SMALL_STATE(452)] = 5056, - [SMALL_STATE(453)] = 5082, - [SMALL_STATE(454)] = 5108, - [SMALL_STATE(455)] = 5134, - [SMALL_STATE(456)] = 5160, - [SMALL_STATE(457)] = 5186, - [SMALL_STATE(458)] = 5212, - [SMALL_STATE(459)] = 5238, - [SMALL_STATE(460)] = 5264, - [SMALL_STATE(461)] = 5290, - [SMALL_STATE(462)] = 5316, - [SMALL_STATE(463)] = 5342, - [SMALL_STATE(464)] = 5368, - [SMALL_STATE(465)] = 5394, - [SMALL_STATE(466)] = 5420, - [SMALL_STATE(467)] = 5446, - [SMALL_STATE(468)] = 5472, - [SMALL_STATE(469)] = 5518, - [SMALL_STATE(470)] = 5544, - [SMALL_STATE(471)] = 5590, - [SMALL_STATE(472)] = 5616, - [SMALL_STATE(473)] = 5642, - [SMALL_STATE(474)] = 5668, - [SMALL_STATE(475)] = 5694, - [SMALL_STATE(476)] = 5720, - [SMALL_STATE(477)] = 5746, - [SMALL_STATE(478)] = 5772, - [SMALL_STATE(479)] = 5798, - [SMALL_STATE(480)] = 5824, - [SMALL_STATE(481)] = 5850, - [SMALL_STATE(482)] = 5892, - [SMALL_STATE(483)] = 5918, - [SMALL_STATE(484)] = 5944, - [SMALL_STATE(485)] = 5970, - [SMALL_STATE(486)] = 5996, - [SMALL_STATE(487)] = 6022, - [SMALL_STATE(488)] = 6056, - [SMALL_STATE(489)] = 6082, - [SMALL_STATE(490)] = 6116, - [SMALL_STATE(491)] = 6142, - [SMALL_STATE(492)] = 6170, - [SMALL_STATE(493)] = 6196, - [SMALL_STATE(494)] = 6224, - [SMALL_STATE(495)] = 6250, - [SMALL_STATE(496)] = 6278, - [SMALL_STATE(497)] = 6304, - [SMALL_STATE(498)] = 6330, - [SMALL_STATE(499)] = 6356, - [SMALL_STATE(500)] = 6382, - [SMALL_STATE(501)] = 6408, - [SMALL_STATE(502)] = 6434, - [SMALL_STATE(503)] = 6460, - [SMALL_STATE(504)] = 6486, - [SMALL_STATE(505)] = 6512, - [SMALL_STATE(506)] = 6538, - [SMALL_STATE(507)] = 6564, - [SMALL_STATE(508)] = 6590, - [SMALL_STATE(509)] = 6616, - [SMALL_STATE(510)] = 6642, - [SMALL_STATE(511)] = 6668, - [SMALL_STATE(512)] = 6694, - [SMALL_STATE(513)] = 6720, - [SMALL_STATE(514)] = 6746, - [SMALL_STATE(515)] = 6772, - [SMALL_STATE(516)] = 6798, - [SMALL_STATE(517)] = 6824, - [SMALL_STATE(518)] = 6850, - [SMALL_STATE(519)] = 6876, - [SMALL_STATE(520)] = 6902, - [SMALL_STATE(521)] = 6928, - [SMALL_STATE(522)] = 6954, - [SMALL_STATE(523)] = 6980, - [SMALL_STATE(524)] = 7006, - [SMALL_STATE(525)] = 7052, - [SMALL_STATE(526)] = 7078, - [SMALL_STATE(527)] = 7124, - [SMALL_STATE(528)] = 7150, - [SMALL_STATE(529)] = 7176, - [SMALL_STATE(530)] = 7202, - [SMALL_STATE(531)] = 7248, - [SMALL_STATE(532)] = 7274, - [SMALL_STATE(533)] = 7300, - [SMALL_STATE(534)] = 7326, - [SMALL_STATE(535)] = 7352, - [SMALL_STATE(536)] = 7378, - [SMALL_STATE(537)] = 7404, - [SMALL_STATE(538)] = 7430, - [SMALL_STATE(539)] = 7456, - [SMALL_STATE(540)] = 7482, - [SMALL_STATE(541)] = 7528, - [SMALL_STATE(542)] = 7574, - [SMALL_STATE(543)] = 7620, - [SMALL_STATE(544)] = 7646, - [SMALL_STATE(545)] = 7672, - [SMALL_STATE(546)] = 7698, - [SMALL_STATE(547)] = 7744, - [SMALL_STATE(548)] = 7770, - [SMALL_STATE(549)] = 7796, - [SMALL_STATE(550)] = 7822, - [SMALL_STATE(551)] = 7848, - [SMALL_STATE(552)] = 7894, - [SMALL_STATE(553)] = 7920, - [SMALL_STATE(554)] = 7966, - [SMALL_STATE(555)] = 7992, - [SMALL_STATE(556)] = 8038, - [SMALL_STATE(557)] = 8084, - [SMALL_STATE(558)] = 8110, - [SMALL_STATE(559)] = 8136, - [SMALL_STATE(560)] = 8162, - [SMALL_STATE(561)] = 8188, - [SMALL_STATE(562)] = 8234, - [SMALL_STATE(563)] = 8260, - [SMALL_STATE(564)] = 8286, - [SMALL_STATE(565)] = 8312, - [SMALL_STATE(566)] = 8338, - [SMALL_STATE(567)] = 8366, - [SMALL_STATE(568)] = 8392, - [SMALL_STATE(569)] = 8420, - [SMALL_STATE(570)] = 8446, - [SMALL_STATE(571)] = 8472, - [SMALL_STATE(572)] = 8498, - [SMALL_STATE(573)] = 8524, - [SMALL_STATE(574)] = 8570, - [SMALL_STATE(575)] = 8596, - [SMALL_STATE(576)] = 8624, - [SMALL_STATE(577)] = 8650, - [SMALL_STATE(578)] = 8676, - [SMALL_STATE(579)] = 8702, - [SMALL_STATE(580)] = 8728, - [SMALL_STATE(581)] = 8754, - [SMALL_STATE(582)] = 8780, - [SMALL_STATE(583)] = 8806, - [SMALL_STATE(584)] = 8852, - [SMALL_STATE(585)] = 8898, - [SMALL_STATE(586)] = 8944, - [SMALL_STATE(587)] = 8990, - [SMALL_STATE(588)] = 9036, - [SMALL_STATE(589)] = 9062, - [SMALL_STATE(590)] = 9088, - [SMALL_STATE(591)] = 9136, - [SMALL_STATE(592)] = 9162, - [SMALL_STATE(593)] = 9208, - [SMALL_STATE(594)] = 9234, - [SMALL_STATE(595)] = 9280, - [SMALL_STATE(596)] = 9326, - [SMALL_STATE(597)] = 9352, - [SMALL_STATE(598)] = 9398, - [SMALL_STATE(599)] = 9424, - [SMALL_STATE(600)] = 9450, - [SMALL_STATE(601)] = 9476, - [SMALL_STATE(602)] = 9502, - [SMALL_STATE(603)] = 9528, - [SMALL_STATE(604)] = 9554, - [SMALL_STATE(605)] = 9580, - [SMALL_STATE(606)] = 9606, - [SMALL_STATE(607)] = 9632, - [SMALL_STATE(608)] = 9658, - [SMALL_STATE(609)] = 9684, - [SMALL_STATE(610)] = 9709, - [SMALL_STATE(611)] = 9734, - [SMALL_STATE(612)] = 9759, - [SMALL_STATE(613)] = 9784, - [SMALL_STATE(614)] = 9809, - [SMALL_STATE(615)] = 9834, - [SMALL_STATE(616)] = 9859, - [SMALL_STATE(617)] = 9904, - [SMALL_STATE(618)] = 9945, - [SMALL_STATE(619)] = 9970, - [SMALL_STATE(620)] = 10011, - [SMALL_STATE(621)] = 10036, - [SMALL_STATE(622)] = 10061, - [SMALL_STATE(623)] = 10094, - [SMALL_STATE(624)] = 10127, - [SMALL_STATE(625)] = 10154, - [SMALL_STATE(626)] = 10181, - [SMALL_STATE(627)] = 10208, - [SMALL_STATE(628)] = 10233, - [SMALL_STATE(629)] = 10258, - [SMALL_STATE(630)] = 10283, - [SMALL_STATE(631)] = 10308, - [SMALL_STATE(632)] = 10333, - [SMALL_STATE(633)] = 10358, - [SMALL_STATE(634)] = 10383, - [SMALL_STATE(635)] = 10408, - [SMALL_STATE(636)] = 10433, - [SMALL_STATE(637)] = 10460, - [SMALL_STATE(638)] = 10505, - [SMALL_STATE(639)] = 10530, - [SMALL_STATE(640)] = 10555, - [SMALL_STATE(641)] = 10580, - [SMALL_STATE(642)] = 10605, - [SMALL_STATE(643)] = 10630, - [SMALL_STATE(644)] = 10675, - [SMALL_STATE(645)] = 10700, - [SMALL_STATE(646)] = 10725, - [SMALL_STATE(647)] = 10750, - [SMALL_STATE(648)] = 10795, - [SMALL_STATE(649)] = 10820, - [SMALL_STATE(650)] = 10845, - [SMALL_STATE(651)] = 10870, - [SMALL_STATE(652)] = 10895, - [SMALL_STATE(653)] = 10940, - [SMALL_STATE(654)] = 10985, - [SMALL_STATE(655)] = 11010, - [SMALL_STATE(656)] = 11055, - [SMALL_STATE(657)] = 11080, - [SMALL_STATE(658)] = 11125, - [SMALL_STATE(659)] = 11150, - [SMALL_STATE(660)] = 11197, - [SMALL_STATE(661)] = 11242, - [SMALL_STATE(662)] = 11287, - [SMALL_STATE(663)] = 11332, - [SMALL_STATE(664)] = 11357, - [SMALL_STATE(665)] = 11402, - [SMALL_STATE(666)] = 11427, - [SMALL_STATE(667)] = 11452, - [SMALL_STATE(668)] = 11477, - [SMALL_STATE(669)] = 11502, - [SMALL_STATE(670)] = 11527, - [SMALL_STATE(671)] = 11552, - [SMALL_STATE(672)] = 11593, - [SMALL_STATE(673)] = 11618, - [SMALL_STATE(674)] = 11643, - [SMALL_STATE(675)] = 11670, - [SMALL_STATE(676)] = 11695, - [SMALL_STATE(677)] = 11720, - [SMALL_STATE(678)] = 11745, - [SMALL_STATE(679)] = 11770, - [SMALL_STATE(680)] = 11795, - [SMALL_STATE(681)] = 11820, - [SMALL_STATE(682)] = 11845, - [SMALL_STATE(683)] = 11870, - [SMALL_STATE(684)] = 11917, - [SMALL_STATE(685)] = 11942, - [SMALL_STATE(686)] = 11967, - [SMALL_STATE(687)] = 11992, - [SMALL_STATE(688)] = 12037, - [SMALL_STATE(689)] = 12062, - [SMALL_STATE(690)] = 12087, - [SMALL_STATE(691)] = 12112, - [SMALL_STATE(692)] = 12137, - [SMALL_STATE(693)] = 12162, - [SMALL_STATE(694)] = 12187, - [SMALL_STATE(695)] = 12212, - [SMALL_STATE(696)] = 12237, - [SMALL_STATE(697)] = 12262, - [SMALL_STATE(698)] = 12287, - [SMALL_STATE(699)] = 12312, - [SMALL_STATE(700)] = 12337, - [SMALL_STATE(701)] = 12362, - [SMALL_STATE(702)] = 12387, - [SMALL_STATE(703)] = 12412, - [SMALL_STATE(704)] = 12437, - [SMALL_STATE(705)] = 12462, - [SMALL_STATE(706)] = 12487, - [SMALL_STATE(707)] = 12512, - [SMALL_STATE(708)] = 12537, - [SMALL_STATE(709)] = 12562, - [SMALL_STATE(710)] = 12587, - [SMALL_STATE(711)] = 12612, - [SMALL_STATE(712)] = 12637, - [SMALL_STATE(713)] = 12662, - [SMALL_STATE(714)] = 12687, - [SMALL_STATE(715)] = 12712, - [SMALL_STATE(716)] = 12737, - [SMALL_STATE(717)] = 12762, - [SMALL_STATE(718)] = 12787, - [SMALL_STATE(719)] = 12812, - [SMALL_STATE(720)] = 12837, - [SMALL_STATE(721)] = 12862, - [SMALL_STATE(722)] = 12887, - [SMALL_STATE(723)] = 12912, - [SMALL_STATE(724)] = 12937, - [SMALL_STATE(725)] = 12962, - [SMALL_STATE(726)] = 12987, - [SMALL_STATE(727)] = 13012, - [SMALL_STATE(728)] = 13037, - [SMALL_STATE(729)] = 13062, - [SMALL_STATE(730)] = 13087, - [SMALL_STATE(731)] = 13112, - [SMALL_STATE(732)] = 13137, - [SMALL_STATE(733)] = 13162, - [SMALL_STATE(734)] = 13187, - [SMALL_STATE(735)] = 13212, - [SMALL_STATE(736)] = 13237, - [SMALL_STATE(737)] = 13262, - [SMALL_STATE(738)] = 13287, - [SMALL_STATE(739)] = 13312, - [SMALL_STATE(740)] = 13337, - [SMALL_STATE(741)] = 13362, - [SMALL_STATE(742)] = 13387, - [SMALL_STATE(743)] = 13412, - [SMALL_STATE(744)] = 13437, - [SMALL_STATE(745)] = 13462, - [SMALL_STATE(746)] = 13487, - [SMALL_STATE(747)] = 13512, - [SMALL_STATE(748)] = 13537, - [SMALL_STATE(749)] = 13562, - [SMALL_STATE(750)] = 13587, - [SMALL_STATE(751)] = 13612, - [SMALL_STATE(752)] = 13637, - [SMALL_STATE(753)] = 13662, - [SMALL_STATE(754)] = 13687, - [SMALL_STATE(755)] = 13712, - [SMALL_STATE(756)] = 13737, - [SMALL_STATE(757)] = 13762, - [SMALL_STATE(758)] = 13787, - [SMALL_STATE(759)] = 13832, - [SMALL_STATE(760)] = 13857, - [SMALL_STATE(761)] = 13882, - [SMALL_STATE(762)] = 13907, - [SMALL_STATE(763)] = 13932, - [SMALL_STATE(764)] = 13957, - [SMALL_STATE(765)] = 13982, - [SMALL_STATE(766)] = 14007, - [SMALL_STATE(767)] = 14032, - [SMALL_STATE(768)] = 14057, - [SMALL_STATE(769)] = 14082, - [SMALL_STATE(770)] = 14107, - [SMALL_STATE(771)] = 14152, - [SMALL_STATE(772)] = 14177, - [SMALL_STATE(773)] = 14202, - [SMALL_STATE(774)] = 14227, - [SMALL_STATE(775)] = 14252, - [SMALL_STATE(776)] = 14277, - [SMALL_STATE(777)] = 14302, - [SMALL_STATE(778)] = 14327, - [SMALL_STATE(779)] = 14352, - [SMALL_STATE(780)] = 14377, - [SMALL_STATE(781)] = 14402, - [SMALL_STATE(782)] = 14427, - [SMALL_STATE(783)] = 14452, - [SMALL_STATE(784)] = 14477, - [SMALL_STATE(785)] = 14502, - [SMALL_STATE(786)] = 14527, - [SMALL_STATE(787)] = 14552, - [SMALL_STATE(788)] = 14577, - [SMALL_STATE(789)] = 14602, - [SMALL_STATE(790)] = 14627, - [SMALL_STATE(791)] = 14652, - [SMALL_STATE(792)] = 14679, - [SMALL_STATE(793)] = 14704, - [SMALL_STATE(794)] = 14729, - [SMALL_STATE(795)] = 14774, - [SMALL_STATE(796)] = 14799, - [SMALL_STATE(797)] = 14824, - [SMALL_STATE(798)] = 14849, - [SMALL_STATE(799)] = 14874, - [SMALL_STATE(800)] = 14899, - [SMALL_STATE(801)] = 14924, - [SMALL_STATE(802)] = 14949, - [SMALL_STATE(803)] = 14974, - [SMALL_STATE(804)] = 14999, - [SMALL_STATE(805)] = 15024, - [SMALL_STATE(806)] = 15049, - [SMALL_STATE(807)] = 15074, - [SMALL_STATE(808)] = 15099, - [SMALL_STATE(809)] = 15124, - [SMALL_STATE(810)] = 15149, - [SMALL_STATE(811)] = 15174, - [SMALL_STATE(812)] = 15199, - [SMALL_STATE(813)] = 15224, - [SMALL_STATE(814)] = 15249, - [SMALL_STATE(815)] = 15274, - [SMALL_STATE(816)] = 15299, - [SMALL_STATE(817)] = 15324, - [SMALL_STATE(818)] = 15349, - [SMALL_STATE(819)] = 15394, - [SMALL_STATE(820)] = 15439, - [SMALL_STATE(821)] = 15484, - [SMALL_STATE(822)] = 15529, - [SMALL_STATE(823)] = 15554, - [SMALL_STATE(824)] = 15579, - [SMALL_STATE(825)] = 15604, - [SMALL_STATE(826)] = 15629, - [SMALL_STATE(827)] = 15654, - [SMALL_STATE(828)] = 15679, - [SMALL_STATE(829)] = 15724, - [SMALL_STATE(830)] = 15749, - [SMALL_STATE(831)] = 15774, - [SMALL_STATE(832)] = 15799, - [SMALL_STATE(833)] = 15824, - [SMALL_STATE(834)] = 15849, - [SMALL_STATE(835)] = 15874, - [SMALL_STATE(836)] = 15899, - [SMALL_STATE(837)] = 15924, - [SMALL_STATE(838)] = 15949, - [SMALL_STATE(839)] = 15994, - [SMALL_STATE(840)] = 16019, - [SMALL_STATE(841)] = 16064, - [SMALL_STATE(842)] = 16089, - [SMALL_STATE(843)] = 16114, - [SMALL_STATE(844)] = 16139, - [SMALL_STATE(845)] = 16164, - [SMALL_STATE(846)] = 16189, - [SMALL_STATE(847)] = 16234, - [SMALL_STATE(848)] = 16279, - [SMALL_STATE(849)] = 16324, - [SMALL_STATE(850)] = 16349, - [SMALL_STATE(851)] = 16374, - [SMALL_STATE(852)] = 16420, - [SMALL_STATE(853)] = 16466, - [SMALL_STATE(854)] = 16512, - [SMALL_STATE(855)] = 16558, - [SMALL_STATE(856)] = 16604, - [SMALL_STATE(857)] = 16650, - [SMALL_STATE(858)] = 16696, - [SMALL_STATE(859)] = 16742, - [SMALL_STATE(860)] = 16788, - [SMALL_STATE(861)] = 16834, - [SMALL_STATE(862)] = 16880, - [SMALL_STATE(863)] = 16926, - [SMALL_STATE(864)] = 16972, - [SMALL_STATE(865)] = 17018, - [SMALL_STATE(866)] = 17064, - [SMALL_STATE(867)] = 17110, - [SMALL_STATE(868)] = 17156, - [SMALL_STATE(869)] = 17197, - [SMALL_STATE(870)] = 17236, - [SMALL_STATE(871)] = 17277, - [SMALL_STATE(872)] = 17318, - [SMALL_STATE(873)] = 17359, - [SMALL_STATE(874)] = 17400, - [SMALL_STATE(875)] = 17441, - [SMALL_STATE(876)] = 17480, - [SMALL_STATE(877)] = 17520, - [SMALL_STATE(878)] = 17560, - [SMALL_STATE(879)] = 17600, - [SMALL_STATE(880)] = 17640, - [SMALL_STATE(881)] = 17680, - [SMALL_STATE(882)] = 17720, - [SMALL_STATE(883)] = 17760, - [SMALL_STATE(884)] = 17800, - [SMALL_STATE(885)] = 17840, - [SMALL_STATE(886)] = 17880, - [SMALL_STATE(887)] = 17920, - [SMALL_STATE(888)] = 17960, - [SMALL_STATE(889)] = 18000, - [SMALL_STATE(890)] = 18040, - [SMALL_STATE(891)] = 18080, - [SMALL_STATE(892)] = 18120, - [SMALL_STATE(893)] = 18160, - [SMALL_STATE(894)] = 18200, - [SMALL_STATE(895)] = 18240, - [SMALL_STATE(896)] = 18280, - [SMALL_STATE(897)] = 18320, - [SMALL_STATE(898)] = 18360, - [SMALL_STATE(899)] = 18400, - [SMALL_STATE(900)] = 18440, - [SMALL_STATE(901)] = 18480, - [SMALL_STATE(902)] = 18520, - [SMALL_STATE(903)] = 18560, - [SMALL_STATE(904)] = 18600, - [SMALL_STATE(905)] = 18640, - [SMALL_STATE(906)] = 18674, - [SMALL_STATE(907)] = 18708, - [SMALL_STATE(908)] = 18742, - [SMALL_STATE(909)] = 18776, - [SMALL_STATE(910)] = 18810, - [SMALL_STATE(911)] = 18844, - [SMALL_STATE(912)] = 18878, - [SMALL_STATE(913)] = 18912, - [SMALL_STATE(914)] = 18946, - [SMALL_STATE(915)] = 18980, - [SMALL_STATE(916)] = 19014, - [SMALL_STATE(917)] = 19048, - [SMALL_STATE(918)] = 19082, - [SMALL_STATE(919)] = 19116, - [SMALL_STATE(920)] = 19150, - [SMALL_STATE(921)] = 19184, - [SMALL_STATE(922)] = 19218, - [SMALL_STATE(923)] = 19252, - [SMALL_STATE(924)] = 19286, - [SMALL_STATE(925)] = 19320, - [SMALL_STATE(926)] = 19350, - [SMALL_STATE(927)] = 19384, - [SMALL_STATE(928)] = 19418, - [SMALL_STATE(929)] = 19452, - [SMALL_STATE(930)] = 19482, - [SMALL_STATE(931)] = 19516, - [SMALL_STATE(932)] = 19550, - [SMALL_STATE(933)] = 19584, - [SMALL_STATE(934)] = 19618, - [SMALL_STATE(935)] = 19652, - [SMALL_STATE(936)] = 19686, - [SMALL_STATE(937)] = 19720, - [SMALL_STATE(938)] = 19754, - [SMALL_STATE(939)] = 19788, - [SMALL_STATE(940)] = 19822, - [SMALL_STATE(941)] = 19856, - [SMALL_STATE(942)] = 19890, - [SMALL_STATE(943)] = 19924, - [SMALL_STATE(944)] = 19958, - [SMALL_STATE(945)] = 19992, - [SMALL_STATE(946)] = 20026, - [SMALL_STATE(947)] = 20060, - [SMALL_STATE(948)] = 20094, - [SMALL_STATE(949)] = 20128, - [SMALL_STATE(950)] = 20162, - [SMALL_STATE(951)] = 20196, - [SMALL_STATE(952)] = 20230, - [SMALL_STATE(953)] = 20264, - [SMALL_STATE(954)] = 20298, - [SMALL_STATE(955)] = 20332, - [SMALL_STATE(956)] = 20363, - [SMALL_STATE(957)] = 20391, - [SMALL_STATE(958)] = 20419, - [SMALL_STATE(959)] = 20444, - [SMALL_STATE(960)] = 20469, - [SMALL_STATE(961)] = 20494, - [SMALL_STATE(962)] = 20519, - [SMALL_STATE(963)] = 20544, - [SMALL_STATE(964)] = 20569, - [SMALL_STATE(965)] = 20594, - [SMALL_STATE(966)] = 20619, - [SMALL_STATE(967)] = 20641, - [SMALL_STATE(968)] = 20663, - [SMALL_STATE(969)] = 20682, - [SMALL_STATE(970)] = 20701, - [SMALL_STATE(971)] = 20720, - [SMALL_STATE(972)] = 20739, - [SMALL_STATE(973)] = 20758, - [SMALL_STATE(974)] = 20777, - [SMALL_STATE(975)] = 20796, - [SMALL_STATE(976)] = 20815, - [SMALL_STATE(977)] = 20834, - [SMALL_STATE(978)] = 20853, - [SMALL_STATE(979)] = 20872, - [SMALL_STATE(980)] = 20891, - [SMALL_STATE(981)] = 20910, - [SMALL_STATE(982)] = 20929, - [SMALL_STATE(983)] = 20948, - [SMALL_STATE(984)] = 20967, - [SMALL_STATE(985)] = 20986, - [SMALL_STATE(986)] = 21005, - [SMALL_STATE(987)] = 21024, - [SMALL_STATE(988)] = 21043, - [SMALL_STATE(989)] = 21062, - [SMALL_STATE(990)] = 21081, - [SMALL_STATE(991)] = 21100, - [SMALL_STATE(992)] = 21119, - [SMALL_STATE(993)] = 21135, - [SMALL_STATE(994)] = 21149, - [SMALL_STATE(995)] = 21165, - [SMALL_STATE(996)] = 21181, - [SMALL_STATE(997)] = 21197, - [SMALL_STATE(998)] = 21213, - [SMALL_STATE(999)] = 21229, - [SMALL_STATE(1000)] = 21245, - [SMALL_STATE(1001)] = 21261, - [SMALL_STATE(1002)] = 21277, - [SMALL_STATE(1003)] = 21293, - [SMALL_STATE(1004)] = 21309, - [SMALL_STATE(1005)] = 21325, - [SMALL_STATE(1006)] = 21341, - [SMALL_STATE(1007)] = 21357, - [SMALL_STATE(1008)] = 21373, - [SMALL_STATE(1009)] = 21389, - [SMALL_STATE(1010)] = 21405, - [SMALL_STATE(1011)] = 21421, - [SMALL_STATE(1012)] = 21435, - [SMALL_STATE(1013)] = 21449, - [SMALL_STATE(1014)] = 21463, - [SMALL_STATE(1015)] = 21476, - [SMALL_STATE(1016)] = 21489, - [SMALL_STATE(1017)] = 21502, - [SMALL_STATE(1018)] = 21515, - [SMALL_STATE(1019)] = 21528, - [SMALL_STATE(1020)] = 21541, - [SMALL_STATE(1021)] = 21554, - [SMALL_STATE(1022)] = 21567, - [SMALL_STATE(1023)] = 21580, - [SMALL_STATE(1024)] = 21593, - [SMALL_STATE(1025)] = 21606, - [SMALL_STATE(1026)] = 21619, - [SMALL_STATE(1027)] = 21632, - [SMALL_STATE(1028)] = 21645, - [SMALL_STATE(1029)] = 21658, - [SMALL_STATE(1030)] = 21671, - [SMALL_STATE(1031)] = 21684, - [SMALL_STATE(1032)] = 21697, - [SMALL_STATE(1033)] = 21710, - [SMALL_STATE(1034)] = 21723, - [SMALL_STATE(1035)] = 21736, - [SMALL_STATE(1036)] = 21749, - [SMALL_STATE(1037)] = 21762, - [SMALL_STATE(1038)] = 21775, - [SMALL_STATE(1039)] = 21788, - [SMALL_STATE(1040)] = 21801, - [SMALL_STATE(1041)] = 21814, - [SMALL_STATE(1042)] = 21827, - [SMALL_STATE(1043)] = 21840, - [SMALL_STATE(1044)] = 21853, - [SMALL_STATE(1045)] = 21866, - [SMALL_STATE(1046)] = 21879, - [SMALL_STATE(1047)] = 21892, - [SMALL_STATE(1048)] = 21905, - [SMALL_STATE(1049)] = 21918, - [SMALL_STATE(1050)] = 21931, - [SMALL_STATE(1051)] = 21944, - [SMALL_STATE(1052)] = 21957, - [SMALL_STATE(1053)] = 21970, - [SMALL_STATE(1054)] = 21983, - [SMALL_STATE(1055)] = 21996, - [SMALL_STATE(1056)] = 22009, - [SMALL_STATE(1057)] = 22022, - [SMALL_STATE(1058)] = 22035, - [SMALL_STATE(1059)] = 22048, - [SMALL_STATE(1060)] = 22061, - [SMALL_STATE(1061)] = 22074, - [SMALL_STATE(1062)] = 22087, - [SMALL_STATE(1063)] = 22100, - [SMALL_STATE(1064)] = 22113, - [SMALL_STATE(1065)] = 22126, - [SMALL_STATE(1066)] = 22139, - [SMALL_STATE(1067)] = 22152, - [SMALL_STATE(1068)] = 22165, - [SMALL_STATE(1069)] = 22178, - [SMALL_STATE(1070)] = 22191, - [SMALL_STATE(1071)] = 22204, - [SMALL_STATE(1072)] = 22213, - [SMALL_STATE(1073)] = 22226, - [SMALL_STATE(1074)] = 22239, - [SMALL_STATE(1075)] = 22252, - [SMALL_STATE(1076)] = 22265, - [SMALL_STATE(1077)] = 22278, - [SMALL_STATE(1078)] = 22291, - [SMALL_STATE(1079)] = 22304, - [SMALL_STATE(1080)] = 22317, - [SMALL_STATE(1081)] = 22330, - [SMALL_STATE(1082)] = 22343, - [SMALL_STATE(1083)] = 22356, - [SMALL_STATE(1084)] = 22369, - [SMALL_STATE(1085)] = 22382, - [SMALL_STATE(1086)] = 22395, - [SMALL_STATE(1087)] = 22408, - [SMALL_STATE(1088)] = 22421, - [SMALL_STATE(1089)] = 22434, - [SMALL_STATE(1090)] = 22447, - [SMALL_STATE(1091)] = 22460, - [SMALL_STATE(1092)] = 22473, - [SMALL_STATE(1093)] = 22486, - [SMALL_STATE(1094)] = 22499, - [SMALL_STATE(1095)] = 22512, - [SMALL_STATE(1096)] = 22525, - [SMALL_STATE(1097)] = 22538, - [SMALL_STATE(1098)] = 22551, - [SMALL_STATE(1099)] = 22564, - [SMALL_STATE(1100)] = 22577, - [SMALL_STATE(1101)] = 22590, - [SMALL_STATE(1102)] = 22603, - [SMALL_STATE(1103)] = 22616, - [SMALL_STATE(1104)] = 22629, - [SMALL_STATE(1105)] = 22642, - [SMALL_STATE(1106)] = 22655, - [SMALL_STATE(1107)] = 22668, - [SMALL_STATE(1108)] = 22681, - [SMALL_STATE(1109)] = 22694, - [SMALL_STATE(1110)] = 22707, - [SMALL_STATE(1111)] = 22720, - [SMALL_STATE(1112)] = 22733, - [SMALL_STATE(1113)] = 22746, - [SMALL_STATE(1114)] = 22759, - [SMALL_STATE(1115)] = 22772, - [SMALL_STATE(1116)] = 22785, - [SMALL_STATE(1117)] = 22798, - [SMALL_STATE(1118)] = 22811, - [SMALL_STATE(1119)] = 22824, - [SMALL_STATE(1120)] = 22837, - [SMALL_STATE(1121)] = 22850, - [SMALL_STATE(1122)] = 22863, - [SMALL_STATE(1123)] = 22876, - [SMALL_STATE(1124)] = 22889, - [SMALL_STATE(1125)] = 22902, - [SMALL_STATE(1126)] = 22915, - [SMALL_STATE(1127)] = 22928, - [SMALL_STATE(1128)] = 22941, - [SMALL_STATE(1129)] = 22954, - [SMALL_STATE(1130)] = 22967, - [SMALL_STATE(1131)] = 22980, - [SMALL_STATE(1132)] = 22993, - [SMALL_STATE(1133)] = 23006, - [SMALL_STATE(1134)] = 23019, - [SMALL_STATE(1135)] = 23032, - [SMALL_STATE(1136)] = 23045, - [SMALL_STATE(1137)] = 23058, - [SMALL_STATE(1138)] = 23071, - [SMALL_STATE(1139)] = 23084, - [SMALL_STATE(1140)] = 23097, - [SMALL_STATE(1141)] = 23110, - [SMALL_STATE(1142)] = 23123, - [SMALL_STATE(1143)] = 23136, - [SMALL_STATE(1144)] = 23149, - [SMALL_STATE(1145)] = 23162, - [SMALL_STATE(1146)] = 23169, - [SMALL_STATE(1147)] = 23182, - [SMALL_STATE(1148)] = 23195, - [SMALL_STATE(1149)] = 23208, - [SMALL_STATE(1150)] = 23221, - [SMALL_STATE(1151)] = 23234, - [SMALL_STATE(1152)] = 23247, - [SMALL_STATE(1153)] = 23260, - [SMALL_STATE(1154)] = 23273, - [SMALL_STATE(1155)] = 23286, - [SMALL_STATE(1156)] = 23299, - [SMALL_STATE(1157)] = 23312, - [SMALL_STATE(1158)] = 23325, - [SMALL_STATE(1159)] = 23338, - [SMALL_STATE(1160)] = 23351, - [SMALL_STATE(1161)] = 23364, - [SMALL_STATE(1162)] = 23377, - [SMALL_STATE(1163)] = 23390, - [SMALL_STATE(1164)] = 23403, - [SMALL_STATE(1165)] = 23416, - [SMALL_STATE(1166)] = 23429, - [SMALL_STATE(1167)] = 23442, - [SMALL_STATE(1168)] = 23455, - [SMALL_STATE(1169)] = 23468, - [SMALL_STATE(1170)] = 23481, - [SMALL_STATE(1171)] = 23494, - [SMALL_STATE(1172)] = 23507, - [SMALL_STATE(1173)] = 23520, - [SMALL_STATE(1174)] = 23533, - [SMALL_STATE(1175)] = 23546, - [SMALL_STATE(1176)] = 23559, - [SMALL_STATE(1177)] = 23572, - [SMALL_STATE(1178)] = 23585, - [SMALL_STATE(1179)] = 23598, - [SMALL_STATE(1180)] = 23611, - [SMALL_STATE(1181)] = 23624, - [SMALL_STATE(1182)] = 23637, - [SMALL_STATE(1183)] = 23650, - [SMALL_STATE(1184)] = 23663, - [SMALL_STATE(1185)] = 23676, - [SMALL_STATE(1186)] = 23689, - [SMALL_STATE(1187)] = 23702, - [SMALL_STATE(1188)] = 23715, - [SMALL_STATE(1189)] = 23728, - [SMALL_STATE(1190)] = 23741, - [SMALL_STATE(1191)] = 23754, - [SMALL_STATE(1192)] = 23767, - [SMALL_STATE(1193)] = 23780, - [SMALL_STATE(1194)] = 23793, - [SMALL_STATE(1195)] = 23806, - [SMALL_STATE(1196)] = 23819, - [SMALL_STATE(1197)] = 23832, - [SMALL_STATE(1198)] = 23845, - [SMALL_STATE(1199)] = 23858, - [SMALL_STATE(1200)] = 23871, - [SMALL_STATE(1201)] = 23884, - [SMALL_STATE(1202)] = 23897, - [SMALL_STATE(1203)] = 23907, - [SMALL_STATE(1204)] = 23917, - [SMALL_STATE(1205)] = 23927, - [SMALL_STATE(1206)] = 23937, - [SMALL_STATE(1207)] = 23947, - [SMALL_STATE(1208)] = 23957, - [SMALL_STATE(1209)] = 23967, - [SMALL_STATE(1210)] = 23977, - [SMALL_STATE(1211)] = 23987, - [SMALL_STATE(1212)] = 23995, - [SMALL_STATE(1213)] = 24005, - [SMALL_STATE(1214)] = 24015, - [SMALL_STATE(1215)] = 24025, - [SMALL_STATE(1216)] = 24035, - [SMALL_STATE(1217)] = 24045, - [SMALL_STATE(1218)] = 24055, - [SMALL_STATE(1219)] = 24065, - [SMALL_STATE(1220)] = 24075, - [SMALL_STATE(1221)] = 24085, - [SMALL_STATE(1222)] = 24095, - [SMALL_STATE(1223)] = 24105, - [SMALL_STATE(1224)] = 24115, - [SMALL_STATE(1225)] = 24125, - [SMALL_STATE(1226)] = 24135, - [SMALL_STATE(1227)] = 24145, - [SMALL_STATE(1228)] = 24155, - [SMALL_STATE(1229)] = 24165, - [SMALL_STATE(1230)] = 24175, - [SMALL_STATE(1231)] = 24185, - [SMALL_STATE(1232)] = 24195, - [SMALL_STATE(1233)] = 24205, - [SMALL_STATE(1234)] = 24215, - [SMALL_STATE(1235)] = 24225, - [SMALL_STATE(1236)] = 24235, - [SMALL_STATE(1237)] = 24245, - [SMALL_STATE(1238)] = 24253, - [SMALL_STATE(1239)] = 24263, - [SMALL_STATE(1240)] = 24273, - [SMALL_STATE(1241)] = 24283, - [SMALL_STATE(1242)] = 24291, - [SMALL_STATE(1243)] = 24301, - [SMALL_STATE(1244)] = 24311, - [SMALL_STATE(1245)] = 24319, - [SMALL_STATE(1246)] = 24329, - [SMALL_STATE(1247)] = 24339, - [SMALL_STATE(1248)] = 24349, - [SMALL_STATE(1249)] = 24359, - [SMALL_STATE(1250)] = 24369, - [SMALL_STATE(1251)] = 24379, - [SMALL_STATE(1252)] = 24389, - [SMALL_STATE(1253)] = 24399, - [SMALL_STATE(1254)] = 24409, - [SMALL_STATE(1255)] = 24419, - [SMALL_STATE(1256)] = 24429, - [SMALL_STATE(1257)] = 24439, - [SMALL_STATE(1258)] = 24449, - [SMALL_STATE(1259)] = 24459, - [SMALL_STATE(1260)] = 24469, - [SMALL_STATE(1261)] = 24479, - [SMALL_STATE(1262)] = 24489, - [SMALL_STATE(1263)] = 24499, - [SMALL_STATE(1264)] = 24509, - [SMALL_STATE(1265)] = 24519, - [SMALL_STATE(1266)] = 24529, - [SMALL_STATE(1267)] = 24539, - [SMALL_STATE(1268)] = 24549, - [SMALL_STATE(1269)] = 24559, - [SMALL_STATE(1270)] = 24569, - [SMALL_STATE(1271)] = 24579, - [SMALL_STATE(1272)] = 24589, - [SMALL_STATE(1273)] = 24599, - [SMALL_STATE(1274)] = 24609, - [SMALL_STATE(1275)] = 24619, - [SMALL_STATE(1276)] = 24629, - [SMALL_STATE(1277)] = 24639, - [SMALL_STATE(1278)] = 24649, - [SMALL_STATE(1279)] = 24659, - [SMALL_STATE(1280)] = 24669, - [SMALL_STATE(1281)] = 24679, - [SMALL_STATE(1282)] = 24689, - [SMALL_STATE(1283)] = 24699, - [SMALL_STATE(1284)] = 24709, - [SMALL_STATE(1285)] = 24719, - [SMALL_STATE(1286)] = 24729, - [SMALL_STATE(1287)] = 24739, - [SMALL_STATE(1288)] = 24749, - [SMALL_STATE(1289)] = 24759, - [SMALL_STATE(1290)] = 24769, - [SMALL_STATE(1291)] = 24779, - [SMALL_STATE(1292)] = 24789, - [SMALL_STATE(1293)] = 24799, - [SMALL_STATE(1294)] = 24809, - [SMALL_STATE(1295)] = 24819, - [SMALL_STATE(1296)] = 24829, - [SMALL_STATE(1297)] = 24839, - [SMALL_STATE(1298)] = 24849, - [SMALL_STATE(1299)] = 24859, - [SMALL_STATE(1300)] = 24869, - [SMALL_STATE(1301)] = 24879, - [SMALL_STATE(1302)] = 24889, - [SMALL_STATE(1303)] = 24899, - [SMALL_STATE(1304)] = 24909, - [SMALL_STATE(1305)] = 24917, - [SMALL_STATE(1306)] = 24927, - [SMALL_STATE(1307)] = 24937, - [SMALL_STATE(1308)] = 24947, - [SMALL_STATE(1309)] = 24955, - [SMALL_STATE(1310)] = 24963, - [SMALL_STATE(1311)] = 24973, - [SMALL_STATE(1312)] = 24983, - [SMALL_STATE(1313)] = 24993, - [SMALL_STATE(1314)] = 25003, - [SMALL_STATE(1315)] = 25013, - [SMALL_STATE(1316)] = 25021, - [SMALL_STATE(1317)] = 25031, - [SMALL_STATE(1318)] = 25039, - [SMALL_STATE(1319)] = 25047, - [SMALL_STATE(1320)] = 25055, - [SMALL_STATE(1321)] = 25065, - [SMALL_STATE(1322)] = 25075, - [SMALL_STATE(1323)] = 25083, - [SMALL_STATE(1324)] = 25093, - [SMALL_STATE(1325)] = 25103, - [SMALL_STATE(1326)] = 25113, - [SMALL_STATE(1327)] = 25123, - [SMALL_STATE(1328)] = 25133, - [SMALL_STATE(1329)] = 25143, - [SMALL_STATE(1330)] = 25153, - [SMALL_STATE(1331)] = 25163, - [SMALL_STATE(1332)] = 25173, - [SMALL_STATE(1333)] = 25183, - [SMALL_STATE(1334)] = 25193, - [SMALL_STATE(1335)] = 25201, - [SMALL_STATE(1336)] = 25211, - [SMALL_STATE(1337)] = 25221, - [SMALL_STATE(1338)] = 25231, - [SMALL_STATE(1339)] = 25241, - [SMALL_STATE(1340)] = 25249, - [SMALL_STATE(1341)] = 25259, - [SMALL_STATE(1342)] = 25269, - [SMALL_STATE(1343)] = 25279, - [SMALL_STATE(1344)] = 25289, - [SMALL_STATE(1345)] = 25299, - [SMALL_STATE(1346)] = 25309, - [SMALL_STATE(1347)] = 25319, - [SMALL_STATE(1348)] = 25329, - [SMALL_STATE(1349)] = 25339, - [SMALL_STATE(1350)] = 25349, - [SMALL_STATE(1351)] = 25359, - [SMALL_STATE(1352)] = 25369, - [SMALL_STATE(1353)] = 25379, - [SMALL_STATE(1354)] = 25389, - [SMALL_STATE(1355)] = 25399, - [SMALL_STATE(1356)] = 25409, - [SMALL_STATE(1357)] = 25419, - [SMALL_STATE(1358)] = 25429, - [SMALL_STATE(1359)] = 25439, - [SMALL_STATE(1360)] = 25449, - [SMALL_STATE(1361)] = 25459, - [SMALL_STATE(1362)] = 25469, - [SMALL_STATE(1363)] = 25479, - [SMALL_STATE(1364)] = 25489, - [SMALL_STATE(1365)] = 25499, - [SMALL_STATE(1366)] = 25509, - [SMALL_STATE(1367)] = 25519, - [SMALL_STATE(1368)] = 25529, - [SMALL_STATE(1369)] = 25539, - [SMALL_STATE(1370)] = 25549, - [SMALL_STATE(1371)] = 25559, - [SMALL_STATE(1372)] = 25567, - [SMALL_STATE(1373)] = 25577, - [SMALL_STATE(1374)] = 25587, - [SMALL_STATE(1375)] = 25597, - [SMALL_STATE(1376)] = 25607, - [SMALL_STATE(1377)] = 25617, - [SMALL_STATE(1378)] = 25627, - [SMALL_STATE(1379)] = 25637, - [SMALL_STATE(1380)] = 25647, - [SMALL_STATE(1381)] = 25657, - [SMALL_STATE(1382)] = 25667, - [SMALL_STATE(1383)] = 25677, - [SMALL_STATE(1384)] = 25687, - [SMALL_STATE(1385)] = 25697, - [SMALL_STATE(1386)] = 25707, - [SMALL_STATE(1387)] = 25717, - [SMALL_STATE(1388)] = 25727, - [SMALL_STATE(1389)] = 25737, - [SMALL_STATE(1390)] = 25747, - [SMALL_STATE(1391)] = 25757, - [SMALL_STATE(1392)] = 25767, - [SMALL_STATE(1393)] = 25777, - [SMALL_STATE(1394)] = 25787, - [SMALL_STATE(1395)] = 25797, - [SMALL_STATE(1396)] = 25807, - [SMALL_STATE(1397)] = 25817, - [SMALL_STATE(1398)] = 25827, - [SMALL_STATE(1399)] = 25837, - [SMALL_STATE(1400)] = 25847, - [SMALL_STATE(1401)] = 25857, - [SMALL_STATE(1402)] = 25864, - [SMALL_STATE(1403)] = 25871, - [SMALL_STATE(1404)] = 25878, - [SMALL_STATE(1405)] = 25885, - [SMALL_STATE(1406)] = 25892, - [SMALL_STATE(1407)] = 25899, - [SMALL_STATE(1408)] = 25906, - [SMALL_STATE(1409)] = 25913, - [SMALL_STATE(1410)] = 25920, - [SMALL_STATE(1411)] = 25927, - [SMALL_STATE(1412)] = 25934, - [SMALL_STATE(1413)] = 25941, - [SMALL_STATE(1414)] = 25948, - [SMALL_STATE(1415)] = 25955, - [SMALL_STATE(1416)] = 25962, - [SMALL_STATE(1417)] = 25969, - [SMALL_STATE(1418)] = 25976, - [SMALL_STATE(1419)] = 25983, - [SMALL_STATE(1420)] = 25990, - [SMALL_STATE(1421)] = 25997, - [SMALL_STATE(1422)] = 26004, - [SMALL_STATE(1423)] = 26011, - [SMALL_STATE(1424)] = 26018, - [SMALL_STATE(1425)] = 26025, - [SMALL_STATE(1426)] = 26032, - [SMALL_STATE(1427)] = 26039, - [SMALL_STATE(1428)] = 26046, - [SMALL_STATE(1429)] = 26053, - [SMALL_STATE(1430)] = 26060, - [SMALL_STATE(1431)] = 26067, - [SMALL_STATE(1432)] = 26074, - [SMALL_STATE(1433)] = 26081, - [SMALL_STATE(1434)] = 26088, - [SMALL_STATE(1435)] = 26095, - [SMALL_STATE(1436)] = 26102, - [SMALL_STATE(1437)] = 26109, - [SMALL_STATE(1438)] = 26116, - [SMALL_STATE(1439)] = 26123, - [SMALL_STATE(1440)] = 26130, - [SMALL_STATE(1441)] = 26137, - [SMALL_STATE(1442)] = 26144, - [SMALL_STATE(1443)] = 26151, - [SMALL_STATE(1444)] = 26158, - [SMALL_STATE(1445)] = 26165, - [SMALL_STATE(1446)] = 26172, - [SMALL_STATE(1447)] = 26179, - [SMALL_STATE(1448)] = 26186, - [SMALL_STATE(1449)] = 26193, - [SMALL_STATE(1450)] = 26200, - [SMALL_STATE(1451)] = 26207, - [SMALL_STATE(1452)] = 26214, - [SMALL_STATE(1453)] = 26221, - [SMALL_STATE(1454)] = 26228, - [SMALL_STATE(1455)] = 26235, - [SMALL_STATE(1456)] = 26242, - [SMALL_STATE(1457)] = 26249, - [SMALL_STATE(1458)] = 26256, - [SMALL_STATE(1459)] = 26263, - [SMALL_STATE(1460)] = 26270, - [SMALL_STATE(1461)] = 26277, - [SMALL_STATE(1462)] = 26284, - [SMALL_STATE(1463)] = 26291, - [SMALL_STATE(1464)] = 26298, - [SMALL_STATE(1465)] = 26305, - [SMALL_STATE(1466)] = 26312, - [SMALL_STATE(1467)] = 26319, - [SMALL_STATE(1468)] = 26326, - [SMALL_STATE(1469)] = 26333, - [SMALL_STATE(1470)] = 26340, - [SMALL_STATE(1471)] = 26347, - [SMALL_STATE(1472)] = 26354, - [SMALL_STATE(1473)] = 26361, - [SMALL_STATE(1474)] = 26368, - [SMALL_STATE(1475)] = 26375, - [SMALL_STATE(1476)] = 26382, - [SMALL_STATE(1477)] = 26389, - [SMALL_STATE(1478)] = 26396, - [SMALL_STATE(1479)] = 26403, - [SMALL_STATE(1480)] = 26410, - [SMALL_STATE(1481)] = 26417, - [SMALL_STATE(1482)] = 26424, - [SMALL_STATE(1483)] = 26431, - [SMALL_STATE(1484)] = 26438, - [SMALL_STATE(1485)] = 26445, - [SMALL_STATE(1486)] = 26452, - [SMALL_STATE(1487)] = 26459, - [SMALL_STATE(1488)] = 26466, - [SMALL_STATE(1489)] = 26473, - [SMALL_STATE(1490)] = 26480, - [SMALL_STATE(1491)] = 26487, - [SMALL_STATE(1492)] = 26494, - [SMALL_STATE(1493)] = 26501, - [SMALL_STATE(1494)] = 26508, - [SMALL_STATE(1495)] = 26515, - [SMALL_STATE(1496)] = 26522, - [SMALL_STATE(1497)] = 26529, - [SMALL_STATE(1498)] = 26536, - [SMALL_STATE(1499)] = 26543, - [SMALL_STATE(1500)] = 26550, - [SMALL_STATE(1501)] = 26557, - [SMALL_STATE(1502)] = 26564, - [SMALL_STATE(1503)] = 26571, - [SMALL_STATE(1504)] = 26578, - [SMALL_STATE(1505)] = 26585, - [SMALL_STATE(1506)] = 26592, - [SMALL_STATE(1507)] = 26599, - [SMALL_STATE(1508)] = 26606, - [SMALL_STATE(1509)] = 26613, - [SMALL_STATE(1510)] = 26620, - [SMALL_STATE(1511)] = 26627, - [SMALL_STATE(1512)] = 26634, - [SMALL_STATE(1513)] = 26641, - [SMALL_STATE(1514)] = 26648, - [SMALL_STATE(1515)] = 26655, - [SMALL_STATE(1516)] = 26662, - [SMALL_STATE(1517)] = 26669, - [SMALL_STATE(1518)] = 26676, - [SMALL_STATE(1519)] = 26683, - [SMALL_STATE(1520)] = 26690, - [SMALL_STATE(1521)] = 26697, - [SMALL_STATE(1522)] = 26704, - [SMALL_STATE(1523)] = 26711, - [SMALL_STATE(1524)] = 26718, - [SMALL_STATE(1525)] = 26725, - [SMALL_STATE(1526)] = 26732, - [SMALL_STATE(1527)] = 26739, - [SMALL_STATE(1528)] = 26746, - [SMALL_STATE(1529)] = 26753, - [SMALL_STATE(1530)] = 26760, - [SMALL_STATE(1531)] = 26767, - [SMALL_STATE(1532)] = 26774, - [SMALL_STATE(1533)] = 26781, - [SMALL_STATE(1534)] = 26788, - [SMALL_STATE(1535)] = 26795, - [SMALL_STATE(1536)] = 26802, + [SMALL_STATE(299)] = 69, + [SMALL_STATE(300)] = 138, + [SMALL_STATE(301)] = 207, + [SMALL_STATE(302)] = 276, + [SMALL_STATE(303)] = 347, + [SMALL_STATE(304)] = 380, + [SMALL_STATE(305)] = 413, + [SMALL_STATE(306)] = 442, + [SMALL_STATE(307)] = 509, + [SMALL_STATE(308)] = 576, + [SMALL_STATE(309)] = 643, + [SMALL_STATE(310)] = 710, + [SMALL_STATE(311)] = 739, + [SMALL_STATE(312)] = 806, + [SMALL_STATE(313)] = 873, + [SMALL_STATE(314)] = 940, + [SMALL_STATE(315)] = 1007, + [SMALL_STATE(316)] = 1074, + [SMALL_STATE(317)] = 1141, + [SMALL_STATE(318)] = 1208, + [SMALL_STATE(319)] = 1237, + [SMALL_STATE(320)] = 1266, + [SMALL_STATE(321)] = 1333, + [SMALL_STATE(322)] = 1366, + [SMALL_STATE(323)] = 1433, + [SMALL_STATE(324)] = 1500, + [SMALL_STATE(325)] = 1567, + [SMALL_STATE(326)] = 1634, + [SMALL_STATE(327)] = 1666, + [SMALL_STATE(328)] = 1696, + [SMALL_STATE(329)] = 1723, + [SMALL_STATE(330)] = 1750, + [SMALL_STATE(331)] = 1777, + [SMALL_STATE(332)] = 1804, + [SMALL_STATE(333)] = 1831, + [SMALL_STATE(334)] = 1858, + [SMALL_STATE(335)] = 1885, + [SMALL_STATE(336)] = 1912, + [SMALL_STATE(337)] = 1939, + [SMALL_STATE(338)] = 1968, + [SMALL_STATE(339)] = 1995, + [SMALL_STATE(340)] = 2024, + [SMALL_STATE(341)] = 2051, + [SMALL_STATE(342)] = 2078, + [SMALL_STATE(343)] = 2107, + [SMALL_STATE(344)] = 2136, + [SMALL_STATE(345)] = 2163, + [SMALL_STATE(346)] = 2190, + [SMALL_STATE(347)] = 2217, + [SMALL_STATE(348)] = 2244, + [SMALL_STATE(349)] = 2273, + [SMALL_STATE(350)] = 2300, + [SMALL_STATE(351)] = 2327, + [SMALL_STATE(352)] = 2354, + [SMALL_STATE(353)] = 2381, + [SMALL_STATE(354)] = 2408, + [SMALL_STATE(355)] = 2437, + [SMALL_STATE(356)] = 2464, + [SMALL_STATE(357)] = 2493, + [SMALL_STATE(358)] = 2520, + [SMALL_STATE(359)] = 2547, + [SMALL_STATE(360)] = 2573, + [SMALL_STATE(361)] = 2599, + [SMALL_STATE(362)] = 2625, + [SMALL_STATE(363)] = 2651, + [SMALL_STATE(364)] = 2677, + [SMALL_STATE(365)] = 2703, + [SMALL_STATE(366)] = 2729, + [SMALL_STATE(367)] = 2755, + [SMALL_STATE(368)] = 2781, + [SMALL_STATE(369)] = 2807, + [SMALL_STATE(370)] = 2833, + [SMALL_STATE(371)] = 2859, + [SMALL_STATE(372)] = 2885, + [SMALL_STATE(373)] = 2911, + [SMALL_STATE(374)] = 2937, + [SMALL_STATE(375)] = 2963, + [SMALL_STATE(376)] = 2989, + [SMALL_STATE(377)] = 3015, + [SMALL_STATE(378)] = 3041, + [SMALL_STATE(379)] = 3067, + [SMALL_STATE(380)] = 3093, + [SMALL_STATE(381)] = 3119, + [SMALL_STATE(382)] = 3145, + [SMALL_STATE(383)] = 3171, + [SMALL_STATE(384)] = 3197, + [SMALL_STATE(385)] = 3223, + [SMALL_STATE(386)] = 3249, + [SMALL_STATE(387)] = 3275, + [SMALL_STATE(388)] = 3301, + [SMALL_STATE(389)] = 3327, + [SMALL_STATE(390)] = 3353, + [SMALL_STATE(391)] = 3379, + [SMALL_STATE(392)] = 3405, + [SMALL_STATE(393)] = 3431, + [SMALL_STATE(394)] = 3457, + [SMALL_STATE(395)] = 3483, + [SMALL_STATE(396)] = 3509, + [SMALL_STATE(397)] = 3535, + [SMALL_STATE(398)] = 3561, + [SMALL_STATE(399)] = 3603, + [SMALL_STATE(400)] = 3629, + [SMALL_STATE(401)] = 3655, + [SMALL_STATE(402)] = 3681, + [SMALL_STATE(403)] = 3707, + [SMALL_STATE(404)] = 3733, + [SMALL_STATE(405)] = 3759, + [SMALL_STATE(406)] = 3785, + [SMALL_STATE(407)] = 3811, + [SMALL_STATE(408)] = 3837, + [SMALL_STATE(409)] = 3863, + [SMALL_STATE(410)] = 3889, + [SMALL_STATE(411)] = 3915, + [SMALL_STATE(412)] = 3941, + [SMALL_STATE(413)] = 3967, + [SMALL_STATE(414)] = 3993, + [SMALL_STATE(415)] = 4019, + [SMALL_STATE(416)] = 4045, + [SMALL_STATE(417)] = 4071, + [SMALL_STATE(418)] = 4097, + [SMALL_STATE(419)] = 4123, + [SMALL_STATE(420)] = 4149, + [SMALL_STATE(421)] = 4177, + [SMALL_STATE(422)] = 4203, + [SMALL_STATE(423)] = 4229, + [SMALL_STATE(424)] = 4255, + [SMALL_STATE(425)] = 4281, + [SMALL_STATE(426)] = 4307, + [SMALL_STATE(427)] = 4333, + [SMALL_STATE(428)] = 4359, + [SMALL_STATE(429)] = 4385, + [SMALL_STATE(430)] = 4411, + [SMALL_STATE(431)] = 4437, + [SMALL_STATE(432)] = 4463, + [SMALL_STATE(433)] = 4489, + [SMALL_STATE(434)] = 4515, + [SMALL_STATE(435)] = 4541, + [SMALL_STATE(436)] = 4587, + [SMALL_STATE(437)] = 4613, + [SMALL_STATE(438)] = 4659, + [SMALL_STATE(439)] = 4687, + [SMALL_STATE(440)] = 4713, + [SMALL_STATE(441)] = 4739, + [SMALL_STATE(442)] = 4765, + [SMALL_STATE(443)] = 4791, + [SMALL_STATE(444)] = 4817, + [SMALL_STATE(445)] = 4843, + [SMALL_STATE(446)] = 4885, + [SMALL_STATE(447)] = 4933, + [SMALL_STATE(448)] = 4959, + [SMALL_STATE(449)] = 4985, + [SMALL_STATE(450)] = 5011, + [SMALL_STATE(451)] = 5037, + [SMALL_STATE(452)] = 5063, + [SMALL_STATE(453)] = 5089, + [SMALL_STATE(454)] = 5115, + [SMALL_STATE(455)] = 5141, + [SMALL_STATE(456)] = 5167, + [SMALL_STATE(457)] = 5193, + [SMALL_STATE(458)] = 5219, + [SMALL_STATE(459)] = 5245, + [SMALL_STATE(460)] = 5271, + [SMALL_STATE(461)] = 5297, + [SMALL_STATE(462)] = 5323, + [SMALL_STATE(463)] = 5349, + [SMALL_STATE(464)] = 5375, + [SMALL_STATE(465)] = 5401, + [SMALL_STATE(466)] = 5427, + [SMALL_STATE(467)] = 5453, + [SMALL_STATE(468)] = 5479, + [SMALL_STATE(469)] = 5525, + [SMALL_STATE(470)] = 5551, + [SMALL_STATE(471)] = 5597, + [SMALL_STATE(472)] = 5623, + [SMALL_STATE(473)] = 5649, + [SMALL_STATE(474)] = 5675, + [SMALL_STATE(475)] = 5701, + [SMALL_STATE(476)] = 5727, + [SMALL_STATE(477)] = 5753, + [SMALL_STATE(478)] = 5779, + [SMALL_STATE(479)] = 5805, + [SMALL_STATE(480)] = 5831, + [SMALL_STATE(481)] = 5857, + [SMALL_STATE(482)] = 5899, + [SMALL_STATE(483)] = 5925, + [SMALL_STATE(484)] = 5951, + [SMALL_STATE(485)] = 5977, + [SMALL_STATE(486)] = 6003, + [SMALL_STATE(487)] = 6029, + [SMALL_STATE(488)] = 6063, + [SMALL_STATE(489)] = 6089, + [SMALL_STATE(490)] = 6123, + [SMALL_STATE(491)] = 6149, + [SMALL_STATE(492)] = 6177, + [SMALL_STATE(493)] = 6203, + [SMALL_STATE(494)] = 6231, + [SMALL_STATE(495)] = 6257, + [SMALL_STATE(496)] = 6285, + [SMALL_STATE(497)] = 6311, + [SMALL_STATE(498)] = 6337, + [SMALL_STATE(499)] = 6363, + [SMALL_STATE(500)] = 6389, + [SMALL_STATE(501)] = 6415, + [SMALL_STATE(502)] = 6441, + [SMALL_STATE(503)] = 6467, + [SMALL_STATE(504)] = 6493, + [SMALL_STATE(505)] = 6519, + [SMALL_STATE(506)] = 6545, + [SMALL_STATE(507)] = 6571, + [SMALL_STATE(508)] = 6597, + [SMALL_STATE(509)] = 6623, + [SMALL_STATE(510)] = 6649, + [SMALL_STATE(511)] = 6675, + [SMALL_STATE(512)] = 6701, + [SMALL_STATE(513)] = 6727, + [SMALL_STATE(514)] = 6753, + [SMALL_STATE(515)] = 6779, + [SMALL_STATE(516)] = 6805, + [SMALL_STATE(517)] = 6831, + [SMALL_STATE(518)] = 6857, + [SMALL_STATE(519)] = 6883, + [SMALL_STATE(520)] = 6909, + [SMALL_STATE(521)] = 6935, + [SMALL_STATE(522)] = 6961, + [SMALL_STATE(523)] = 6987, + [SMALL_STATE(524)] = 7013, + [SMALL_STATE(525)] = 7059, + [SMALL_STATE(526)] = 7085, + [SMALL_STATE(527)] = 7131, + [SMALL_STATE(528)] = 7157, + [SMALL_STATE(529)] = 7183, + [SMALL_STATE(530)] = 7209, + [SMALL_STATE(531)] = 7255, + [SMALL_STATE(532)] = 7281, + [SMALL_STATE(533)] = 7307, + [SMALL_STATE(534)] = 7333, + [SMALL_STATE(535)] = 7359, + [SMALL_STATE(536)] = 7385, + [SMALL_STATE(537)] = 7411, + [SMALL_STATE(538)] = 7437, + [SMALL_STATE(539)] = 7463, + [SMALL_STATE(540)] = 7489, + [SMALL_STATE(541)] = 7535, + [SMALL_STATE(542)] = 7581, + [SMALL_STATE(543)] = 7627, + [SMALL_STATE(544)] = 7653, + [SMALL_STATE(545)] = 7679, + [SMALL_STATE(546)] = 7705, + [SMALL_STATE(547)] = 7751, + [SMALL_STATE(548)] = 7777, + [SMALL_STATE(549)] = 7803, + [SMALL_STATE(550)] = 7829, + [SMALL_STATE(551)] = 7855, + [SMALL_STATE(552)] = 7901, + [SMALL_STATE(553)] = 7927, + [SMALL_STATE(554)] = 7973, + [SMALL_STATE(555)] = 7999, + [SMALL_STATE(556)] = 8045, + [SMALL_STATE(557)] = 8091, + [SMALL_STATE(558)] = 8117, + [SMALL_STATE(559)] = 8143, + [SMALL_STATE(560)] = 8169, + [SMALL_STATE(561)] = 8195, + [SMALL_STATE(562)] = 8241, + [SMALL_STATE(563)] = 8267, + [SMALL_STATE(564)] = 8293, + [SMALL_STATE(565)] = 8319, + [SMALL_STATE(566)] = 8345, + [SMALL_STATE(567)] = 8373, + [SMALL_STATE(568)] = 8399, + [SMALL_STATE(569)] = 8427, + [SMALL_STATE(570)] = 8453, + [SMALL_STATE(571)] = 8479, + [SMALL_STATE(572)] = 8505, + [SMALL_STATE(573)] = 8531, + [SMALL_STATE(574)] = 8577, + [SMALL_STATE(575)] = 8603, + [SMALL_STATE(576)] = 8631, + [SMALL_STATE(577)] = 8657, + [SMALL_STATE(578)] = 8683, + [SMALL_STATE(579)] = 8709, + [SMALL_STATE(580)] = 8735, + [SMALL_STATE(581)] = 8761, + [SMALL_STATE(582)] = 8787, + [SMALL_STATE(583)] = 8813, + [SMALL_STATE(584)] = 8859, + [SMALL_STATE(585)] = 8905, + [SMALL_STATE(586)] = 8951, + [SMALL_STATE(587)] = 8997, + [SMALL_STATE(588)] = 9043, + [SMALL_STATE(589)] = 9069, + [SMALL_STATE(590)] = 9095, + [SMALL_STATE(591)] = 9143, + [SMALL_STATE(592)] = 9169, + [SMALL_STATE(593)] = 9215, + [SMALL_STATE(594)] = 9241, + [SMALL_STATE(595)] = 9287, + [SMALL_STATE(596)] = 9333, + [SMALL_STATE(597)] = 9359, + [SMALL_STATE(598)] = 9405, + [SMALL_STATE(599)] = 9431, + [SMALL_STATE(600)] = 9457, + [SMALL_STATE(601)] = 9483, + [SMALL_STATE(602)] = 9509, + [SMALL_STATE(603)] = 9535, + [SMALL_STATE(604)] = 9561, + [SMALL_STATE(605)] = 9587, + [SMALL_STATE(606)] = 9613, + [SMALL_STATE(607)] = 9639, + [SMALL_STATE(608)] = 9665, + [SMALL_STATE(609)] = 9691, + [SMALL_STATE(610)] = 9716, + [SMALL_STATE(611)] = 9741, + [SMALL_STATE(612)] = 9766, + [SMALL_STATE(613)] = 9791, + [SMALL_STATE(614)] = 9816, + [SMALL_STATE(615)] = 9841, + [SMALL_STATE(616)] = 9866, + [SMALL_STATE(617)] = 9911, + [SMALL_STATE(618)] = 9952, + [SMALL_STATE(619)] = 9977, + [SMALL_STATE(620)] = 10018, + [SMALL_STATE(621)] = 10043, + [SMALL_STATE(622)] = 10068, + [SMALL_STATE(623)] = 10101, + [SMALL_STATE(624)] = 10134, + [SMALL_STATE(625)] = 10161, + [SMALL_STATE(626)] = 10188, + [SMALL_STATE(627)] = 10215, + [SMALL_STATE(628)] = 10240, + [SMALL_STATE(629)] = 10265, + [SMALL_STATE(630)] = 10290, + [SMALL_STATE(631)] = 10315, + [SMALL_STATE(632)] = 10340, + [SMALL_STATE(633)] = 10365, + [SMALL_STATE(634)] = 10390, + [SMALL_STATE(635)] = 10415, + [SMALL_STATE(636)] = 10440, + [SMALL_STATE(637)] = 10467, + [SMALL_STATE(638)] = 10512, + [SMALL_STATE(639)] = 10537, + [SMALL_STATE(640)] = 10562, + [SMALL_STATE(641)] = 10587, + [SMALL_STATE(642)] = 10612, + [SMALL_STATE(643)] = 10637, + [SMALL_STATE(644)] = 10682, + [SMALL_STATE(645)] = 10707, + [SMALL_STATE(646)] = 10732, + [SMALL_STATE(647)] = 10757, + [SMALL_STATE(648)] = 10802, + [SMALL_STATE(649)] = 10827, + [SMALL_STATE(650)] = 10852, + [SMALL_STATE(651)] = 10877, + [SMALL_STATE(652)] = 10902, + [SMALL_STATE(653)] = 10947, + [SMALL_STATE(654)] = 10992, + [SMALL_STATE(655)] = 11017, + [SMALL_STATE(656)] = 11062, + [SMALL_STATE(657)] = 11087, + [SMALL_STATE(658)] = 11132, + [SMALL_STATE(659)] = 11157, + [SMALL_STATE(660)] = 11204, + [SMALL_STATE(661)] = 11249, + [SMALL_STATE(662)] = 11294, + [SMALL_STATE(663)] = 11339, + [SMALL_STATE(664)] = 11364, + [SMALL_STATE(665)] = 11409, + [SMALL_STATE(666)] = 11434, + [SMALL_STATE(667)] = 11459, + [SMALL_STATE(668)] = 11484, + [SMALL_STATE(669)] = 11509, + [SMALL_STATE(670)] = 11534, + [SMALL_STATE(671)] = 11559, + [SMALL_STATE(672)] = 11600, + [SMALL_STATE(673)] = 11625, + [SMALL_STATE(674)] = 11650, + [SMALL_STATE(675)] = 11677, + [SMALL_STATE(676)] = 11702, + [SMALL_STATE(677)] = 11727, + [SMALL_STATE(678)] = 11752, + [SMALL_STATE(679)] = 11777, + [SMALL_STATE(680)] = 11802, + [SMALL_STATE(681)] = 11827, + [SMALL_STATE(682)] = 11852, + [SMALL_STATE(683)] = 11877, + [SMALL_STATE(684)] = 11924, + [SMALL_STATE(685)] = 11949, + [SMALL_STATE(686)] = 11974, + [SMALL_STATE(687)] = 11999, + [SMALL_STATE(688)] = 12044, + [SMALL_STATE(689)] = 12069, + [SMALL_STATE(690)] = 12094, + [SMALL_STATE(691)] = 12119, + [SMALL_STATE(692)] = 12144, + [SMALL_STATE(693)] = 12169, + [SMALL_STATE(694)] = 12194, + [SMALL_STATE(695)] = 12219, + [SMALL_STATE(696)] = 12244, + [SMALL_STATE(697)] = 12269, + [SMALL_STATE(698)] = 12294, + [SMALL_STATE(699)] = 12319, + [SMALL_STATE(700)] = 12344, + [SMALL_STATE(701)] = 12369, + [SMALL_STATE(702)] = 12394, + [SMALL_STATE(703)] = 12419, + [SMALL_STATE(704)] = 12444, + [SMALL_STATE(705)] = 12469, + [SMALL_STATE(706)] = 12494, + [SMALL_STATE(707)] = 12519, + [SMALL_STATE(708)] = 12544, + [SMALL_STATE(709)] = 12569, + [SMALL_STATE(710)] = 12594, + [SMALL_STATE(711)] = 12619, + [SMALL_STATE(712)] = 12644, + [SMALL_STATE(713)] = 12669, + [SMALL_STATE(714)] = 12694, + [SMALL_STATE(715)] = 12719, + [SMALL_STATE(716)] = 12744, + [SMALL_STATE(717)] = 12769, + [SMALL_STATE(718)] = 12794, + [SMALL_STATE(719)] = 12819, + [SMALL_STATE(720)] = 12844, + [SMALL_STATE(721)] = 12869, + [SMALL_STATE(722)] = 12894, + [SMALL_STATE(723)] = 12919, + [SMALL_STATE(724)] = 12944, + [SMALL_STATE(725)] = 12969, + [SMALL_STATE(726)] = 12994, + [SMALL_STATE(727)] = 13019, + [SMALL_STATE(728)] = 13044, + [SMALL_STATE(729)] = 13069, + [SMALL_STATE(730)] = 13094, + [SMALL_STATE(731)] = 13119, + [SMALL_STATE(732)] = 13144, + [SMALL_STATE(733)] = 13169, + [SMALL_STATE(734)] = 13194, + [SMALL_STATE(735)] = 13219, + [SMALL_STATE(736)] = 13244, + [SMALL_STATE(737)] = 13269, + [SMALL_STATE(738)] = 13294, + [SMALL_STATE(739)] = 13319, + [SMALL_STATE(740)] = 13344, + [SMALL_STATE(741)] = 13369, + [SMALL_STATE(742)] = 13394, + [SMALL_STATE(743)] = 13419, + [SMALL_STATE(744)] = 13444, + [SMALL_STATE(745)] = 13469, + [SMALL_STATE(746)] = 13494, + [SMALL_STATE(747)] = 13519, + [SMALL_STATE(748)] = 13544, + [SMALL_STATE(749)] = 13569, + [SMALL_STATE(750)] = 13594, + [SMALL_STATE(751)] = 13619, + [SMALL_STATE(752)] = 13644, + [SMALL_STATE(753)] = 13669, + [SMALL_STATE(754)] = 13694, + [SMALL_STATE(755)] = 13719, + [SMALL_STATE(756)] = 13744, + [SMALL_STATE(757)] = 13769, + [SMALL_STATE(758)] = 13794, + [SMALL_STATE(759)] = 13839, + [SMALL_STATE(760)] = 13864, + [SMALL_STATE(761)] = 13889, + [SMALL_STATE(762)] = 13914, + [SMALL_STATE(763)] = 13939, + [SMALL_STATE(764)] = 13964, + [SMALL_STATE(765)] = 13989, + [SMALL_STATE(766)] = 14014, + [SMALL_STATE(767)] = 14039, + [SMALL_STATE(768)] = 14064, + [SMALL_STATE(769)] = 14089, + [SMALL_STATE(770)] = 14114, + [SMALL_STATE(771)] = 14159, + [SMALL_STATE(772)] = 14184, + [SMALL_STATE(773)] = 14209, + [SMALL_STATE(774)] = 14234, + [SMALL_STATE(775)] = 14259, + [SMALL_STATE(776)] = 14284, + [SMALL_STATE(777)] = 14309, + [SMALL_STATE(778)] = 14334, + [SMALL_STATE(779)] = 14359, + [SMALL_STATE(780)] = 14384, + [SMALL_STATE(781)] = 14409, + [SMALL_STATE(782)] = 14434, + [SMALL_STATE(783)] = 14459, + [SMALL_STATE(784)] = 14484, + [SMALL_STATE(785)] = 14509, + [SMALL_STATE(786)] = 14534, + [SMALL_STATE(787)] = 14559, + [SMALL_STATE(788)] = 14584, + [SMALL_STATE(789)] = 14609, + [SMALL_STATE(790)] = 14634, + [SMALL_STATE(791)] = 14659, + [SMALL_STATE(792)] = 14686, + [SMALL_STATE(793)] = 14711, + [SMALL_STATE(794)] = 14736, + [SMALL_STATE(795)] = 14781, + [SMALL_STATE(796)] = 14806, + [SMALL_STATE(797)] = 14831, + [SMALL_STATE(798)] = 14856, + [SMALL_STATE(799)] = 14881, + [SMALL_STATE(800)] = 14906, + [SMALL_STATE(801)] = 14931, + [SMALL_STATE(802)] = 14956, + [SMALL_STATE(803)] = 14981, + [SMALL_STATE(804)] = 15006, + [SMALL_STATE(805)] = 15031, + [SMALL_STATE(806)] = 15056, + [SMALL_STATE(807)] = 15081, + [SMALL_STATE(808)] = 15106, + [SMALL_STATE(809)] = 15131, + [SMALL_STATE(810)] = 15156, + [SMALL_STATE(811)] = 15181, + [SMALL_STATE(812)] = 15206, + [SMALL_STATE(813)] = 15231, + [SMALL_STATE(814)] = 15256, + [SMALL_STATE(815)] = 15281, + [SMALL_STATE(816)] = 15306, + [SMALL_STATE(817)] = 15331, + [SMALL_STATE(818)] = 15356, + [SMALL_STATE(819)] = 15401, + [SMALL_STATE(820)] = 15446, + [SMALL_STATE(821)] = 15491, + [SMALL_STATE(822)] = 15536, + [SMALL_STATE(823)] = 15561, + [SMALL_STATE(824)] = 15586, + [SMALL_STATE(825)] = 15611, + [SMALL_STATE(826)] = 15636, + [SMALL_STATE(827)] = 15661, + [SMALL_STATE(828)] = 15686, + [SMALL_STATE(829)] = 15731, + [SMALL_STATE(830)] = 15756, + [SMALL_STATE(831)] = 15781, + [SMALL_STATE(832)] = 15806, + [SMALL_STATE(833)] = 15831, + [SMALL_STATE(834)] = 15856, + [SMALL_STATE(835)] = 15881, + [SMALL_STATE(836)] = 15906, + [SMALL_STATE(837)] = 15931, + [SMALL_STATE(838)] = 15956, + [SMALL_STATE(839)] = 16001, + [SMALL_STATE(840)] = 16026, + [SMALL_STATE(841)] = 16071, + [SMALL_STATE(842)] = 16096, + [SMALL_STATE(843)] = 16121, + [SMALL_STATE(844)] = 16146, + [SMALL_STATE(845)] = 16171, + [SMALL_STATE(846)] = 16196, + [SMALL_STATE(847)] = 16241, + [SMALL_STATE(848)] = 16286, + [SMALL_STATE(849)] = 16331, + [SMALL_STATE(850)] = 16356, + [SMALL_STATE(851)] = 16381, + [SMALL_STATE(852)] = 16427, + [SMALL_STATE(853)] = 16473, + [SMALL_STATE(854)] = 16519, + [SMALL_STATE(855)] = 16565, + [SMALL_STATE(856)] = 16611, + [SMALL_STATE(857)] = 16657, + [SMALL_STATE(858)] = 16703, + [SMALL_STATE(859)] = 16749, + [SMALL_STATE(860)] = 16795, + [SMALL_STATE(861)] = 16841, + [SMALL_STATE(862)] = 16887, + [SMALL_STATE(863)] = 16933, + [SMALL_STATE(864)] = 16979, + [SMALL_STATE(865)] = 17025, + [SMALL_STATE(866)] = 17071, + [SMALL_STATE(867)] = 17117, + [SMALL_STATE(868)] = 17163, + [SMALL_STATE(869)] = 17204, + [SMALL_STATE(870)] = 17243, + [SMALL_STATE(871)] = 17284, + [SMALL_STATE(872)] = 17325, + [SMALL_STATE(873)] = 17366, + [SMALL_STATE(874)] = 17407, + [SMALL_STATE(875)] = 17448, + [SMALL_STATE(876)] = 17487, + [SMALL_STATE(877)] = 17527, + [SMALL_STATE(878)] = 17567, + [SMALL_STATE(879)] = 17607, + [SMALL_STATE(880)] = 17647, + [SMALL_STATE(881)] = 17687, + [SMALL_STATE(882)] = 17727, + [SMALL_STATE(883)] = 17767, + [SMALL_STATE(884)] = 17807, + [SMALL_STATE(885)] = 17847, + [SMALL_STATE(886)] = 17887, + [SMALL_STATE(887)] = 17927, + [SMALL_STATE(888)] = 17967, + [SMALL_STATE(889)] = 18007, + [SMALL_STATE(890)] = 18047, + [SMALL_STATE(891)] = 18087, + [SMALL_STATE(892)] = 18127, + [SMALL_STATE(893)] = 18167, + [SMALL_STATE(894)] = 18207, + [SMALL_STATE(895)] = 18247, + [SMALL_STATE(896)] = 18287, + [SMALL_STATE(897)] = 18327, + [SMALL_STATE(898)] = 18367, + [SMALL_STATE(899)] = 18407, + [SMALL_STATE(900)] = 18447, + [SMALL_STATE(901)] = 18487, + [SMALL_STATE(902)] = 18527, + [SMALL_STATE(903)] = 18567, + [SMALL_STATE(904)] = 18607, + [SMALL_STATE(905)] = 18647, + [SMALL_STATE(906)] = 18681, + [SMALL_STATE(907)] = 18715, + [SMALL_STATE(908)] = 18749, + [SMALL_STATE(909)] = 18783, + [SMALL_STATE(910)] = 18817, + [SMALL_STATE(911)] = 18851, + [SMALL_STATE(912)] = 18885, + [SMALL_STATE(913)] = 18919, + [SMALL_STATE(914)] = 18953, + [SMALL_STATE(915)] = 18987, + [SMALL_STATE(916)] = 19021, + [SMALL_STATE(917)] = 19055, + [SMALL_STATE(918)] = 19089, + [SMALL_STATE(919)] = 19123, + [SMALL_STATE(920)] = 19157, + [SMALL_STATE(921)] = 19191, + [SMALL_STATE(922)] = 19225, + [SMALL_STATE(923)] = 19259, + [SMALL_STATE(924)] = 19293, + [SMALL_STATE(925)] = 19327, + [SMALL_STATE(926)] = 19357, + [SMALL_STATE(927)] = 19391, + [SMALL_STATE(928)] = 19425, + [SMALL_STATE(929)] = 19459, + [SMALL_STATE(930)] = 19489, + [SMALL_STATE(931)] = 19523, + [SMALL_STATE(932)] = 19557, + [SMALL_STATE(933)] = 19591, + [SMALL_STATE(934)] = 19625, + [SMALL_STATE(935)] = 19659, + [SMALL_STATE(936)] = 19693, + [SMALL_STATE(937)] = 19727, + [SMALL_STATE(938)] = 19761, + [SMALL_STATE(939)] = 19795, + [SMALL_STATE(940)] = 19829, + [SMALL_STATE(941)] = 19863, + [SMALL_STATE(942)] = 19897, + [SMALL_STATE(943)] = 19931, + [SMALL_STATE(944)] = 19965, + [SMALL_STATE(945)] = 19999, + [SMALL_STATE(946)] = 20033, + [SMALL_STATE(947)] = 20067, + [SMALL_STATE(948)] = 20101, + [SMALL_STATE(949)] = 20135, + [SMALL_STATE(950)] = 20169, + [SMALL_STATE(951)] = 20203, + [SMALL_STATE(952)] = 20237, + [SMALL_STATE(953)] = 20271, + [SMALL_STATE(954)] = 20305, + [SMALL_STATE(955)] = 20339, + [SMALL_STATE(956)] = 20370, + [SMALL_STATE(957)] = 20398, + [SMALL_STATE(958)] = 20426, + [SMALL_STATE(959)] = 20451, + [SMALL_STATE(960)] = 20476, + [SMALL_STATE(961)] = 20501, + [SMALL_STATE(962)] = 20526, + [SMALL_STATE(963)] = 20551, + [SMALL_STATE(964)] = 20576, + [SMALL_STATE(965)] = 20601, + [SMALL_STATE(966)] = 20626, + [SMALL_STATE(967)] = 20648, + [SMALL_STATE(968)] = 20670, + [SMALL_STATE(969)] = 20689, + [SMALL_STATE(970)] = 20708, + [SMALL_STATE(971)] = 20727, + [SMALL_STATE(972)] = 20746, + [SMALL_STATE(973)] = 20765, + [SMALL_STATE(974)] = 20784, + [SMALL_STATE(975)] = 20803, + [SMALL_STATE(976)] = 20822, + [SMALL_STATE(977)] = 20841, + [SMALL_STATE(978)] = 20860, + [SMALL_STATE(979)] = 20879, + [SMALL_STATE(980)] = 20898, + [SMALL_STATE(981)] = 20917, + [SMALL_STATE(982)] = 20936, + [SMALL_STATE(983)] = 20955, + [SMALL_STATE(984)] = 20974, + [SMALL_STATE(985)] = 20993, + [SMALL_STATE(986)] = 21012, + [SMALL_STATE(987)] = 21031, + [SMALL_STATE(988)] = 21050, + [SMALL_STATE(989)] = 21069, + [SMALL_STATE(990)] = 21088, + [SMALL_STATE(991)] = 21107, + [SMALL_STATE(992)] = 21126, + [SMALL_STATE(993)] = 21142, + [SMALL_STATE(994)] = 21156, + [SMALL_STATE(995)] = 21172, + [SMALL_STATE(996)] = 21188, + [SMALL_STATE(997)] = 21204, + [SMALL_STATE(998)] = 21220, + [SMALL_STATE(999)] = 21236, + [SMALL_STATE(1000)] = 21252, + [SMALL_STATE(1001)] = 21268, + [SMALL_STATE(1002)] = 21284, + [SMALL_STATE(1003)] = 21300, + [SMALL_STATE(1004)] = 21316, + [SMALL_STATE(1005)] = 21332, + [SMALL_STATE(1006)] = 21348, + [SMALL_STATE(1007)] = 21364, + [SMALL_STATE(1008)] = 21380, + [SMALL_STATE(1009)] = 21396, + [SMALL_STATE(1010)] = 21412, + [SMALL_STATE(1011)] = 21428, + [SMALL_STATE(1012)] = 21442, + [SMALL_STATE(1013)] = 21456, + [SMALL_STATE(1014)] = 21470, + [SMALL_STATE(1015)] = 21483, + [SMALL_STATE(1016)] = 21496, + [SMALL_STATE(1017)] = 21509, + [SMALL_STATE(1018)] = 21522, + [SMALL_STATE(1019)] = 21535, + [SMALL_STATE(1020)] = 21548, + [SMALL_STATE(1021)] = 21561, + [SMALL_STATE(1022)] = 21574, + [SMALL_STATE(1023)] = 21587, + [SMALL_STATE(1024)] = 21600, + [SMALL_STATE(1025)] = 21613, + [SMALL_STATE(1026)] = 21626, + [SMALL_STATE(1027)] = 21639, + [SMALL_STATE(1028)] = 21652, + [SMALL_STATE(1029)] = 21665, + [SMALL_STATE(1030)] = 21678, + [SMALL_STATE(1031)] = 21691, + [SMALL_STATE(1032)] = 21704, + [SMALL_STATE(1033)] = 21717, + [SMALL_STATE(1034)] = 21730, + [SMALL_STATE(1035)] = 21743, + [SMALL_STATE(1036)] = 21756, + [SMALL_STATE(1037)] = 21769, + [SMALL_STATE(1038)] = 21782, + [SMALL_STATE(1039)] = 21795, + [SMALL_STATE(1040)] = 21808, + [SMALL_STATE(1041)] = 21821, + [SMALL_STATE(1042)] = 21834, + [SMALL_STATE(1043)] = 21847, + [SMALL_STATE(1044)] = 21860, + [SMALL_STATE(1045)] = 21873, + [SMALL_STATE(1046)] = 21886, + [SMALL_STATE(1047)] = 21899, + [SMALL_STATE(1048)] = 21912, + [SMALL_STATE(1049)] = 21925, + [SMALL_STATE(1050)] = 21938, + [SMALL_STATE(1051)] = 21951, + [SMALL_STATE(1052)] = 21964, + [SMALL_STATE(1053)] = 21977, + [SMALL_STATE(1054)] = 21990, + [SMALL_STATE(1055)] = 22003, + [SMALL_STATE(1056)] = 22016, + [SMALL_STATE(1057)] = 22029, + [SMALL_STATE(1058)] = 22042, + [SMALL_STATE(1059)] = 22055, + [SMALL_STATE(1060)] = 22068, + [SMALL_STATE(1061)] = 22081, + [SMALL_STATE(1062)] = 22094, + [SMALL_STATE(1063)] = 22107, + [SMALL_STATE(1064)] = 22120, + [SMALL_STATE(1065)] = 22133, + [SMALL_STATE(1066)] = 22146, + [SMALL_STATE(1067)] = 22159, + [SMALL_STATE(1068)] = 22172, + [SMALL_STATE(1069)] = 22185, + [SMALL_STATE(1070)] = 22198, + [SMALL_STATE(1071)] = 22211, + [SMALL_STATE(1072)] = 22220, + [SMALL_STATE(1073)] = 22233, + [SMALL_STATE(1074)] = 22246, + [SMALL_STATE(1075)] = 22259, + [SMALL_STATE(1076)] = 22272, + [SMALL_STATE(1077)] = 22285, + [SMALL_STATE(1078)] = 22298, + [SMALL_STATE(1079)] = 22311, + [SMALL_STATE(1080)] = 22324, + [SMALL_STATE(1081)] = 22337, + [SMALL_STATE(1082)] = 22350, + [SMALL_STATE(1083)] = 22363, + [SMALL_STATE(1084)] = 22376, + [SMALL_STATE(1085)] = 22389, + [SMALL_STATE(1086)] = 22402, + [SMALL_STATE(1087)] = 22415, + [SMALL_STATE(1088)] = 22428, + [SMALL_STATE(1089)] = 22441, + [SMALL_STATE(1090)] = 22454, + [SMALL_STATE(1091)] = 22467, + [SMALL_STATE(1092)] = 22480, + [SMALL_STATE(1093)] = 22493, + [SMALL_STATE(1094)] = 22506, + [SMALL_STATE(1095)] = 22519, + [SMALL_STATE(1096)] = 22532, + [SMALL_STATE(1097)] = 22545, + [SMALL_STATE(1098)] = 22558, + [SMALL_STATE(1099)] = 22571, + [SMALL_STATE(1100)] = 22584, + [SMALL_STATE(1101)] = 22597, + [SMALL_STATE(1102)] = 22610, + [SMALL_STATE(1103)] = 22623, + [SMALL_STATE(1104)] = 22636, + [SMALL_STATE(1105)] = 22649, + [SMALL_STATE(1106)] = 22662, + [SMALL_STATE(1107)] = 22675, + [SMALL_STATE(1108)] = 22688, + [SMALL_STATE(1109)] = 22701, + [SMALL_STATE(1110)] = 22714, + [SMALL_STATE(1111)] = 22727, + [SMALL_STATE(1112)] = 22740, + [SMALL_STATE(1113)] = 22753, + [SMALL_STATE(1114)] = 22766, + [SMALL_STATE(1115)] = 22779, + [SMALL_STATE(1116)] = 22792, + [SMALL_STATE(1117)] = 22805, + [SMALL_STATE(1118)] = 22818, + [SMALL_STATE(1119)] = 22831, + [SMALL_STATE(1120)] = 22844, + [SMALL_STATE(1121)] = 22857, + [SMALL_STATE(1122)] = 22870, + [SMALL_STATE(1123)] = 22883, + [SMALL_STATE(1124)] = 22896, + [SMALL_STATE(1125)] = 22909, + [SMALL_STATE(1126)] = 22922, + [SMALL_STATE(1127)] = 22935, + [SMALL_STATE(1128)] = 22948, + [SMALL_STATE(1129)] = 22961, + [SMALL_STATE(1130)] = 22974, + [SMALL_STATE(1131)] = 22987, + [SMALL_STATE(1132)] = 23000, + [SMALL_STATE(1133)] = 23013, + [SMALL_STATE(1134)] = 23026, + [SMALL_STATE(1135)] = 23039, + [SMALL_STATE(1136)] = 23052, + [SMALL_STATE(1137)] = 23065, + [SMALL_STATE(1138)] = 23078, + [SMALL_STATE(1139)] = 23091, + [SMALL_STATE(1140)] = 23104, + [SMALL_STATE(1141)] = 23117, + [SMALL_STATE(1142)] = 23130, + [SMALL_STATE(1143)] = 23143, + [SMALL_STATE(1144)] = 23156, + [SMALL_STATE(1145)] = 23169, + [SMALL_STATE(1146)] = 23176, + [SMALL_STATE(1147)] = 23189, + [SMALL_STATE(1148)] = 23202, + [SMALL_STATE(1149)] = 23215, + [SMALL_STATE(1150)] = 23228, + [SMALL_STATE(1151)] = 23241, + [SMALL_STATE(1152)] = 23254, + [SMALL_STATE(1153)] = 23267, + [SMALL_STATE(1154)] = 23280, + [SMALL_STATE(1155)] = 23293, + [SMALL_STATE(1156)] = 23306, + [SMALL_STATE(1157)] = 23319, + [SMALL_STATE(1158)] = 23332, + [SMALL_STATE(1159)] = 23345, + [SMALL_STATE(1160)] = 23358, + [SMALL_STATE(1161)] = 23371, + [SMALL_STATE(1162)] = 23384, + [SMALL_STATE(1163)] = 23397, + [SMALL_STATE(1164)] = 23410, + [SMALL_STATE(1165)] = 23423, + [SMALL_STATE(1166)] = 23436, + [SMALL_STATE(1167)] = 23449, + [SMALL_STATE(1168)] = 23462, + [SMALL_STATE(1169)] = 23475, + [SMALL_STATE(1170)] = 23488, + [SMALL_STATE(1171)] = 23501, + [SMALL_STATE(1172)] = 23514, + [SMALL_STATE(1173)] = 23527, + [SMALL_STATE(1174)] = 23540, + [SMALL_STATE(1175)] = 23553, + [SMALL_STATE(1176)] = 23566, + [SMALL_STATE(1177)] = 23579, + [SMALL_STATE(1178)] = 23592, + [SMALL_STATE(1179)] = 23605, + [SMALL_STATE(1180)] = 23618, + [SMALL_STATE(1181)] = 23631, + [SMALL_STATE(1182)] = 23644, + [SMALL_STATE(1183)] = 23657, + [SMALL_STATE(1184)] = 23670, + [SMALL_STATE(1185)] = 23683, + [SMALL_STATE(1186)] = 23696, + [SMALL_STATE(1187)] = 23709, + [SMALL_STATE(1188)] = 23722, + [SMALL_STATE(1189)] = 23735, + [SMALL_STATE(1190)] = 23748, + [SMALL_STATE(1191)] = 23761, + [SMALL_STATE(1192)] = 23774, + [SMALL_STATE(1193)] = 23787, + [SMALL_STATE(1194)] = 23800, + [SMALL_STATE(1195)] = 23813, + [SMALL_STATE(1196)] = 23826, + [SMALL_STATE(1197)] = 23839, + [SMALL_STATE(1198)] = 23852, + [SMALL_STATE(1199)] = 23865, + [SMALL_STATE(1200)] = 23878, + [SMALL_STATE(1201)] = 23891, + [SMALL_STATE(1202)] = 23904, + [SMALL_STATE(1203)] = 23914, + [SMALL_STATE(1204)] = 23924, + [SMALL_STATE(1205)] = 23934, + [SMALL_STATE(1206)] = 23944, + [SMALL_STATE(1207)] = 23954, + [SMALL_STATE(1208)] = 23964, + [SMALL_STATE(1209)] = 23974, + [SMALL_STATE(1210)] = 23984, + [SMALL_STATE(1211)] = 23994, + [SMALL_STATE(1212)] = 24002, + [SMALL_STATE(1213)] = 24012, + [SMALL_STATE(1214)] = 24022, + [SMALL_STATE(1215)] = 24032, + [SMALL_STATE(1216)] = 24042, + [SMALL_STATE(1217)] = 24052, + [SMALL_STATE(1218)] = 24062, + [SMALL_STATE(1219)] = 24072, + [SMALL_STATE(1220)] = 24082, + [SMALL_STATE(1221)] = 24092, + [SMALL_STATE(1222)] = 24102, + [SMALL_STATE(1223)] = 24112, + [SMALL_STATE(1224)] = 24122, + [SMALL_STATE(1225)] = 24132, + [SMALL_STATE(1226)] = 24142, + [SMALL_STATE(1227)] = 24152, + [SMALL_STATE(1228)] = 24162, + [SMALL_STATE(1229)] = 24172, + [SMALL_STATE(1230)] = 24182, + [SMALL_STATE(1231)] = 24192, + [SMALL_STATE(1232)] = 24202, + [SMALL_STATE(1233)] = 24212, + [SMALL_STATE(1234)] = 24222, + [SMALL_STATE(1235)] = 24232, + [SMALL_STATE(1236)] = 24242, + [SMALL_STATE(1237)] = 24252, + [SMALL_STATE(1238)] = 24260, + [SMALL_STATE(1239)] = 24270, + [SMALL_STATE(1240)] = 24280, + [SMALL_STATE(1241)] = 24290, + [SMALL_STATE(1242)] = 24298, + [SMALL_STATE(1243)] = 24308, + [SMALL_STATE(1244)] = 24318, + [SMALL_STATE(1245)] = 24326, + [SMALL_STATE(1246)] = 24336, + [SMALL_STATE(1247)] = 24346, + [SMALL_STATE(1248)] = 24356, + [SMALL_STATE(1249)] = 24366, + [SMALL_STATE(1250)] = 24376, + [SMALL_STATE(1251)] = 24386, + [SMALL_STATE(1252)] = 24396, + [SMALL_STATE(1253)] = 24406, + [SMALL_STATE(1254)] = 24416, + [SMALL_STATE(1255)] = 24426, + [SMALL_STATE(1256)] = 24436, + [SMALL_STATE(1257)] = 24446, + [SMALL_STATE(1258)] = 24456, + [SMALL_STATE(1259)] = 24466, + [SMALL_STATE(1260)] = 24476, + [SMALL_STATE(1261)] = 24486, + [SMALL_STATE(1262)] = 24496, + [SMALL_STATE(1263)] = 24506, + [SMALL_STATE(1264)] = 24516, + [SMALL_STATE(1265)] = 24526, + [SMALL_STATE(1266)] = 24536, + [SMALL_STATE(1267)] = 24546, + [SMALL_STATE(1268)] = 24556, + [SMALL_STATE(1269)] = 24566, + [SMALL_STATE(1270)] = 24576, + [SMALL_STATE(1271)] = 24586, + [SMALL_STATE(1272)] = 24596, + [SMALL_STATE(1273)] = 24606, + [SMALL_STATE(1274)] = 24616, + [SMALL_STATE(1275)] = 24626, + [SMALL_STATE(1276)] = 24636, + [SMALL_STATE(1277)] = 24646, + [SMALL_STATE(1278)] = 24656, + [SMALL_STATE(1279)] = 24666, + [SMALL_STATE(1280)] = 24676, + [SMALL_STATE(1281)] = 24686, + [SMALL_STATE(1282)] = 24696, + [SMALL_STATE(1283)] = 24706, + [SMALL_STATE(1284)] = 24716, + [SMALL_STATE(1285)] = 24726, + [SMALL_STATE(1286)] = 24736, + [SMALL_STATE(1287)] = 24746, + [SMALL_STATE(1288)] = 24756, + [SMALL_STATE(1289)] = 24766, + [SMALL_STATE(1290)] = 24776, + [SMALL_STATE(1291)] = 24786, + [SMALL_STATE(1292)] = 24796, + [SMALL_STATE(1293)] = 24806, + [SMALL_STATE(1294)] = 24816, + [SMALL_STATE(1295)] = 24826, + [SMALL_STATE(1296)] = 24836, + [SMALL_STATE(1297)] = 24846, + [SMALL_STATE(1298)] = 24856, + [SMALL_STATE(1299)] = 24866, + [SMALL_STATE(1300)] = 24876, + [SMALL_STATE(1301)] = 24886, + [SMALL_STATE(1302)] = 24896, + [SMALL_STATE(1303)] = 24906, + [SMALL_STATE(1304)] = 24916, + [SMALL_STATE(1305)] = 24924, + [SMALL_STATE(1306)] = 24934, + [SMALL_STATE(1307)] = 24944, + [SMALL_STATE(1308)] = 24954, + [SMALL_STATE(1309)] = 24962, + [SMALL_STATE(1310)] = 24970, + [SMALL_STATE(1311)] = 24980, + [SMALL_STATE(1312)] = 24990, + [SMALL_STATE(1313)] = 25000, + [SMALL_STATE(1314)] = 25010, + [SMALL_STATE(1315)] = 25020, + [SMALL_STATE(1316)] = 25028, + [SMALL_STATE(1317)] = 25038, + [SMALL_STATE(1318)] = 25046, + [SMALL_STATE(1319)] = 25054, + [SMALL_STATE(1320)] = 25062, + [SMALL_STATE(1321)] = 25072, + [SMALL_STATE(1322)] = 25082, + [SMALL_STATE(1323)] = 25090, + [SMALL_STATE(1324)] = 25100, + [SMALL_STATE(1325)] = 25110, + [SMALL_STATE(1326)] = 25120, + [SMALL_STATE(1327)] = 25130, + [SMALL_STATE(1328)] = 25140, + [SMALL_STATE(1329)] = 25150, + [SMALL_STATE(1330)] = 25160, + [SMALL_STATE(1331)] = 25170, + [SMALL_STATE(1332)] = 25180, + [SMALL_STATE(1333)] = 25190, + [SMALL_STATE(1334)] = 25200, + [SMALL_STATE(1335)] = 25208, + [SMALL_STATE(1336)] = 25218, + [SMALL_STATE(1337)] = 25228, + [SMALL_STATE(1338)] = 25238, + [SMALL_STATE(1339)] = 25248, + [SMALL_STATE(1340)] = 25256, + [SMALL_STATE(1341)] = 25266, + [SMALL_STATE(1342)] = 25276, + [SMALL_STATE(1343)] = 25286, + [SMALL_STATE(1344)] = 25296, + [SMALL_STATE(1345)] = 25306, + [SMALL_STATE(1346)] = 25316, + [SMALL_STATE(1347)] = 25326, + [SMALL_STATE(1348)] = 25336, + [SMALL_STATE(1349)] = 25346, + [SMALL_STATE(1350)] = 25356, + [SMALL_STATE(1351)] = 25366, + [SMALL_STATE(1352)] = 25376, + [SMALL_STATE(1353)] = 25386, + [SMALL_STATE(1354)] = 25396, + [SMALL_STATE(1355)] = 25406, + [SMALL_STATE(1356)] = 25416, + [SMALL_STATE(1357)] = 25426, + [SMALL_STATE(1358)] = 25436, + [SMALL_STATE(1359)] = 25446, + [SMALL_STATE(1360)] = 25456, + [SMALL_STATE(1361)] = 25466, + [SMALL_STATE(1362)] = 25476, + [SMALL_STATE(1363)] = 25486, + [SMALL_STATE(1364)] = 25496, + [SMALL_STATE(1365)] = 25506, + [SMALL_STATE(1366)] = 25516, + [SMALL_STATE(1367)] = 25526, + [SMALL_STATE(1368)] = 25536, + [SMALL_STATE(1369)] = 25546, + [SMALL_STATE(1370)] = 25556, + [SMALL_STATE(1371)] = 25566, + [SMALL_STATE(1372)] = 25574, + [SMALL_STATE(1373)] = 25584, + [SMALL_STATE(1374)] = 25594, + [SMALL_STATE(1375)] = 25604, + [SMALL_STATE(1376)] = 25614, + [SMALL_STATE(1377)] = 25624, + [SMALL_STATE(1378)] = 25634, + [SMALL_STATE(1379)] = 25644, + [SMALL_STATE(1380)] = 25654, + [SMALL_STATE(1381)] = 25664, + [SMALL_STATE(1382)] = 25674, + [SMALL_STATE(1383)] = 25684, + [SMALL_STATE(1384)] = 25694, + [SMALL_STATE(1385)] = 25704, + [SMALL_STATE(1386)] = 25714, + [SMALL_STATE(1387)] = 25724, + [SMALL_STATE(1388)] = 25734, + [SMALL_STATE(1389)] = 25744, + [SMALL_STATE(1390)] = 25754, + [SMALL_STATE(1391)] = 25764, + [SMALL_STATE(1392)] = 25774, + [SMALL_STATE(1393)] = 25784, + [SMALL_STATE(1394)] = 25794, + [SMALL_STATE(1395)] = 25804, + [SMALL_STATE(1396)] = 25814, + [SMALL_STATE(1397)] = 25824, + [SMALL_STATE(1398)] = 25834, + [SMALL_STATE(1399)] = 25844, + [SMALL_STATE(1400)] = 25854, + [SMALL_STATE(1401)] = 25864, + [SMALL_STATE(1402)] = 25871, + [SMALL_STATE(1403)] = 25878, + [SMALL_STATE(1404)] = 25885, + [SMALL_STATE(1405)] = 25892, + [SMALL_STATE(1406)] = 25899, + [SMALL_STATE(1407)] = 25906, + [SMALL_STATE(1408)] = 25913, + [SMALL_STATE(1409)] = 25920, + [SMALL_STATE(1410)] = 25927, + [SMALL_STATE(1411)] = 25934, + [SMALL_STATE(1412)] = 25941, + [SMALL_STATE(1413)] = 25948, + [SMALL_STATE(1414)] = 25955, + [SMALL_STATE(1415)] = 25962, + [SMALL_STATE(1416)] = 25969, + [SMALL_STATE(1417)] = 25976, + [SMALL_STATE(1418)] = 25983, + [SMALL_STATE(1419)] = 25990, + [SMALL_STATE(1420)] = 25997, + [SMALL_STATE(1421)] = 26004, + [SMALL_STATE(1422)] = 26011, + [SMALL_STATE(1423)] = 26018, + [SMALL_STATE(1424)] = 26025, + [SMALL_STATE(1425)] = 26032, + [SMALL_STATE(1426)] = 26039, + [SMALL_STATE(1427)] = 26046, + [SMALL_STATE(1428)] = 26053, + [SMALL_STATE(1429)] = 26060, + [SMALL_STATE(1430)] = 26067, + [SMALL_STATE(1431)] = 26074, + [SMALL_STATE(1432)] = 26081, + [SMALL_STATE(1433)] = 26088, + [SMALL_STATE(1434)] = 26095, + [SMALL_STATE(1435)] = 26102, + [SMALL_STATE(1436)] = 26109, + [SMALL_STATE(1437)] = 26116, + [SMALL_STATE(1438)] = 26123, + [SMALL_STATE(1439)] = 26130, + [SMALL_STATE(1440)] = 26137, + [SMALL_STATE(1441)] = 26144, + [SMALL_STATE(1442)] = 26151, + [SMALL_STATE(1443)] = 26158, + [SMALL_STATE(1444)] = 26165, + [SMALL_STATE(1445)] = 26172, + [SMALL_STATE(1446)] = 26179, + [SMALL_STATE(1447)] = 26186, + [SMALL_STATE(1448)] = 26193, + [SMALL_STATE(1449)] = 26200, + [SMALL_STATE(1450)] = 26207, + [SMALL_STATE(1451)] = 26214, + [SMALL_STATE(1452)] = 26221, + [SMALL_STATE(1453)] = 26228, + [SMALL_STATE(1454)] = 26235, + [SMALL_STATE(1455)] = 26242, + [SMALL_STATE(1456)] = 26249, + [SMALL_STATE(1457)] = 26256, + [SMALL_STATE(1458)] = 26263, + [SMALL_STATE(1459)] = 26270, + [SMALL_STATE(1460)] = 26277, + [SMALL_STATE(1461)] = 26284, + [SMALL_STATE(1462)] = 26291, + [SMALL_STATE(1463)] = 26298, + [SMALL_STATE(1464)] = 26305, + [SMALL_STATE(1465)] = 26312, + [SMALL_STATE(1466)] = 26319, + [SMALL_STATE(1467)] = 26326, + [SMALL_STATE(1468)] = 26333, + [SMALL_STATE(1469)] = 26340, + [SMALL_STATE(1470)] = 26347, + [SMALL_STATE(1471)] = 26354, + [SMALL_STATE(1472)] = 26361, + [SMALL_STATE(1473)] = 26368, + [SMALL_STATE(1474)] = 26375, + [SMALL_STATE(1475)] = 26382, + [SMALL_STATE(1476)] = 26389, + [SMALL_STATE(1477)] = 26396, + [SMALL_STATE(1478)] = 26403, + [SMALL_STATE(1479)] = 26410, + [SMALL_STATE(1480)] = 26417, + [SMALL_STATE(1481)] = 26424, + [SMALL_STATE(1482)] = 26431, + [SMALL_STATE(1483)] = 26438, + [SMALL_STATE(1484)] = 26445, + [SMALL_STATE(1485)] = 26452, + [SMALL_STATE(1486)] = 26459, + [SMALL_STATE(1487)] = 26466, + [SMALL_STATE(1488)] = 26473, + [SMALL_STATE(1489)] = 26480, + [SMALL_STATE(1490)] = 26487, + [SMALL_STATE(1491)] = 26494, + [SMALL_STATE(1492)] = 26501, + [SMALL_STATE(1493)] = 26508, + [SMALL_STATE(1494)] = 26515, + [SMALL_STATE(1495)] = 26522, + [SMALL_STATE(1496)] = 26529, + [SMALL_STATE(1497)] = 26536, + [SMALL_STATE(1498)] = 26543, + [SMALL_STATE(1499)] = 26550, + [SMALL_STATE(1500)] = 26557, + [SMALL_STATE(1501)] = 26564, + [SMALL_STATE(1502)] = 26571, + [SMALL_STATE(1503)] = 26578, + [SMALL_STATE(1504)] = 26585, + [SMALL_STATE(1505)] = 26592, + [SMALL_STATE(1506)] = 26599, + [SMALL_STATE(1507)] = 26606, + [SMALL_STATE(1508)] = 26613, + [SMALL_STATE(1509)] = 26620, + [SMALL_STATE(1510)] = 26627, + [SMALL_STATE(1511)] = 26634, + [SMALL_STATE(1512)] = 26641, + [SMALL_STATE(1513)] = 26648, + [SMALL_STATE(1514)] = 26655, + [SMALL_STATE(1515)] = 26662, + [SMALL_STATE(1516)] = 26669, + [SMALL_STATE(1517)] = 26676, + [SMALL_STATE(1518)] = 26683, + [SMALL_STATE(1519)] = 26690, + [SMALL_STATE(1520)] = 26697, + [SMALL_STATE(1521)] = 26704, + [SMALL_STATE(1522)] = 26711, + [SMALL_STATE(1523)] = 26718, + [SMALL_STATE(1524)] = 26725, + [SMALL_STATE(1525)] = 26732, + [SMALL_STATE(1526)] = 26739, + [SMALL_STATE(1527)] = 26746, + [SMALL_STATE(1528)] = 26753, + [SMALL_STATE(1529)] = 26760, + [SMALL_STATE(1530)] = 26767, + [SMALL_STATE(1531)] = 26774, + [SMALL_STATE(1532)] = 26781, + [SMALL_STATE(1533)] = 26788, + [SMALL_STATE(1534)] = 26795, + [SMALL_STATE(1535)] = 26802, + [SMALL_STATE(1536)] = 26809, }; static const TSParseActionEntry ts_parse_actions[] = {