diff --git a/grammar.js b/grammar.js index 44adbb0..a43e9c5 100644 --- a/grammar.js +++ b/grammar.js @@ -176,7 +176,7 @@ module.exports = grammar({ block: $ => seq("{", repeat($.CASE_opt), $.CASE_end, "}"), number: $ => token(choice(/¯?[∞]/, /¯π([eE]¯?\d+)?/, /¯?\d+(\.\d+)?([eE]¯?\d+)?/)), - character: $ => choice(/'.'/, /'\\u[0-9a-fA-F]{4}'/), + character: $ => choice('@', /'.'/, /'\\u[0-9a-fA-F]{4}'/), string: $ => token(seq('"', repeat(choice('""', /[^"]+/)), '"')), system_s: $ => token(seq( "•", @@ -187,7 +187,6 @@ module.exports = grammar({ '𝕨', '𝕩', '𝕗', '𝕘', '𝕤', ), symbol_sl: $ => choice( - '@', $.character, $.string, $.number ), system_F: $ => token(seq( diff --git a/src/grammar.json b/src/grammar.json index 53b5a60..6a41602 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1782,6 +1782,10 @@ "character": { "type": "CHOICE", "members": [ + { + "type": "STRING", + "value": "@" + }, { "type": "PATTERN", "value": "'.'" @@ -1892,10 +1896,6 @@ "symbol_sl": { "type": "CHOICE", "members": [ - { - "type": "STRING", - "value": "@" - }, { "type": "SYMBOL", "name": "character" diff --git a/src/node-types.json b/src/node-types.json index bb36950..ebc13a2 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1037,7 +1037,7 @@ "fields": {}, "children": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "character", diff --git a/src/parser.c b/src/parser.c index 568519f..45c7675 100644 --- a/src/parser.c +++ b/src/parser.c @@ -48,12 +48,12 @@ enum { anon_sym_LBRACE = 29, anon_sym_RBRACE = 30, sym_number = 31, - aux_sym_character_token1 = 32, - aux_sym_character_token2 = 33, - sym_string = 34, - sym_system_s = 35, - anon_sym_20 = 36, - anon_sym_AT = 37, + anon_sym_AT = 32, + aux_sym_character_token1 = 33, + aux_sym_character_token2 = 34, + sym_string = 35, + sym_system_s = 36, + anon_sym_20 = 37, sym_system_F = 38, anon_sym_PLUS = 39, anon_sym_DASH = 40, @@ -222,12 +222,12 @@ static const char * const ts_symbol_names[] = { [anon_sym_LBRACE] = "{", [anon_sym_RBRACE] = "}", [sym_number] = "number", + [anon_sym_AT] = "@", [aux_sym_character_token1] = "character_token1", [aux_sym_character_token2] = "character_token2", [sym_string] = "string", [sym_system_s] = "system_s", [anon_sym_20] = "𝕤", - [anon_sym_AT] = "@", [sym_system_F] = "system_F", [anon_sym_PLUS] = "+", [anon_sym_DASH] = "-", @@ -396,12 +396,12 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACE] = anon_sym_RBRACE, [sym_number] = sym_number, + [anon_sym_AT] = anon_sym_AT, [aux_sym_character_token1] = aux_sym_character_token1, [aux_sym_character_token2] = aux_sym_character_token2, [sym_string] = sym_string, [sym_system_s] = sym_system_s, [anon_sym_20] = anon_sym_20, - [anon_sym_AT] = anon_sym_AT, [sym_system_F] = sym_system_F, [anon_sym_PLUS] = anon_sym_PLUS, [anon_sym_DASH] = anon_sym_DASH, @@ -666,6 +666,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [anon_sym_AT] = { + .visible = true, + .named = false, + }, [aux_sym_character_token1] = { .visible = false, .named = false, @@ -686,10 +690,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_AT] = { - .visible = true, - .named = false, - }, [sym_system_F] = { .visible = true, .named = true, @@ -1873,7 +1873,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(99); if (lookahead == '>') ADVANCE(97); if (lookahead == '?') ADVANCE(54); - if (lookahead == '@') ADVANCE(81); + if (lookahead == '@') ADVANCE(75); if (lookahead == '[') ADVANCE(48); if (lookahead == ']') ADVANCE(49); if (lookahead == '_') ADVANCE(28); @@ -1954,7 +1954,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 120143) ADVANCE(65); if (lookahead == 120151) ADVANCE(57); if (lookahead == 120152) ADVANCE(62); - if (lookahead == 120164) ADVANCE(80); + if (lookahead == 120164) ADVANCE(81); if (lookahead == 120168) ADVANCE(55); if (lookahead == 120169) ADVANCE(64); if (lookahead == '\t' || @@ -1973,7 +1973,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(157); if (lookahead == '\'') ADVANCE(9); if (lookahead == '(') ADVANCE(44); - if (lookahead == '@') ADVANCE(81); + if (lookahead == '@') ADVANCE(75); if (lookahead == '[') ADVANCE(48); if (lookahead == '_') ADVANCE(29); if (lookahead == '`') ADVANCE(137); @@ -1992,7 +1992,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 10216) ADVANCE(46); if (lookahead == 120151) ADVANCE(57); if (lookahead == 120152) ADVANCE(62); - if (lookahead == 120164) ADVANCE(80); + if (lookahead == 120164) ADVANCE(81); if (lookahead == 120168) ADVANCE(55); if (lookahead == 120169) ADVANCE(64); if (lookahead == '\t' || @@ -2001,18 +2001,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(152); END_STATE(); case 3: - if (lookahead == '"') ADVANCE(77); + if (lookahead == '"') ADVANCE(78); if (lookahead != 0) ADVANCE(3); END_STATE(); case 4: - if (lookahead == '\'') ADVANCE(75); + if (lookahead == '\'') ADVANCE(76); END_STATE(); case 5: - if (lookahead == '\'') ADVANCE(75); + if (lookahead == '\'') ADVANCE(76); if (lookahead == 'u') ADVANCE(35); END_STATE(); case 6: - if (lookahead == '\'') ADVANCE(76); + if (lookahead == '\'') ADVANCE(77); END_STATE(); case 7: if (lookahead == '.') ADVANCE(25); @@ -2037,7 +2037,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(36); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(8); if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(82); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(78); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(79); END_STATE(); case 11: if (lookahead == '_') ADVANCE(11); @@ -2079,7 +2079,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(17); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(78); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(79); END_STATE(); case 18: if (lookahead == '_') ADVANCE(18); @@ -2115,7 +2115,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(23); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(79); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); case 24: if (lookahead == '_') ADVANCE(24); @@ -2126,7 +2126,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 25: if (lookahead == '_') ADVANCE(37); if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(7); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(79); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); case 26: if (lookahead == 175) ADVANCE(31); @@ -2304,36 +2304,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); END_STATE(); case 75: - ACCEPT_TOKEN(aux_sym_character_token1); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 76: - ACCEPT_TOKEN(aux_sym_character_token2); + ACCEPT_TOKEN(aux_sym_character_token1); END_STATE(); case 77: + ACCEPT_TOKEN(aux_sym_character_token2); + END_STATE(); + case 78: ACCEPT_TOKEN(sym_string); if (lookahead == '"') ADVANCE(3); END_STATE(); - case 78: + case 79: ACCEPT_TOKEN(sym_system_s); if (lookahead == '.') ADVANCE(10); if (lookahead == '_') ADVANCE(17); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(78); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(79); END_STATE(); - case 79: + case 80: ACCEPT_TOKEN(sym_system_s); if (lookahead == '.') ADVANCE(25); if (lookahead == '_') ADVANCE(23); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(79); - END_STATE(); - case 80: - ACCEPT_TOKEN(anon_sym_20); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_20); END_STATE(); case 82: ACCEPT_TOKEN(sym_system_F); @@ -3265,12 +3265,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [sym_number] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), [aux_sym_character_token1] = ACTIONS(1), [aux_sym_character_token2] = ACTIONS(1), [sym_string] = ACTIONS(1), [sym_system_s] = ACTIONS(1), [anon_sym_20] = ACTIONS(1), - [anon_sym_AT] = ACTIONS(1), [sym_system_F] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), @@ -3409,12 +3409,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -3559,12 +3559,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -3709,12 +3709,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -3859,12 +3859,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -4009,12 +4009,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -4158,12 +4158,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(112), [anon_sym_LBRACE] = ACTIONS(115), [sym_number] = ACTIONS(118), + [anon_sym_AT] = ACTIONS(121), [aux_sym_character_token1] = ACTIONS(121), [aux_sym_character_token2] = ACTIONS(121), [sym_string] = ACTIONS(118), [sym_system_s] = ACTIONS(124), [anon_sym_20] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(118), [sym_system_F] = ACTIONS(127), [anon_sym_PLUS] = ACTIONS(130), [anon_sym_DASH] = ACTIONS(130), @@ -4305,12 +4305,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -4452,12 +4452,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -4597,12 +4597,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -4739,12 +4739,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -4881,12 +4881,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -5023,12 +5023,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -5165,12 +5165,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -5307,12 +5307,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -5448,12 +5448,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -5589,12 +5589,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -5730,12 +5730,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -5870,12 +5870,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -6010,12 +6010,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(208), [anon_sym_LBRACE] = ACTIONS(214), [sym_number] = ACTIONS(217), + [anon_sym_AT] = ACTIONS(220), [aux_sym_character_token1] = ACTIONS(220), [aux_sym_character_token2] = ACTIONS(220), [sym_string] = ACTIONS(217), [sym_system_s] = ACTIONS(223), [anon_sym_20] = ACTIONS(205), - [anon_sym_AT] = ACTIONS(217), [sym_system_F] = ACTIONS(226), [anon_sym_PLUS] = ACTIONS(229), [anon_sym_DASH] = ACTIONS(229), @@ -6150,12 +6150,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -6290,12 +6290,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -6430,12 +6430,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -6569,12 +6569,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -6708,12 +6708,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -6847,12 +6847,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -6985,12 +6985,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -7123,12 +7123,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -7261,12 +7261,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -7399,12 +7399,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -7537,12 +7537,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -7675,12 +7675,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -7813,12 +7813,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -7951,12 +7951,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -8089,12 +8089,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -8227,12 +8227,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -8365,12 +8365,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(294), [anon_sym_LBRACE] = ACTIONS(300), [sym_number] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(306), [aux_sym_character_token1] = ACTIONS(306), [aux_sym_character_token2] = ACTIONS(306), [sym_string] = ACTIONS(303), [sym_system_s] = ACTIONS(309), [anon_sym_20] = ACTIONS(291), - [anon_sym_AT] = ACTIONS(303), [sym_system_F] = ACTIONS(312), [anon_sym_PLUS] = ACTIONS(315), [anon_sym_DASH] = ACTIONS(315), @@ -8503,12 +8503,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -8640,12 +8640,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -8777,12 +8777,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -8914,12 +8914,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -9049,12 +9049,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -9184,12 +9184,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_RBRACE] = ACTIONS(348), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -9319,12 +9319,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(397), [sym_number] = ACTIONS(400), + [anon_sym_AT] = ACTIONS(403), [aux_sym_character_token1] = ACTIONS(403), [aux_sym_character_token2] = ACTIONS(403), [sym_string] = ACTIONS(400), [sym_system_s] = ACTIONS(406), [anon_sym_20] = ACTIONS(388), - [anon_sym_AT] = ACTIONS(400), [sym_system_F] = ACTIONS(409), [anon_sym_PLUS] = ACTIONS(412), [anon_sym_DASH] = ACTIONS(412), @@ -9454,12 +9454,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -9588,12 +9588,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(456), [anon_sym_LBRACE] = ACTIONS(462), [sym_number] = ACTIONS(465), + [anon_sym_AT] = ACTIONS(468), [aux_sym_character_token1] = ACTIONS(468), [aux_sym_character_token2] = ACTIONS(468), [sym_string] = ACTIONS(465), [sym_system_s] = ACTIONS(471), [anon_sym_20] = ACTIONS(453), - [anon_sym_AT] = ACTIONS(465), [sym_system_F] = ACTIONS(474), [anon_sym_PLUS] = ACTIONS(477), [anon_sym_DASH] = ACTIONS(477), @@ -9722,12 +9722,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(524), [anon_sym_RBRACE] = ACTIONS(504), [sym_number] = ACTIONS(527), + [anon_sym_AT] = ACTIONS(530), [aux_sym_character_token1] = ACTIONS(530), [aux_sym_character_token2] = ACTIONS(530), [sym_string] = ACTIONS(527), [sym_system_s] = ACTIONS(533), [anon_sym_20] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(527), [sym_system_F] = ACTIONS(536), [anon_sym_PLUS] = ACTIONS(539), [anon_sym_DASH] = ACTIONS(539), @@ -9856,12 +9856,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -9990,12 +9990,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -10124,12 +10124,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -10258,12 +10258,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -10392,12 +10392,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -10526,12 +10526,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -10660,12 +10660,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -10794,12 +10794,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -10928,12 +10928,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -11062,12 +11062,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -11195,12 +11195,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -11328,12 +11328,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -11461,12 +11461,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -11594,12 +11594,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(524), [anon_sym_RBRACE] = ACTIONS(504), [sym_number] = ACTIONS(527), + [anon_sym_AT] = ACTIONS(530), [aux_sym_character_token1] = ACTIONS(530), [aux_sym_character_token2] = ACTIONS(530), [sym_string] = ACTIONS(527), [sym_system_s] = ACTIONS(533), [anon_sym_20] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(527), [sym_system_F] = ACTIONS(596), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -11727,12 +11727,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -11860,12 +11860,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(518), [anon_sym_LBRACE] = ACTIONS(524), [sym_number] = ACTIONS(527), + [anon_sym_AT] = ACTIONS(530), [aux_sym_character_token1] = ACTIONS(530), [aux_sym_character_token2] = ACTIONS(530), [sym_string] = ACTIONS(527), [sym_system_s] = ACTIONS(533), [anon_sym_20] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(527), [sym_system_F] = ACTIONS(536), [anon_sym_PLUS] = ACTIONS(539), [anon_sym_DASH] = ACTIONS(539), @@ -11993,12 +11993,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -12125,12 +12125,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -12257,12 +12257,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -12389,12 +12389,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -12521,12 +12521,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(593), [anon_sym_LBRACE] = ACTIONS(524), [sym_number] = ACTIONS(527), + [anon_sym_AT] = ACTIONS(530), [aux_sym_character_token1] = ACTIONS(530), [aux_sym_character_token2] = ACTIONS(530), [sym_string] = ACTIONS(527), [sym_system_s] = ACTIONS(533), [anon_sym_20] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(527), [sym_system_F] = ACTIONS(596), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -12653,12 +12653,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -12785,12 +12785,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -12914,12 +12914,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -13043,12 +13043,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(593), [anon_sym_LBRACE] = ACTIONS(623), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(596), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -13172,12 +13172,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -13300,12 +13300,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -13428,12 +13428,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(524), [sym_number] = ACTIONS(527), + [anon_sym_AT] = ACTIONS(530), [aux_sym_character_token1] = ACTIONS(530), [aux_sym_character_token2] = ACTIONS(530), [sym_string] = ACTIONS(527), [sym_system_s] = ACTIONS(533), [anon_sym_20] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(527), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -13556,12 +13556,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(524), [sym_number] = ACTIONS(527), + [anon_sym_AT] = ACTIONS(530), [aux_sym_character_token1] = ACTIONS(530), [aux_sym_character_token2] = ACTIONS(530), [sym_string] = ACTIONS(527), [sym_system_s] = ACTIONS(533), [anon_sym_20] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(527), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -13684,12 +13684,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -13812,12 +13812,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -13940,12 +13940,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(593), [anon_sym_LBRACE] = ACTIONS(623), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(596), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -14068,12 +14068,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -14196,12 +14196,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -14324,12 +14324,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(623), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -14451,12 +14451,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(524), [sym_number] = ACTIONS(527), + [anon_sym_AT] = ACTIONS(530), [aux_sym_character_token1] = ACTIONS(530), [aux_sym_character_token2] = ACTIONS(530), [sym_string] = ACTIONS(527), [sym_system_s] = ACTIONS(533), [anon_sym_20] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(527), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -14578,12 +14578,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(524), [sym_number] = ACTIONS(527), + [anon_sym_AT] = ACTIONS(530), [aux_sym_character_token1] = ACTIONS(530), [aux_sym_character_token2] = ACTIONS(530), [sym_string] = ACTIONS(527), [sym_system_s] = ACTIONS(533), [anon_sym_20] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(527), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -14705,12 +14705,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(623), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -14832,12 +14832,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -14959,12 +14959,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(524), [sym_number] = ACTIONS(527), + [anon_sym_AT] = ACTIONS(530), [aux_sym_character_token1] = ACTIONS(530), [aux_sym_character_token2] = ACTIONS(530), [sym_string] = ACTIONS(527), [sym_system_s] = ACTIONS(533), [anon_sym_20] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(527), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -15086,12 +15086,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -15213,12 +15213,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(623), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -15340,12 +15340,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(524), [sym_number] = ACTIONS(527), + [anon_sym_AT] = ACTIONS(530), [aux_sym_character_token1] = ACTIONS(530), [aux_sym_character_token2] = ACTIONS(530), [sym_string] = ACTIONS(527), [sym_system_s] = ACTIONS(533), [anon_sym_20] = ACTIONS(515), - [anon_sym_AT] = ACTIONS(527), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -15465,12 +15465,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(524), [anon_sym_RBRACE] = ACTIONS(504), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(536), [anon_sym_PLUS] = ACTIONS(539), [anon_sym_DASH] = ACTIONS(539), @@ -15589,12 +15589,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(623), [anon_sym_RBRACE] = ACTIONS(504), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(596), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -15711,12 +15711,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(680), [anon_sym_RBRACE] = ACTIONS(680), [sym_number] = ACTIONS(726), + [anon_sym_AT] = ACTIONS(729), [aux_sym_character_token1] = ACTIONS(729), [aux_sym_character_token2] = ACTIONS(729), [sym_string] = ACTIONS(726), [sym_system_s] = ACTIONS(680), [anon_sym_20] = ACTIONS(700), - [anon_sym_AT] = ACTIONS(726), [sym_system_F] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(680), [anon_sym_DASH] = ACTIONS(680), @@ -15833,12 +15833,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(623), [anon_sym_RBRACE] = ACTIONS(741), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -15954,12 +15954,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(743), [anon_sym_RBRACE] = ACTIONS(743), [sym_number] = ACTIONS(769), + [anon_sym_AT] = ACTIONS(772), [aux_sym_character_token1] = ACTIONS(772), [aux_sym_character_token2] = ACTIONS(772), [sym_string] = ACTIONS(769), [sym_system_s] = ACTIONS(743), [anon_sym_20] = ACTIONS(757), - [anon_sym_AT] = ACTIONS(769), [sym_system_F] = ACTIONS(743), [anon_sym_PLUS] = ACTIONS(743), [anon_sym_DASH] = ACTIONS(743), @@ -16074,12 +16074,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(623), [anon_sym_RBRACE] = ACTIONS(741), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(596), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -16194,12 +16194,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(623), [anon_sym_RBRACE] = ACTIONS(741), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -16314,12 +16314,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -16433,12 +16433,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -16552,12 +16552,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(574), [anon_sym_RBRACE] = ACTIONS(795), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -16671,12 +16671,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -16790,12 +16790,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(574), [anon_sym_RBRACE] = ACTIONS(797), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -16909,12 +16909,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -17028,12 +17028,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(574), [anon_sym_RBRACE] = ACTIONS(795), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -17147,12 +17147,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(574), [anon_sym_RBRACE] = ACTIONS(801), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -17266,12 +17266,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -17385,12 +17385,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -17504,12 +17504,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(593), [anon_sym_LBRACE] = ACTIONS(623), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(596), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -17623,12 +17623,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(574), [anon_sym_RBRACE] = ACTIONS(801), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -17741,12 +17741,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(593), [anon_sym_LBRACE] = ACTIONS(623), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(596), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -17858,12 +17858,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(593), [anon_sym_LBRACE] = ACTIONS(623), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(596), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -17975,12 +17975,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(623), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -18092,12 +18092,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_RBRACE] = ACTIONS(807), [sym_number] = ACTIONS(842), + [anon_sym_AT] = ACTIONS(845), [aux_sym_character_token1] = ACTIONS(845), [aux_sym_character_token2] = ACTIONS(845), [sym_string] = ACTIONS(842), [sym_system_s] = ACTIONS(807), [anon_sym_20] = ACTIONS(821), - [anon_sym_AT] = ACTIONS(842), [sym_system_F] = ACTIONS(807), [anon_sym_PLUS] = ACTIONS(807), [anon_sym_DASH] = ACTIONS(807), @@ -18209,12 +18209,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(623), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -18326,12 +18326,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(524), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -18443,12 +18443,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(524), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -18559,12 +18559,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(623), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -18675,12 +18675,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_RBRACE] = ACTIONS(807), [sym_number] = ACTIONS(842), + [anon_sym_AT] = ACTIONS(845), [aux_sym_character_token1] = ACTIONS(845), [aux_sym_character_token2] = ACTIONS(845), [sym_string] = ACTIONS(842), [sym_system_s] = ACTIONS(807), [anon_sym_20] = ACTIONS(821), - [anon_sym_AT] = ACTIONS(842), [sym_system_F] = ACTIONS(807), [anon_sym_PLUS] = ACTIONS(807), [anon_sym_DASH] = ACTIONS(807), @@ -18791,12 +18791,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(623), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -18906,12 +18906,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(623), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -19021,12 +19021,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(593), [anon_sym_LBRACE] = ACTIONS(623), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(596), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -19135,12 +19135,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -19249,12 +19249,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -19363,12 +19363,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -19477,12 +19477,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -19591,12 +19591,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -19705,12 +19705,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -19819,12 +19819,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -19933,12 +19933,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -20047,12 +20047,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -20161,12 +20161,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -20275,12 +20275,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -20389,12 +20389,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -20503,12 +20503,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -20617,12 +20617,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -20731,12 +20731,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -20845,12 +20845,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -20959,12 +20959,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -21073,12 +21073,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(623), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -21187,12 +21187,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -21301,12 +21301,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(593), [anon_sym_LBRACE] = ACTIONS(623), [sym_number] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(629), [aux_sym_character_token1] = ACTIONS(629), [aux_sym_character_token2] = ACTIONS(629), [sym_string] = ACTIONS(626), [sym_system_s] = ACTIONS(632), [anon_sym_20] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(626), [sym_system_F] = ACTIONS(596), [anon_sym_PLUS] = ACTIONS(599), [anon_sym_DASH] = ACTIONS(599), @@ -21415,12 +21415,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -21529,12 +21529,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -21643,12 +21643,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -21757,12 +21757,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -21870,12 +21870,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -21983,12 +21983,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -22095,12 +22095,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -22207,12 +22207,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(891), [anon_sym_RBRACE] = ACTIONS(887), [sym_number] = ACTIONS(891), + [anon_sym_AT] = ACTIONS(891), [aux_sym_character_token1] = ACTIONS(891), [aux_sym_character_token2] = ACTIONS(891), [sym_string] = ACTIONS(891), [sym_system_s] = ACTIONS(891), [anon_sym_20] = ACTIONS(891), - [anon_sym_AT] = ACTIONS(891), [sym_system_F] = ACTIONS(891), [anon_sym_PLUS] = ACTIONS(891), [anon_sym_DASH] = ACTIONS(891), @@ -22319,12 +22319,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(901), [anon_sym_RBRACE] = ACTIONS(897), [sym_number] = ACTIONS(901), + [anon_sym_AT] = ACTIONS(901), [aux_sym_character_token1] = ACTIONS(901), [aux_sym_character_token2] = ACTIONS(901), [sym_string] = ACTIONS(901), [sym_system_s] = ACTIONS(901), [anon_sym_20] = ACTIONS(901), - [anon_sym_AT] = ACTIONS(901), [sym_system_F] = ACTIONS(901), [anon_sym_PLUS] = ACTIONS(901), [anon_sym_DASH] = ACTIONS(901), @@ -22431,12 +22431,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(907), [anon_sym_RBRACE] = ACTIONS(907), [sym_number] = ACTIONS(907), + [anon_sym_AT] = ACTIONS(907), [aux_sym_character_token1] = ACTIONS(907), [aux_sym_character_token2] = ACTIONS(907), [sym_string] = ACTIONS(907), [sym_system_s] = ACTIONS(907), [anon_sym_20] = ACTIONS(907), - [anon_sym_AT] = ACTIONS(907), [sym_system_F] = ACTIONS(907), [anon_sym_PLUS] = ACTIONS(907), [anon_sym_DASH] = ACTIONS(907), @@ -22543,12 +22543,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(915), [anon_sym_RBRACE] = ACTIONS(911), [sym_number] = ACTIONS(915), + [anon_sym_AT] = ACTIONS(915), [aux_sym_character_token1] = ACTIONS(915), [aux_sym_character_token2] = ACTIONS(915), [sym_string] = ACTIONS(915), [sym_system_s] = ACTIONS(915), [anon_sym_20] = ACTIONS(915), - [anon_sym_AT] = ACTIONS(915), [sym_system_F] = ACTIONS(915), [anon_sym_PLUS] = ACTIONS(915), [anon_sym_DASH] = ACTIONS(915), @@ -22655,12 +22655,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -22767,12 +22767,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(921), [anon_sym_RBRACE] = ACTIONS(921), [sym_number] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(921), [aux_sym_character_token1] = ACTIONS(921), [aux_sym_character_token2] = ACTIONS(921), [sym_string] = ACTIONS(921), [sym_system_s] = ACTIONS(921), [anon_sym_20] = ACTIONS(921), - [anon_sym_AT] = ACTIONS(921), [sym_system_F] = ACTIONS(921), [anon_sym_PLUS] = ACTIONS(921), [anon_sym_DASH] = ACTIONS(921), @@ -22879,12 +22879,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(743), [anon_sym_RBRACE] = ACTIONS(743), [sym_number] = ACTIONS(743), + [anon_sym_AT] = ACTIONS(743), [aux_sym_character_token1] = ACTIONS(743), [aux_sym_character_token2] = ACTIONS(743), [sym_string] = ACTIONS(743), [sym_system_s] = ACTIONS(743), [anon_sym_20] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), [sym_system_F] = ACTIONS(743), [anon_sym_PLUS] = ACTIONS(743), [anon_sym_DASH] = ACTIONS(743), @@ -22991,12 +22991,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(680), [anon_sym_RBRACE] = ACTIONS(680), [sym_number] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), [aux_sym_character_token1] = ACTIONS(680), [aux_sym_character_token2] = ACTIONS(680), [sym_string] = ACTIONS(680), [sym_system_s] = ACTIONS(680), [anon_sym_20] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), [sym_system_F] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(680), [anon_sym_DASH] = ACTIONS(680), @@ -23102,12 +23102,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(23), [sym_number] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(27), [aux_sym_character_token1] = ACTIONS(27), [aux_sym_character_token2] = ACTIONS(27), [sym_string] = ACTIONS(25), [sym_system_s] = ACTIONS(29), [anon_sym_20] = ACTIONS(17), - [anon_sym_AT] = ACTIONS(25), [sym_system_F] = ACTIONS(31), [anon_sym_PLUS] = ACTIONS(33), [anon_sym_DASH] = ACTIONS(33), @@ -23213,12 +23213,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -23324,12 +23324,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(352), [anon_sym_LBRACE] = ACTIONS(574), [sym_number] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [aux_sym_character_token1] = ACTIONS(578), [aux_sym_character_token2] = ACTIONS(578), [sym_string] = ACTIONS(576), [sym_system_s] = ACTIONS(580), [anon_sym_20] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(576), [sym_system_F] = ACTIONS(356), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), @@ -23434,12 +23434,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(933), [anon_sym_RBRACE] = ACTIONS(897), [sym_number] = ACTIONS(933), + [anon_sym_AT] = ACTIONS(933), [aux_sym_character_token1] = ACTIONS(933), [aux_sym_character_token2] = ACTIONS(933), [sym_string] = ACTIONS(933), [sym_system_s] = ACTIONS(933), [anon_sym_20] = ACTIONS(933), - [anon_sym_AT] = ACTIONS(933), [sym_system_F] = ACTIONS(933), [anon_sym_PLUS] = ACTIONS(933), [anon_sym_DASH] = ACTIONS(933), @@ -23544,12 +23544,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(680), [anon_sym_RBRACE] = ACTIONS(680), [sym_number] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), [aux_sym_character_token1] = ACTIONS(680), [aux_sym_character_token2] = ACTIONS(680), [sym_string] = ACTIONS(680), [sym_system_s] = ACTIONS(680), [anon_sym_20] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), [sym_system_F] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(680), [anon_sym_DASH] = ACTIONS(680), @@ -23653,12 +23653,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(933), [anon_sym_RBRACE] = ACTIONS(897), [sym_number] = ACTIONS(933), + [anon_sym_AT] = ACTIONS(933), [aux_sym_character_token1] = ACTIONS(933), [aux_sym_character_token2] = ACTIONS(933), [sym_string] = ACTIONS(933), [sym_system_s] = ACTIONS(933), [anon_sym_20] = ACTIONS(933), - [anon_sym_AT] = ACTIONS(933), [sym_system_F] = ACTIONS(933), [anon_sym_PLUS] = ACTIONS(933), [anon_sym_DASH] = ACTIONS(933), @@ -23762,12 +23762,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(680), [sym_number] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), [aux_sym_character_token1] = ACTIONS(680), [aux_sym_character_token2] = ACTIONS(680), [sym_string] = ACTIONS(680), [sym_system_s] = ACTIONS(680), [anon_sym_20] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), [sym_system_F] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(680), [anon_sym_DASH] = ACTIONS(680), @@ -23871,12 +23871,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(743), [anon_sym_RBRACE] = ACTIONS(743), [sym_number] = ACTIONS(743), + [anon_sym_AT] = ACTIONS(743), [aux_sym_character_token1] = ACTIONS(743), [aux_sym_character_token2] = ACTIONS(743), [sym_string] = ACTIONS(743), [sym_system_s] = ACTIONS(743), [anon_sym_20] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), [sym_system_F] = ACTIONS(743), [anon_sym_PLUS] = ACTIONS(743), [anon_sym_DASH] = ACTIONS(743), @@ -23979,12 +23979,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(879), [anon_sym_RBRACE] = ACTIONS(879), [sym_number] = ACTIONS(879), + [anon_sym_AT] = ACTIONS(879), [aux_sym_character_token1] = ACTIONS(879), [aux_sym_character_token2] = ACTIONS(879), [sym_string] = ACTIONS(879), [sym_system_s] = ACTIONS(879), [anon_sym_20] = ACTIONS(879), - [anon_sym_AT] = ACTIONS(879), [sym_system_F] = ACTIONS(879), [anon_sym_PLUS] = ACTIONS(879), [anon_sym_DASH] = ACTIONS(879), @@ -24087,12 +24087,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(897), [anon_sym_RBRACE] = ACTIONS(897), [sym_number] = ACTIONS(897), + [anon_sym_AT] = ACTIONS(897), [aux_sym_character_token1] = ACTIONS(897), [aux_sym_character_token2] = ACTIONS(897), [sym_string] = ACTIONS(897), [sym_system_s] = ACTIONS(897), [anon_sym_20] = ACTIONS(897), - [anon_sym_AT] = ACTIONS(897), [sym_system_F] = ACTIONS(897), [anon_sym_PLUS] = ACTIONS(897), [anon_sym_DASH] = ACTIONS(897), @@ -24195,12 +24195,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(953), [anon_sym_RBRACE] = ACTIONS(951), [sym_number] = ACTIONS(953), + [anon_sym_AT] = ACTIONS(953), [aux_sym_character_token1] = ACTIONS(953), [aux_sym_character_token2] = ACTIONS(953), [sym_string] = ACTIONS(953), [sym_system_s] = ACTIONS(953), [anon_sym_20] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(953), [sym_system_F] = ACTIONS(953), [anon_sym_PLUS] = ACTIONS(953), [anon_sym_DASH] = ACTIONS(953), @@ -24303,12 +24303,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(959), [anon_sym_RBRACE] = ACTIONS(959), [sym_number] = ACTIONS(959), + [anon_sym_AT] = ACTIONS(959), [aux_sym_character_token1] = ACTIONS(959), [aux_sym_character_token2] = ACTIONS(959), [sym_string] = ACTIONS(959), [sym_system_s] = ACTIONS(959), [anon_sym_20] = ACTIONS(959), - [anon_sym_AT] = ACTIONS(959), [sym_system_F] = ACTIONS(959), [anon_sym_PLUS] = ACTIONS(959), [anon_sym_DASH] = ACTIONS(959), @@ -24411,12 +24411,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(963), [anon_sym_RBRACE] = ACTIONS(963), [sym_number] = ACTIONS(963), + [anon_sym_AT] = ACTIONS(963), [aux_sym_character_token1] = ACTIONS(963), [aux_sym_character_token2] = ACTIONS(963), [sym_string] = ACTIONS(963), [sym_system_s] = ACTIONS(963), [anon_sym_20] = ACTIONS(963), - [anon_sym_AT] = ACTIONS(963), [sym_system_F] = ACTIONS(963), [anon_sym_PLUS] = ACTIONS(963), [anon_sym_DASH] = ACTIONS(963), @@ -24519,12 +24519,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_RBRACE] = ACTIONS(969), [sym_number] = ACTIONS(969), + [anon_sym_AT] = ACTIONS(969), [aux_sym_character_token1] = ACTIONS(969), [aux_sym_character_token2] = ACTIONS(969), [sym_string] = ACTIONS(969), [sym_system_s] = ACTIONS(969), [anon_sym_20] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), [sym_system_F] = ACTIONS(969), [anon_sym_PLUS] = ACTIONS(969), [anon_sym_DASH] = ACTIONS(969), @@ -24627,12 +24627,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(680), [sym_number] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), [aux_sym_character_token1] = ACTIONS(680), [aux_sym_character_token2] = ACTIONS(680), [sym_string] = ACTIONS(680), [sym_system_s] = ACTIONS(680), [anon_sym_20] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), [sym_system_F] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(680), [anon_sym_DASH] = ACTIONS(680), @@ -24735,12 +24735,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(887), [anon_sym_RBRACE] = ACTIONS(887), [sym_number] = ACTIONS(887), + [anon_sym_AT] = ACTIONS(887), [aux_sym_character_token1] = ACTIONS(887), [aux_sym_character_token2] = ACTIONS(887), [sym_string] = ACTIONS(887), [sym_system_s] = ACTIONS(887), [anon_sym_20] = ACTIONS(887), - [anon_sym_AT] = ACTIONS(887), [sym_system_F] = ACTIONS(887), [anon_sym_PLUS] = ACTIONS(887), [anon_sym_DASH] = ACTIONS(887), @@ -24843,12 +24843,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_RBRACE] = ACTIONS(897), [sym_number] = ACTIONS(969), + [anon_sym_AT] = ACTIONS(969), [aux_sym_character_token1] = ACTIONS(969), [aux_sym_character_token2] = ACTIONS(969), [sym_string] = ACTIONS(969), [sym_system_s] = ACTIONS(969), [anon_sym_20] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), [sym_system_F] = ACTIONS(969), [anon_sym_PLUS] = ACTIONS(969), [anon_sym_DASH] = ACTIONS(969), @@ -24951,12 +24951,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(972), [anon_sym_RBRACE] = ACTIONS(972), [sym_number] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(972), [aux_sym_character_token1] = ACTIONS(972), [aux_sym_character_token2] = ACTIONS(972), [sym_string] = ACTIONS(972), [sym_system_s] = ACTIONS(972), [anon_sym_20] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(972), [sym_system_F] = ACTIONS(972), [anon_sym_PLUS] = ACTIONS(972), [anon_sym_DASH] = ACTIONS(972), @@ -25059,12 +25059,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_RBRACE] = ACTIONS(680), [sym_number] = ACTIONS(969), + [anon_sym_AT] = ACTIONS(969), [aux_sym_character_token1] = ACTIONS(969), [aux_sym_character_token2] = ACTIONS(969), [sym_string] = ACTIONS(969), [sym_system_s] = ACTIONS(969), [anon_sym_20] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), [sym_system_F] = ACTIONS(969), [anon_sym_PLUS] = ACTIONS(969), [anon_sym_DASH] = ACTIONS(969), @@ -25167,12 +25167,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(983), [anon_sym_RBRACE] = ACTIONS(983), [sym_number] = ACTIONS(983), + [anon_sym_AT] = ACTIONS(983), [aux_sym_character_token1] = ACTIONS(983), [aux_sym_character_token2] = ACTIONS(983), [sym_string] = ACTIONS(983), [sym_system_s] = ACTIONS(983), [anon_sym_20] = ACTIONS(983), - [anon_sym_AT] = ACTIONS(983), [sym_system_F] = ACTIONS(983), [anon_sym_PLUS] = ACTIONS(983), [anon_sym_DASH] = ACTIONS(983), @@ -25275,12 +25275,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(989), [anon_sym_RBRACE] = ACTIONS(989), [sym_number] = ACTIONS(989), + [anon_sym_AT] = ACTIONS(989), [aux_sym_character_token1] = ACTIONS(989), [aux_sym_character_token2] = ACTIONS(989), [sym_string] = ACTIONS(989), [sym_system_s] = ACTIONS(989), [anon_sym_20] = ACTIONS(989), - [anon_sym_AT] = ACTIONS(989), [sym_system_F] = ACTIONS(989), [anon_sym_PLUS] = ACTIONS(989), [anon_sym_DASH] = ACTIONS(989), @@ -25383,12 +25383,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(993), [anon_sym_RBRACE] = ACTIONS(993), [sym_number] = ACTIONS(993), + [anon_sym_AT] = ACTIONS(993), [aux_sym_character_token1] = ACTIONS(993), [aux_sym_character_token2] = ACTIONS(993), [sym_string] = ACTIONS(993), [sym_system_s] = ACTIONS(993), [anon_sym_20] = ACTIONS(993), - [anon_sym_AT] = ACTIONS(993), [sym_system_F] = ACTIONS(993), [anon_sym_PLUS] = ACTIONS(993), [anon_sym_DASH] = ACTIONS(993), @@ -25491,12 +25491,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(999), [anon_sym_RBRACE] = ACTIONS(999), [sym_number] = ACTIONS(999), + [anon_sym_AT] = ACTIONS(999), [aux_sym_character_token1] = ACTIONS(999), [aux_sym_character_token2] = ACTIONS(999), [sym_string] = ACTIONS(999), [sym_system_s] = ACTIONS(999), [anon_sym_20] = ACTIONS(999), - [anon_sym_AT] = ACTIONS(999), [sym_system_F] = ACTIONS(999), [anon_sym_PLUS] = ACTIONS(999), [anon_sym_DASH] = ACTIONS(999), @@ -25599,12 +25599,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(972), [anon_sym_RBRACE] = ACTIONS(1003), [sym_number] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(972), [aux_sym_character_token1] = ACTIONS(972), [aux_sym_character_token2] = ACTIONS(972), [sym_string] = ACTIONS(972), [sym_system_s] = ACTIONS(972), [anon_sym_20] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(972), [sym_system_F] = ACTIONS(972), [anon_sym_PLUS] = ACTIONS(972), [anon_sym_DASH] = ACTIONS(972), @@ -25707,12 +25707,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1005), [anon_sym_RBRACE] = ACTIONS(1005), [sym_number] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(1005), [aux_sym_character_token1] = ACTIONS(1005), [aux_sym_character_token2] = ACTIONS(1005), [sym_string] = ACTIONS(1005), [sym_system_s] = ACTIONS(1005), [anon_sym_20] = ACTIONS(1005), - [anon_sym_AT] = ACTIONS(1005), [sym_system_F] = ACTIONS(1005), [anon_sym_PLUS] = ACTIONS(1005), [anon_sym_DASH] = ACTIONS(1005), @@ -25815,12 +25815,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1009), [anon_sym_RBRACE] = ACTIONS(1009), [sym_number] = ACTIONS(1009), + [anon_sym_AT] = ACTIONS(1009), [aux_sym_character_token1] = ACTIONS(1009), [aux_sym_character_token2] = ACTIONS(1009), [sym_string] = ACTIONS(1009), [sym_system_s] = ACTIONS(1009), [anon_sym_20] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(1009), [sym_system_F] = ACTIONS(1009), [anon_sym_PLUS] = ACTIONS(1009), [anon_sym_DASH] = ACTIONS(1009), @@ -25923,12 +25923,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1016), [anon_sym_RBRACE] = ACTIONS(1016), [sym_number] = ACTIONS(1016), + [anon_sym_AT] = ACTIONS(1016), [aux_sym_character_token1] = ACTIONS(1016), [aux_sym_character_token2] = ACTIONS(1016), [sym_string] = ACTIONS(1016), [sym_system_s] = ACTIONS(1016), [anon_sym_20] = ACTIONS(1016), - [anon_sym_AT] = ACTIONS(1016), [sym_system_F] = ACTIONS(1016), [anon_sym_PLUS] = ACTIONS(1016), [anon_sym_DASH] = ACTIONS(1016), @@ -26031,12 +26031,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_RBRACE] = ACTIONS(972), [sym_number] = ACTIONS(969), + [anon_sym_AT] = ACTIONS(969), [aux_sym_character_token1] = ACTIONS(969), [aux_sym_character_token2] = ACTIONS(969), [sym_string] = ACTIONS(969), [sym_system_s] = ACTIONS(969), [anon_sym_20] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), [sym_system_F] = ACTIONS(969), [anon_sym_PLUS] = ACTIONS(969), [anon_sym_DASH] = ACTIONS(969), @@ -26139,12 +26139,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(911), [anon_sym_RBRACE] = ACTIONS(911), [sym_number] = ACTIONS(911), + [anon_sym_AT] = ACTIONS(911), [aux_sym_character_token1] = ACTIONS(911), [aux_sym_character_token2] = ACTIONS(911), [sym_string] = ACTIONS(911), [sym_system_s] = ACTIONS(911), [anon_sym_20] = ACTIONS(911), - [anon_sym_AT] = ACTIONS(911), [sym_system_F] = ACTIONS(911), [anon_sym_PLUS] = ACTIONS(911), [anon_sym_DASH] = ACTIONS(911), @@ -26247,12 +26247,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1022), [anon_sym_RBRACE] = ACTIONS(1022), [sym_number] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1022), [aux_sym_character_token1] = ACTIONS(1022), [aux_sym_character_token2] = ACTIONS(1022), [sym_string] = ACTIONS(1022), [sym_system_s] = ACTIONS(1022), [anon_sym_20] = ACTIONS(1022), - [anon_sym_AT] = ACTIONS(1022), [sym_system_F] = ACTIONS(1022), [anon_sym_PLUS] = ACTIONS(1022), [anon_sym_DASH] = ACTIONS(1022), @@ -26355,12 +26355,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(969), [anon_sym_RBRACE] = ACTIONS(969), [sym_number] = ACTIONS(969), + [anon_sym_AT] = ACTIONS(969), [aux_sym_character_token1] = ACTIONS(969), [aux_sym_character_token2] = ACTIONS(969), [sym_string] = ACTIONS(969), [sym_system_s] = ACTIONS(969), [anon_sym_20] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), [sym_system_F] = ACTIONS(969), [anon_sym_PLUS] = ACTIONS(969), [anon_sym_DASH] = ACTIONS(969), @@ -26463,12 +26463,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1029), [anon_sym_RBRACE] = ACTIONS(1029), [sym_number] = ACTIONS(1029), + [anon_sym_AT] = ACTIONS(1029), [aux_sym_character_token1] = ACTIONS(1029), [aux_sym_character_token2] = ACTIONS(1029), [sym_string] = ACTIONS(1029), [sym_system_s] = ACTIONS(1029), [anon_sym_20] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(1029), [sym_system_F] = ACTIONS(1029), [anon_sym_PLUS] = ACTIONS(1029), [anon_sym_DASH] = ACTIONS(1029), @@ -26570,12 +26570,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1033), [anon_sym_RBRACE] = ACTIONS(1033), [sym_number] = ACTIONS(1033), + [anon_sym_AT] = ACTIONS(1033), [aux_sym_character_token1] = ACTIONS(1033), [aux_sym_character_token2] = ACTIONS(1033), [sym_string] = ACTIONS(1033), [sym_system_s] = ACTIONS(1033), [anon_sym_20] = ACTIONS(1033), - [anon_sym_AT] = ACTIONS(1033), [sym_system_F] = ACTIONS(1033), [anon_sym_PLUS] = ACTIONS(1033), [anon_sym_DASH] = ACTIONS(1033), @@ -26677,12 +26677,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1037), [anon_sym_RBRACE] = ACTIONS(1037), [sym_number] = ACTIONS(1037), + [anon_sym_AT] = ACTIONS(1037), [aux_sym_character_token1] = ACTIONS(1037), [aux_sym_character_token2] = ACTIONS(1037), [sym_string] = ACTIONS(1037), [sym_system_s] = ACTIONS(1037), [anon_sym_20] = ACTIONS(1037), - [anon_sym_AT] = ACTIONS(1037), [sym_system_F] = ACTIONS(1037), [anon_sym_PLUS] = ACTIONS(1037), [anon_sym_DASH] = ACTIONS(1037), @@ -26784,12 +26784,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(680), [anon_sym_RBRACE] = ACTIONS(680), [sym_number] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), [aux_sym_character_token1] = ACTIONS(680), [aux_sym_character_token2] = ACTIONS(680), [sym_string] = ACTIONS(680), [sym_system_s] = ACTIONS(680), [anon_sym_20] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), [sym_system_F] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(680), [anon_sym_DASH] = ACTIONS(680), @@ -26891,12 +26891,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1041), [anon_sym_RBRACE] = ACTIONS(1041), [sym_number] = ACTIONS(1041), + [anon_sym_AT] = ACTIONS(1041), [aux_sym_character_token1] = ACTIONS(1041), [aux_sym_character_token2] = ACTIONS(1041), [sym_string] = ACTIONS(1041), [sym_system_s] = ACTIONS(1041), [anon_sym_20] = ACTIONS(1041), - [anon_sym_AT] = ACTIONS(1041), [sym_system_F] = ACTIONS(1041), [anon_sym_PLUS] = ACTIONS(1041), [anon_sym_DASH] = ACTIONS(1041), @@ -26998,12 +26998,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1045), [anon_sym_RBRACE] = ACTIONS(1045), [sym_number] = ACTIONS(1045), + [anon_sym_AT] = ACTIONS(1045), [aux_sym_character_token1] = ACTIONS(1045), [aux_sym_character_token2] = ACTIONS(1045), [sym_string] = ACTIONS(1045), [sym_system_s] = ACTIONS(1045), [anon_sym_20] = ACTIONS(1045), - [anon_sym_AT] = ACTIONS(1045), [sym_system_F] = ACTIONS(1045), [anon_sym_PLUS] = ACTIONS(1045), [anon_sym_DASH] = ACTIONS(1045), @@ -27105,12 +27105,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1003), [anon_sym_RBRACE] = ACTIONS(1003), [sym_number] = ACTIONS(1003), + [anon_sym_AT] = ACTIONS(1003), [aux_sym_character_token1] = ACTIONS(1003), [aux_sym_character_token2] = ACTIONS(1003), [sym_string] = ACTIONS(1003), [sym_system_s] = ACTIONS(1003), [anon_sym_20] = ACTIONS(1003), - [anon_sym_AT] = ACTIONS(1003), [sym_system_F] = ACTIONS(1003), [anon_sym_PLUS] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1003), @@ -27212,12 +27212,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1051), [anon_sym_RBRACE] = ACTIONS(1051), [sym_number] = ACTIONS(1051), + [anon_sym_AT] = ACTIONS(1051), [aux_sym_character_token1] = ACTIONS(1051), [aux_sym_character_token2] = ACTIONS(1051), [sym_string] = ACTIONS(1051), [sym_system_s] = ACTIONS(1051), [anon_sym_20] = ACTIONS(1051), - [anon_sym_AT] = ACTIONS(1051), [sym_system_F] = ACTIONS(1051), [anon_sym_PLUS] = ACTIONS(1051), [anon_sym_DASH] = ACTIONS(1051), @@ -27319,12 +27319,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1055), [anon_sym_RBRACE] = ACTIONS(1055), [sym_number] = ACTIONS(1055), + [anon_sym_AT] = ACTIONS(1055), [aux_sym_character_token1] = ACTIONS(1055), [aux_sym_character_token2] = ACTIONS(1055), [sym_string] = ACTIONS(1055), [sym_system_s] = ACTIONS(1055), [anon_sym_20] = ACTIONS(1055), - [anon_sym_AT] = ACTIONS(1055), [sym_system_F] = ACTIONS(1055), [anon_sym_PLUS] = ACTIONS(1055), [anon_sym_DASH] = ACTIONS(1055), @@ -27426,12 +27426,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(879), [anon_sym_RBRACE] = ACTIONS(879), [sym_number] = ACTIONS(879), + [anon_sym_AT] = ACTIONS(879), [aux_sym_character_token1] = ACTIONS(879), [aux_sym_character_token2] = ACTIONS(879), [sym_string] = ACTIONS(879), [sym_system_s] = ACTIONS(879), [anon_sym_20] = ACTIONS(879), - [anon_sym_AT] = ACTIONS(879), [sym_system_F] = ACTIONS(879), [anon_sym_PLUS] = ACTIONS(879), [anon_sym_DASH] = ACTIONS(879), @@ -27533,12 +27533,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(680), [anon_sym_RBRACE] = ACTIONS(680), [sym_number] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), [aux_sym_character_token1] = ACTIONS(680), [aux_sym_character_token2] = ACTIONS(680), [sym_string] = ACTIONS(680), [sym_system_s] = ACTIONS(680), [anon_sym_20] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), [sym_system_F] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(680), [anon_sym_DASH] = ACTIONS(680), @@ -27640,12 +27640,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_RBRACE] = ACTIONS(807), [sym_number] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(807), [aux_sym_character_token1] = ACTIONS(807), [aux_sym_character_token2] = ACTIONS(807), [sym_string] = ACTIONS(807), [sym_system_s] = ACTIONS(807), [anon_sym_20] = ACTIONS(807), - [anon_sym_AT] = ACTIONS(807), [sym_system_F] = ACTIONS(807), [anon_sym_PLUS] = ACTIONS(807), [anon_sym_DASH] = ACTIONS(807), @@ -27747,12 +27747,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1059), [anon_sym_RBRACE] = ACTIONS(1059), [sym_number] = ACTIONS(1059), + [anon_sym_AT] = ACTIONS(1059), [aux_sym_character_token1] = ACTIONS(1059), [aux_sym_character_token2] = ACTIONS(1059), [sym_string] = ACTIONS(1059), [sym_system_s] = ACTIONS(1059), [anon_sym_20] = ACTIONS(1059), - [anon_sym_AT] = ACTIONS(1059), [sym_system_F] = ACTIONS(1059), [anon_sym_PLUS] = ACTIONS(1059), [anon_sym_DASH] = ACTIONS(1059), @@ -27854,12 +27854,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(983), [anon_sym_RBRACE] = ACTIONS(983), [sym_number] = ACTIONS(983), + [anon_sym_AT] = ACTIONS(983), [aux_sym_character_token1] = ACTIONS(983), [aux_sym_character_token2] = ACTIONS(983), [sym_string] = ACTIONS(983), [sym_system_s] = ACTIONS(983), [anon_sym_20] = ACTIONS(983), - [anon_sym_AT] = ACTIONS(983), [sym_system_F] = ACTIONS(983), [anon_sym_PLUS] = ACTIONS(983), [anon_sym_DASH] = ACTIONS(983), @@ -27961,12 +27961,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1065), [anon_sym_RBRACE] = ACTIONS(1065), [sym_number] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), [aux_sym_character_token1] = ACTIONS(1065), [aux_sym_character_token2] = ACTIONS(1065), [sym_string] = ACTIONS(1065), [sym_system_s] = ACTIONS(1065), [anon_sym_20] = ACTIONS(1065), - [anon_sym_AT] = ACTIONS(1065), [sym_system_F] = ACTIONS(1065), [anon_sym_PLUS] = ACTIONS(1065), [anon_sym_DASH] = ACTIONS(1065), @@ -28068,12 +28068,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1022), [anon_sym_RBRACE] = ACTIONS(1022), [sym_number] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1022), [aux_sym_character_token1] = ACTIONS(1022), [aux_sym_character_token2] = ACTIONS(1022), [sym_string] = ACTIONS(1022), [sym_system_s] = ACTIONS(1022), [anon_sym_20] = ACTIONS(1022), - [anon_sym_AT] = ACTIONS(1022), [sym_system_F] = ACTIONS(1022), [anon_sym_PLUS] = ACTIONS(1022), [anon_sym_DASH] = ACTIONS(1022), @@ -28175,12 +28175,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(983), [anon_sym_RBRACE] = ACTIONS(983), [sym_number] = ACTIONS(983), + [anon_sym_AT] = ACTIONS(983), [aux_sym_character_token1] = ACTIONS(983), [aux_sym_character_token2] = ACTIONS(983), [sym_string] = ACTIONS(983), [sym_system_s] = ACTIONS(983), [anon_sym_20] = ACTIONS(983), - [anon_sym_AT] = ACTIONS(983), [sym_system_F] = ACTIONS(983), [anon_sym_PLUS] = ACTIONS(983), [anon_sym_DASH] = ACTIONS(983), @@ -28282,12 +28282,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1069), [anon_sym_RBRACE] = ACTIONS(1069), [sym_number] = ACTIONS(1069), + [anon_sym_AT] = ACTIONS(1069), [aux_sym_character_token1] = ACTIONS(1069), [aux_sym_character_token2] = ACTIONS(1069), [sym_string] = ACTIONS(1069), [sym_system_s] = ACTIONS(1069), [anon_sym_20] = ACTIONS(1069), - [anon_sym_AT] = ACTIONS(1069), [sym_system_F] = ACTIONS(1069), [anon_sym_PLUS] = ACTIONS(1069), [anon_sym_DASH] = ACTIONS(1069), @@ -28389,12 +28389,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1073), [anon_sym_RBRACE] = ACTIONS(1073), [sym_number] = ACTIONS(1073), + [anon_sym_AT] = ACTIONS(1073), [aux_sym_character_token1] = ACTIONS(1073), [aux_sym_character_token2] = ACTIONS(1073), [sym_string] = ACTIONS(1073), [sym_system_s] = ACTIONS(1073), [anon_sym_20] = ACTIONS(1073), - [anon_sym_AT] = ACTIONS(1073), [sym_system_F] = ACTIONS(1073), [anon_sym_PLUS] = ACTIONS(1073), [anon_sym_DASH] = ACTIONS(1073), @@ -28495,12 +28495,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(933), [anon_sym_LBRACE] = ACTIONS(933), [sym_number] = ACTIONS(933), + [anon_sym_AT] = ACTIONS(933), [aux_sym_character_token1] = ACTIONS(933), [aux_sym_character_token2] = ACTIONS(933), [sym_string] = ACTIONS(933), [sym_system_s] = ACTIONS(933), [anon_sym_20] = ACTIONS(933), - [anon_sym_AT] = ACTIONS(933), [sym_system_F] = ACTIONS(933), [anon_sym_PLUS] = ACTIONS(933), [anon_sym_DASH] = ACTIONS(933), @@ -28601,12 +28601,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(901), [anon_sym_LBRACE] = ACTIONS(901), [sym_number] = ACTIONS(901), + [anon_sym_AT] = ACTIONS(901), [aux_sym_character_token1] = ACTIONS(901), [aux_sym_character_token2] = ACTIONS(901), [sym_string] = ACTIONS(901), [sym_system_s] = ACTIONS(901), [anon_sym_20] = ACTIONS(901), - [anon_sym_AT] = ACTIONS(901), [sym_system_F] = ACTIONS(901), [anon_sym_PLUS] = ACTIONS(901), [anon_sym_DASH] = ACTIONS(901), @@ -28707,12 +28707,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(891), [anon_sym_LBRACE] = ACTIONS(891), [sym_number] = ACTIONS(891), + [anon_sym_AT] = ACTIONS(891), [aux_sym_character_token1] = ACTIONS(891), [aux_sym_character_token2] = ACTIONS(891), [sym_string] = ACTIONS(891), [sym_system_s] = ACTIONS(891), [anon_sym_20] = ACTIONS(891), - [anon_sym_AT] = ACTIONS(891), [sym_system_F] = ACTIONS(891), [anon_sym_PLUS] = ACTIONS(891), [anon_sym_DASH] = ACTIONS(891), @@ -28813,12 +28813,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(915), [anon_sym_LBRACE] = ACTIONS(915), [sym_number] = ACTIONS(915), + [anon_sym_AT] = ACTIONS(915), [aux_sym_character_token1] = ACTIONS(915), [aux_sym_character_token2] = ACTIONS(915), [sym_string] = ACTIONS(915), [sym_system_s] = ACTIONS(915), [anon_sym_20] = ACTIONS(915), - [anon_sym_AT] = ACTIONS(915), [sym_system_F] = ACTIONS(915), [anon_sym_PLUS] = ACTIONS(915), [anon_sym_DASH] = ACTIONS(915), @@ -28919,12 +28919,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1077), [anon_sym_LBRACE] = ACTIONS(1077), [sym_number] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1077), [aux_sym_character_token1] = ACTIONS(1077), [aux_sym_character_token2] = ACTIONS(1077), [sym_string] = ACTIONS(1077), [sym_system_s] = ACTIONS(1077), [anon_sym_20] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1077), [sym_system_F] = ACTIONS(1077), [anon_sym_PLUS] = ACTIONS(1077), [anon_sym_DASH] = ACTIONS(1077), @@ -29025,12 +29025,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1083), [sym_number] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(1083), [aux_sym_character_token1] = ACTIONS(1083), [aux_sym_character_token2] = ACTIONS(1083), [sym_string] = ACTIONS(1083), [sym_system_s] = ACTIONS(1083), [anon_sym_20] = ACTIONS(1083), - [anon_sym_AT] = ACTIONS(1083), [sym_system_F] = ACTIONS(1083), [anon_sym_PLUS] = ACTIONS(1083), [anon_sym_DASH] = ACTIONS(1083), @@ -29131,12 +29131,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1037), [anon_sym_RBRACE] = ACTIONS(1037), [sym_number] = ACTIONS(1037), + [anon_sym_AT] = ACTIONS(1037), [aux_sym_character_token1] = ACTIONS(1037), [aux_sym_character_token2] = ACTIONS(1037), [sym_string] = ACTIONS(1037), [sym_system_s] = ACTIONS(1037), [anon_sym_20] = ACTIONS(1037), - [anon_sym_AT] = ACTIONS(1037), [sym_system_F] = ACTIONS(1037), [anon_sym_PLUS] = ACTIONS(1037), [anon_sym_DASH] = ACTIONS(1037), @@ -29236,12 +29236,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(889), [anon_sym_LBRACE] = ACTIONS(889), [sym_number] = ACTIONS(889), + [anon_sym_AT] = ACTIONS(889), [aux_sym_character_token1] = ACTIONS(889), [aux_sym_character_token2] = ACTIONS(889), [sym_string] = ACTIONS(889), [sym_system_s] = ACTIONS(889), [anon_sym_20] = ACTIONS(889), - [anon_sym_AT] = ACTIONS(889), [sym_system_F] = ACTIONS(889), [anon_sym_PLUS] = ACTIONS(889), [anon_sym_DASH] = ACTIONS(889), @@ -29341,12 +29341,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(907), [anon_sym_LBRACE] = ACTIONS(907), [sym_number] = ACTIONS(907), + [anon_sym_AT] = ACTIONS(907), [aux_sym_character_token1] = ACTIONS(907), [aux_sym_character_token2] = ACTIONS(907), [sym_string] = ACTIONS(907), [sym_system_s] = ACTIONS(907), [anon_sym_20] = ACTIONS(907), - [anon_sym_AT] = ACTIONS(907), [sym_system_F] = ACTIONS(907), [anon_sym_PLUS] = ACTIONS(907), [anon_sym_DASH] = ACTIONS(907), @@ -29446,12 +29446,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1092), [anon_sym_LBRACE] = ACTIONS(1092), [sym_number] = ACTIONS(1092), + [anon_sym_AT] = ACTIONS(1092), [aux_sym_character_token1] = ACTIONS(1092), [aux_sym_character_token2] = ACTIONS(1092), [sym_string] = ACTIONS(1092), [sym_system_s] = ACTIONS(1092), [anon_sym_20] = ACTIONS(1092), - [anon_sym_AT] = ACTIONS(1092), [sym_system_F] = ACTIONS(1092), [anon_sym_PLUS] = ACTIONS(1092), [anon_sym_DASH] = ACTIONS(1092), @@ -29551,12 +29551,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1096), [anon_sym_LBRACE] = ACTIONS(1096), [sym_number] = ACTIONS(1096), + [anon_sym_AT] = ACTIONS(1096), [aux_sym_character_token1] = ACTIONS(1096), [aux_sym_character_token2] = ACTIONS(1096), [sym_string] = ACTIONS(1096), [sym_system_s] = ACTIONS(1096), [anon_sym_20] = ACTIONS(1096), - [anon_sym_AT] = ACTIONS(1096), [sym_system_F] = ACTIONS(1096), [anon_sym_PLUS] = ACTIONS(1096), [anon_sym_DASH] = ACTIONS(1096), @@ -29656,12 +29656,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(953), [anon_sym_LBRACE] = ACTIONS(953), [sym_number] = ACTIONS(953), + [anon_sym_AT] = ACTIONS(953), [aux_sym_character_token1] = ACTIONS(953), [aux_sym_character_token2] = ACTIONS(953), [sym_string] = ACTIONS(953), [sym_system_s] = ACTIONS(953), [anon_sym_20] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(953), [sym_system_F] = ACTIONS(953), [anon_sym_PLUS] = ACTIONS(953), [anon_sym_DASH] = ACTIONS(953), @@ -29761,12 +29761,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1102), [anon_sym_LBRACE] = ACTIONS(1102), [sym_number] = ACTIONS(1102), + [anon_sym_AT] = ACTIONS(1102), [aux_sym_character_token1] = ACTIONS(1102), [aux_sym_character_token2] = ACTIONS(1102), [sym_string] = ACTIONS(1102), [sym_system_s] = ACTIONS(1102), [anon_sym_20] = ACTIONS(1102), - [anon_sym_AT] = ACTIONS(1102), [sym_system_F] = ACTIONS(1102), [anon_sym_PLUS] = ACTIONS(1102), [anon_sym_DASH] = ACTIONS(1102), @@ -29866,12 +29866,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1106), [anon_sym_LBRACE] = ACTIONS(1106), [sym_number] = ACTIONS(1106), + [anon_sym_AT] = ACTIONS(1106), [aux_sym_character_token1] = ACTIONS(1106), [aux_sym_character_token2] = ACTIONS(1106), [sym_string] = ACTIONS(1106), [sym_system_s] = ACTIONS(1106), [anon_sym_20] = ACTIONS(1106), - [anon_sym_AT] = ACTIONS(1106), [sym_system_F] = ACTIONS(1106), [anon_sym_PLUS] = ACTIONS(1106), [anon_sym_DASH] = ACTIONS(1106), @@ -29971,12 +29971,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1110), [anon_sym_LBRACE] = ACTIONS(1110), [sym_number] = ACTIONS(1110), + [anon_sym_AT] = ACTIONS(1110), [aux_sym_character_token1] = ACTIONS(1110), [aux_sym_character_token2] = ACTIONS(1110), [sym_string] = ACTIONS(1110), [sym_system_s] = ACTIONS(1110), [anon_sym_20] = ACTIONS(1110), - [anon_sym_AT] = ACTIONS(1110), [sym_system_F] = ACTIONS(1110), [anon_sym_PLUS] = ACTIONS(1110), [anon_sym_DASH] = ACTIONS(1110), @@ -30076,12 +30076,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1114), [anon_sym_LBRACE] = ACTIONS(1114), [sym_number] = ACTIONS(1114), + [anon_sym_AT] = ACTIONS(1114), [aux_sym_character_token1] = ACTIONS(1114), [aux_sym_character_token2] = ACTIONS(1114), [sym_string] = ACTIONS(1114), [sym_system_s] = ACTIONS(1114), [anon_sym_20] = ACTIONS(1114), - [anon_sym_AT] = ACTIONS(1114), [sym_system_F] = ACTIONS(1114), [anon_sym_PLUS] = ACTIONS(1114), [anon_sym_DASH] = ACTIONS(1114), @@ -30181,12 +30181,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1118), [anon_sym_LBRACE] = ACTIONS(1118), [sym_number] = ACTIONS(1118), + [anon_sym_AT] = ACTIONS(1118), [aux_sym_character_token1] = ACTIONS(1118), [aux_sym_character_token2] = ACTIONS(1118), [sym_string] = ACTIONS(1118), [sym_system_s] = ACTIONS(1118), [anon_sym_20] = ACTIONS(1118), - [anon_sym_AT] = ACTIONS(1118), [sym_system_F] = ACTIONS(1118), [anon_sym_PLUS] = ACTIONS(1118), [anon_sym_DASH] = ACTIONS(1118), @@ -30286,12 +30286,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(899), [anon_sym_LBRACE] = ACTIONS(899), [sym_number] = ACTIONS(899), + [anon_sym_AT] = ACTIONS(899), [aux_sym_character_token1] = ACTIONS(899), [aux_sym_character_token2] = ACTIONS(899), [sym_string] = ACTIONS(899), [sym_system_s] = ACTIONS(899), [anon_sym_20] = ACTIONS(899), - [anon_sym_AT] = ACTIONS(899), [sym_system_F] = ACTIONS(899), [anon_sym_PLUS] = ACTIONS(899), [anon_sym_DASH] = ACTIONS(899), @@ -30391,12 +30391,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1124), [anon_sym_LBRACE] = ACTIONS(1124), [sym_number] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(1124), [aux_sym_character_token1] = ACTIONS(1124), [aux_sym_character_token2] = ACTIONS(1124), [sym_string] = ACTIONS(1124), [sym_system_s] = ACTIONS(1124), [anon_sym_20] = ACTIONS(1124), - [anon_sym_AT] = ACTIONS(1124), [sym_system_F] = ACTIONS(1124), [anon_sym_PLUS] = ACTIONS(1124), [anon_sym_DASH] = ACTIONS(1124), @@ -30496,12 +30496,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1100), [anon_sym_LBRACE] = ACTIONS(1100), [sym_number] = ACTIONS(1100), + [anon_sym_AT] = ACTIONS(1100), [aux_sym_character_token1] = ACTIONS(1100), [aux_sym_character_token2] = ACTIONS(1100), [sym_string] = ACTIONS(1100), [sym_system_s] = ACTIONS(1100), [anon_sym_20] = ACTIONS(1100), - [anon_sym_AT] = ACTIONS(1100), [sym_system_F] = ACTIONS(1100), [anon_sym_PLUS] = ACTIONS(1100), [anon_sym_DASH] = ACTIONS(1100), @@ -30601,12 +30601,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1130), [anon_sym_LBRACE] = ACTIONS(1130), [sym_number] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(1130), [aux_sym_character_token1] = ACTIONS(1130), [aux_sym_character_token2] = ACTIONS(1130), [sym_string] = ACTIONS(1130), [sym_system_s] = ACTIONS(1130), [anon_sym_20] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1130), [sym_system_F] = ACTIONS(1130), [anon_sym_PLUS] = ACTIONS(1130), [anon_sym_DASH] = ACTIONS(1130), @@ -30706,12 +30706,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(913), [anon_sym_LBRACE] = ACTIONS(913), [sym_number] = ACTIONS(913), + [anon_sym_AT] = ACTIONS(913), [aux_sym_character_token1] = ACTIONS(913), [aux_sym_character_token2] = ACTIONS(913), [sym_string] = ACTIONS(913), [sym_system_s] = ACTIONS(913), [anon_sym_20] = ACTIONS(913), - [anon_sym_AT] = ACTIONS(913), [sym_system_F] = ACTIONS(913), [anon_sym_PLUS] = ACTIONS(913), [anon_sym_DASH] = ACTIONS(913), @@ -30811,12 +30811,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1136), [anon_sym_LBRACE] = ACTIONS(1136), [sym_number] = ACTIONS(1136), + [anon_sym_AT] = ACTIONS(1136), [aux_sym_character_token1] = ACTIONS(1136), [aux_sym_character_token2] = ACTIONS(1136), [sym_string] = ACTIONS(1136), [sym_system_s] = ACTIONS(1136), [anon_sym_20] = ACTIONS(1136), - [anon_sym_AT] = ACTIONS(1136), [sym_system_F] = ACTIONS(1136), [anon_sym_PLUS] = ACTIONS(1136), [anon_sym_DASH] = ACTIONS(1136), @@ -30916,12 +30916,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1140), [anon_sym_LBRACE] = ACTIONS(1140), [sym_number] = ACTIONS(1140), + [anon_sym_AT] = ACTIONS(1140), [aux_sym_character_token1] = ACTIONS(1140), [aux_sym_character_token2] = ACTIONS(1140), [sym_string] = ACTIONS(1140), [sym_system_s] = ACTIONS(1140), [anon_sym_20] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(1140), [sym_system_F] = ACTIONS(1140), [anon_sym_PLUS] = ACTIONS(1140), [anon_sym_DASH] = ACTIONS(1140), @@ -31021,12 +31021,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1144), [anon_sym_LBRACE] = ACTIONS(1144), [sym_number] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(1144), [aux_sym_character_token1] = ACTIONS(1144), [aux_sym_character_token2] = ACTIONS(1144), [sym_string] = ACTIONS(1144), [sym_system_s] = ACTIONS(1144), [anon_sym_20] = ACTIONS(1144), - [anon_sym_AT] = ACTIONS(1144), [sym_system_F] = ACTIONS(1144), [anon_sym_PLUS] = ACTIONS(1144), [anon_sym_DASH] = ACTIONS(1144), @@ -31126,12 +31126,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1083), [sym_number] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(1083), [aux_sym_character_token1] = ACTIONS(1083), [aux_sym_character_token2] = ACTIONS(1083), [sym_string] = ACTIONS(1083), [sym_system_s] = ACTIONS(1083), [anon_sym_20] = ACTIONS(1083), - [anon_sym_AT] = ACTIONS(1083), [sym_system_F] = ACTIONS(1083), [anon_sym_PLUS] = ACTIONS(1083), [anon_sym_DASH] = ACTIONS(1083), @@ -31231,12 +31231,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(743), [anon_sym_LBRACE] = ACTIONS(743), [sym_number] = ACTIONS(743), + [anon_sym_AT] = ACTIONS(743), [aux_sym_character_token1] = ACTIONS(743), [aux_sym_character_token2] = ACTIONS(743), [sym_string] = ACTIONS(743), [sym_system_s] = ACTIONS(743), [anon_sym_20] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), [sym_system_F] = ACTIONS(743), [anon_sym_PLUS] = ACTIONS(743), [anon_sym_DASH] = ACTIONS(743), @@ -31336,12 +31336,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1077), [anon_sym_LBRACE] = ACTIONS(1077), [sym_number] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1077), [aux_sym_character_token1] = ACTIONS(1077), [aux_sym_character_token2] = ACTIONS(1077), [sym_string] = ACTIONS(1077), [sym_system_s] = ACTIONS(1077), [anon_sym_20] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1077), [sym_system_F] = ACTIONS(1077), [anon_sym_PLUS] = ACTIONS(1077), [anon_sym_DASH] = ACTIONS(1077), @@ -31441,12 +31441,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1150), [anon_sym_LBRACE] = ACTIONS(1150), [sym_number] = ACTIONS(1150), + [anon_sym_AT] = ACTIONS(1150), [aux_sym_character_token1] = ACTIONS(1150), [aux_sym_character_token2] = ACTIONS(1150), [sym_string] = ACTIONS(1150), [sym_system_s] = ACTIONS(1150), [anon_sym_20] = ACTIONS(1150), - [anon_sym_AT] = ACTIONS(1150), [sym_system_F] = ACTIONS(1150), [anon_sym_PLUS] = ACTIONS(1150), [anon_sym_DASH] = ACTIONS(1150), @@ -31546,12 +31546,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(921), [anon_sym_LBRACE] = ACTIONS(921), [sym_number] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(921), [aux_sym_character_token1] = ACTIONS(921), [aux_sym_character_token2] = ACTIONS(921), [sym_string] = ACTIONS(921), [sym_system_s] = ACTIONS(921), [anon_sym_20] = ACTIONS(921), - [anon_sym_AT] = ACTIONS(921), [sym_system_F] = ACTIONS(921), [anon_sym_PLUS] = ACTIONS(921), [anon_sym_DASH] = ACTIONS(921), @@ -31651,12 +31651,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(680), [sym_number] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), [aux_sym_character_token1] = ACTIONS(680), [aux_sym_character_token2] = ACTIONS(680), [sym_string] = ACTIONS(680), [sym_system_s] = ACTIONS(680), [anon_sym_20] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), [sym_system_F] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(680), [anon_sym_DASH] = ACTIONS(680), @@ -31756,12 +31756,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(680), [sym_number] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), [aux_sym_character_token1] = ACTIONS(680), [aux_sym_character_token2] = ACTIONS(680), [sym_string] = ACTIONS(680), [sym_system_s] = ACTIONS(680), [anon_sym_20] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), [sym_system_F] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(680), [anon_sym_DASH] = ACTIONS(680), @@ -31861,12 +31861,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(680), [sym_number] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), [aux_sym_character_token1] = ACTIONS(680), [aux_sym_character_token2] = ACTIONS(680), [sym_string] = ACTIONS(680), [sym_system_s] = ACTIONS(680), [anon_sym_20] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), [sym_system_F] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(680), [anon_sym_DASH] = ACTIONS(680), @@ -31966,12 +31966,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1083), [sym_number] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(1083), [aux_sym_character_token1] = ACTIONS(1083), [aux_sym_character_token2] = ACTIONS(1083), [sym_string] = ACTIONS(1083), [sym_system_s] = ACTIONS(1083), [anon_sym_20] = ACTIONS(1083), - [anon_sym_AT] = ACTIONS(1083), [sym_system_F] = ACTIONS(1083), [anon_sym_PLUS] = ACTIONS(1083), [anon_sym_DASH] = ACTIONS(1083), @@ -32070,12 +32070,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1100), [anon_sym_LBRACE] = ACTIONS(1100), [sym_number] = ACTIONS(1100), + [anon_sym_AT] = ACTIONS(1100), [aux_sym_character_token1] = ACTIONS(1100), [aux_sym_character_token2] = ACTIONS(1100), [sym_string] = ACTIONS(1100), [sym_system_s] = ACTIONS(1100), [anon_sym_20] = ACTIONS(1100), - [anon_sym_AT] = ACTIONS(1100), [sym_system_F] = ACTIONS(1100), [anon_sym_PLUS] = ACTIONS(1100), [anon_sym_DASH] = ACTIONS(1100), @@ -32174,12 +32174,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(889), [anon_sym_LBRACE] = ACTIONS(889), [sym_number] = ACTIONS(889), + [anon_sym_AT] = ACTIONS(889), [aux_sym_character_token1] = ACTIONS(889), [aux_sym_character_token2] = ACTIONS(889), [sym_string] = ACTIONS(889), [sym_system_s] = ACTIONS(889), [anon_sym_20] = ACTIONS(889), - [anon_sym_AT] = ACTIONS(889), [sym_system_F] = ACTIONS(889), [anon_sym_PLUS] = ACTIONS(889), [anon_sym_DASH] = ACTIONS(889), @@ -32278,12 +32278,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1118), [anon_sym_LBRACE] = ACTIONS(1118), [sym_number] = ACTIONS(1118), + [anon_sym_AT] = ACTIONS(1118), [aux_sym_character_token1] = ACTIONS(1118), [aux_sym_character_token2] = ACTIONS(1118), [sym_string] = ACTIONS(1118), [sym_system_s] = ACTIONS(1118), [anon_sym_20] = ACTIONS(1118), - [anon_sym_AT] = ACTIONS(1118), [sym_system_F] = ACTIONS(1118), [anon_sym_PLUS] = ACTIONS(1118), [anon_sym_DASH] = ACTIONS(1118), @@ -32382,12 +32382,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1124), [anon_sym_LBRACE] = ACTIONS(1124), [sym_number] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(1124), [aux_sym_character_token1] = ACTIONS(1124), [aux_sym_character_token2] = ACTIONS(1124), [sym_string] = ACTIONS(1124), [sym_system_s] = ACTIONS(1124), [anon_sym_20] = ACTIONS(1124), - [anon_sym_AT] = ACTIONS(1124), [sym_system_F] = ACTIONS(1124), [anon_sym_PLUS] = ACTIONS(1124), [anon_sym_DASH] = ACTIONS(1124), @@ -32486,12 +32486,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1144), [anon_sym_LBRACE] = ACTIONS(1144), [sym_number] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(1144), [aux_sym_character_token1] = ACTIONS(1144), [aux_sym_character_token2] = ACTIONS(1144), [sym_string] = ACTIONS(1144), [sym_system_s] = ACTIONS(1144), [anon_sym_20] = ACTIONS(1144), - [anon_sym_AT] = ACTIONS(1144), [sym_system_F] = ACTIONS(1144), [anon_sym_PLUS] = ACTIONS(1144), [anon_sym_DASH] = ACTIONS(1144), @@ -32590,12 +32590,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1140), [anon_sym_LBRACE] = ACTIONS(1140), [sym_number] = ACTIONS(1140), + [anon_sym_AT] = ACTIONS(1140), [aux_sym_character_token1] = ACTIONS(1140), [aux_sym_character_token2] = ACTIONS(1140), [sym_string] = ACTIONS(1140), [sym_system_s] = ACTIONS(1140), [anon_sym_20] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(1140), [sym_system_F] = ACTIONS(1140), [anon_sym_PLUS] = ACTIONS(1140), [anon_sym_DASH] = ACTIONS(1140), @@ -32694,12 +32694,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(1083), [sym_number] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(1083), [aux_sym_character_token1] = ACTIONS(1083), [aux_sym_character_token2] = ACTIONS(1083), [sym_string] = ACTIONS(1083), [sym_system_s] = ACTIONS(1083), [anon_sym_20] = ACTIONS(1083), - [anon_sym_AT] = ACTIONS(1083), [sym_system_F] = ACTIONS(1083), [anon_sym_PLUS] = ACTIONS(1083), [anon_sym_DASH] = ACTIONS(1083), @@ -32798,12 +32798,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1092), [anon_sym_LBRACE] = ACTIONS(1092), [sym_number] = ACTIONS(1092), + [anon_sym_AT] = ACTIONS(1092), [aux_sym_character_token1] = ACTIONS(1092), [aux_sym_character_token2] = ACTIONS(1092), [sym_string] = ACTIONS(1092), [sym_system_s] = ACTIONS(1092), [anon_sym_20] = ACTIONS(1092), - [anon_sym_AT] = ACTIONS(1092), [sym_system_F] = ACTIONS(1092), [anon_sym_PLUS] = ACTIONS(1092), [anon_sym_DASH] = ACTIONS(1092), @@ -32902,12 +32902,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(807), [anon_sym_RBRACE] = ACTIONS(807), [sym_number] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(807), [aux_sym_character_token1] = ACTIONS(807), [aux_sym_character_token2] = ACTIONS(807), [sym_string] = ACTIONS(807), [sym_system_s] = ACTIONS(807), [anon_sym_20] = ACTIONS(807), - [anon_sym_AT] = ACTIONS(807), [sym_system_F] = ACTIONS(807), [anon_sym_PLUS] = ACTIONS(807), [anon_sym_DASH] = ACTIONS(807), @@ -33006,12 +33006,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1150), [anon_sym_LBRACE] = ACTIONS(1150), [sym_number] = ACTIONS(1150), + [anon_sym_AT] = ACTIONS(1150), [aux_sym_character_token1] = ACTIONS(1150), [aux_sym_character_token2] = ACTIONS(1150), [sym_string] = ACTIONS(1150), [sym_system_s] = ACTIONS(1150), [anon_sym_20] = ACTIONS(1150), - [anon_sym_AT] = ACTIONS(1150), [sym_system_F] = ACTIONS(1150), [anon_sym_PLUS] = ACTIONS(1150), [anon_sym_DASH] = ACTIONS(1150), @@ -33110,12 +33110,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(899), [anon_sym_LBRACE] = ACTIONS(899), [sym_number] = ACTIONS(899), + [anon_sym_AT] = ACTIONS(899), [aux_sym_character_token1] = ACTIONS(899), [aux_sym_character_token2] = ACTIONS(899), [sym_string] = ACTIONS(899), [sym_system_s] = ACTIONS(899), [anon_sym_20] = ACTIONS(899), - [anon_sym_AT] = ACTIONS(899), [sym_system_F] = ACTIONS(899), [anon_sym_PLUS] = ACTIONS(899), [anon_sym_DASH] = ACTIONS(899), @@ -33214,12 +33214,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1110), [anon_sym_LBRACE] = ACTIONS(1110), [sym_number] = ACTIONS(1110), + [anon_sym_AT] = ACTIONS(1110), [aux_sym_character_token1] = ACTIONS(1110), [aux_sym_character_token2] = ACTIONS(1110), [sym_string] = ACTIONS(1110), [sym_system_s] = ACTIONS(1110), [anon_sym_20] = ACTIONS(1110), - [anon_sym_AT] = ACTIONS(1110), [sym_system_F] = ACTIONS(1110), [anon_sym_PLUS] = ACTIONS(1110), [anon_sym_DASH] = ACTIONS(1110), @@ -33318,12 +33318,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1102), [anon_sym_LBRACE] = ACTIONS(1102), [sym_number] = ACTIONS(1102), + [anon_sym_AT] = ACTIONS(1102), [aux_sym_character_token1] = ACTIONS(1102), [aux_sym_character_token2] = ACTIONS(1102), [sym_string] = ACTIONS(1102), [sym_system_s] = ACTIONS(1102), [anon_sym_20] = ACTIONS(1102), - [anon_sym_AT] = ACTIONS(1102), [sym_system_F] = ACTIONS(1102), [anon_sym_PLUS] = ACTIONS(1102), [anon_sym_DASH] = ACTIONS(1102), @@ -33422,12 +33422,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1106), [anon_sym_LBRACE] = ACTIONS(1106), [sym_number] = ACTIONS(1106), + [anon_sym_AT] = ACTIONS(1106), [aux_sym_character_token1] = ACTIONS(1106), [aux_sym_character_token2] = ACTIONS(1106), [sym_string] = ACTIONS(1106), [sym_system_s] = ACTIONS(1106), [anon_sym_20] = ACTIONS(1106), - [anon_sym_AT] = ACTIONS(1106), [sym_system_F] = ACTIONS(1106), [anon_sym_PLUS] = ACTIONS(1106), [anon_sym_DASH] = ACTIONS(1106), @@ -33526,12 +33526,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1136), [anon_sym_LBRACE] = ACTIONS(1136), [sym_number] = ACTIONS(1136), + [anon_sym_AT] = ACTIONS(1136), [aux_sym_character_token1] = ACTIONS(1136), [aux_sym_character_token2] = ACTIONS(1136), [sym_string] = ACTIONS(1136), [sym_system_s] = ACTIONS(1136), [anon_sym_20] = ACTIONS(1136), - [anon_sym_AT] = ACTIONS(1136), [sym_system_F] = ACTIONS(1136), [anon_sym_PLUS] = ACTIONS(1136), [anon_sym_DASH] = ACTIONS(1136), @@ -33630,12 +33630,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1114), [anon_sym_LBRACE] = ACTIONS(1114), [sym_number] = ACTIONS(1114), + [anon_sym_AT] = ACTIONS(1114), [aux_sym_character_token1] = ACTIONS(1114), [aux_sym_character_token2] = ACTIONS(1114), [sym_string] = ACTIONS(1114), [sym_system_s] = ACTIONS(1114), [anon_sym_20] = ACTIONS(1114), - [anon_sym_AT] = ACTIONS(1114), [sym_system_F] = ACTIONS(1114), [anon_sym_PLUS] = ACTIONS(1114), [anon_sym_DASH] = ACTIONS(1114), @@ -33734,12 +33734,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1096), [anon_sym_LBRACE] = ACTIONS(1096), [sym_number] = ACTIONS(1096), + [anon_sym_AT] = ACTIONS(1096), [aux_sym_character_token1] = ACTIONS(1096), [aux_sym_character_token2] = ACTIONS(1096), [sym_string] = ACTIONS(1096), [sym_system_s] = ACTIONS(1096), [anon_sym_20] = ACTIONS(1096), - [anon_sym_AT] = ACTIONS(1096), [sym_system_F] = ACTIONS(1096), [anon_sym_PLUS] = ACTIONS(1096), [anon_sym_DASH] = ACTIONS(1096), @@ -33838,12 +33838,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1102), [anon_sym_LBRACE] = ACTIONS(1102), [sym_number] = ACTIONS(1102), + [anon_sym_AT] = ACTIONS(1102), [aux_sym_character_token1] = ACTIONS(1102), [aux_sym_character_token2] = ACTIONS(1102), [sym_string] = ACTIONS(1102), [sym_system_s] = ACTIONS(1102), [anon_sym_20] = ACTIONS(1102), - [anon_sym_AT] = ACTIONS(1102), [sym_system_F] = ACTIONS(1102), [anon_sym_PLUS] = ACTIONS(1102), [anon_sym_DASH] = ACTIONS(1102), @@ -33942,12 +33942,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1130), [anon_sym_LBRACE] = ACTIONS(1130), [sym_number] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(1130), [aux_sym_character_token1] = ACTIONS(1130), [aux_sym_character_token2] = ACTIONS(1130), [sym_string] = ACTIONS(1130), [sym_system_s] = ACTIONS(1130), [anon_sym_20] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1130), [sym_system_F] = ACTIONS(1130), [anon_sym_PLUS] = ACTIONS(1130), [anon_sym_DASH] = ACTIONS(1130), @@ -34046,12 +34046,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(913), [anon_sym_LBRACE] = ACTIONS(913), [sym_number] = ACTIONS(913), + [anon_sym_AT] = ACTIONS(913), [aux_sym_character_token1] = ACTIONS(913), [aux_sym_character_token2] = ACTIONS(913), [sym_string] = ACTIONS(913), [sym_system_s] = ACTIONS(913), [anon_sym_20] = ACTIONS(913), - [anon_sym_AT] = ACTIONS(913), [sym_system_F] = ACTIONS(913), [anon_sym_PLUS] = ACTIONS(913), [anon_sym_DASH] = ACTIONS(913), @@ -34149,12 +34149,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(933), [anon_sym_LBRACE] = ACTIONS(933), [sym_number] = ACTIONS(933), + [anon_sym_AT] = ACTIONS(933), [aux_sym_character_token1] = ACTIONS(933), [aux_sym_character_token2] = ACTIONS(933), [sym_string] = ACTIONS(933), [sym_system_s] = ACTIONS(933), [anon_sym_20] = ACTIONS(933), - [anon_sym_AT] = ACTIONS(933), [sym_system_F] = ACTIONS(933), [anon_sym_PLUS] = ACTIONS(933), [anon_sym_DASH] = ACTIONS(933), @@ -34252,12 +34252,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1166), [anon_sym_LBRACE] = ACTIONS(1166), [sym_number] = ACTIONS(1166), + [anon_sym_AT] = ACTIONS(1166), [aux_sym_character_token1] = ACTIONS(1166), [aux_sym_character_token2] = ACTIONS(1166), [sym_string] = ACTIONS(1166), [sym_system_s] = ACTIONS(1166), [anon_sym_20] = ACTIONS(1166), - [anon_sym_AT] = ACTIONS(1166), [sym_system_F] = ACTIONS(1166), [anon_sym_PLUS] = ACTIONS(1166), [anon_sym_DASH] = ACTIONS(1166), @@ -34355,12 +34355,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1170), [anon_sym_LBRACE] = ACTIONS(1170), [sym_number] = ACTIONS(1170), + [anon_sym_AT] = ACTIONS(1170), [aux_sym_character_token1] = ACTIONS(1170), [aux_sym_character_token2] = ACTIONS(1170), [sym_string] = ACTIONS(1170), [sym_system_s] = ACTIONS(1170), [anon_sym_20] = ACTIONS(1170), - [anon_sym_AT] = ACTIONS(1170), [sym_system_F] = ACTIONS(1170), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -34458,12 +34458,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(891), [anon_sym_LBRACE] = ACTIONS(891), [sym_number] = ACTIONS(891), + [anon_sym_AT] = ACTIONS(891), [aux_sym_character_token1] = ACTIONS(891), [aux_sym_character_token2] = ACTIONS(891), [sym_string] = ACTIONS(891), [sym_system_s] = ACTIONS(891), [anon_sym_20] = ACTIONS(891), - [anon_sym_AT] = ACTIONS(891), [sym_system_F] = ACTIONS(891), [anon_sym_PLUS] = ACTIONS(891), [anon_sym_DASH] = ACTIONS(891), @@ -34561,12 +34561,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(374), [anon_sym_LBRACE] = ACTIONS(374), [sym_number] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(374), [aux_sym_character_token1] = ACTIONS(374), [aux_sym_character_token2] = ACTIONS(374), [sym_string] = ACTIONS(374), [sym_system_s] = ACTIONS(374), [anon_sym_20] = ACTIONS(374), - [anon_sym_AT] = ACTIONS(374), [sym_system_F] = ACTIONS(374), [anon_sym_PLUS] = ACTIONS(374), [anon_sym_DASH] = ACTIONS(374), @@ -34664,12 +34664,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(901), [anon_sym_LBRACE] = ACTIONS(901), [sym_number] = ACTIONS(901), + [anon_sym_AT] = ACTIONS(901), [aux_sym_character_token1] = ACTIONS(901), [aux_sym_character_token2] = ACTIONS(901), [sym_string] = ACTIONS(901), [sym_system_s] = ACTIONS(901), [anon_sym_20] = ACTIONS(901), - [anon_sym_AT] = ACTIONS(901), [sym_system_F] = ACTIONS(901), [anon_sym_PLUS] = ACTIONS(901), [anon_sym_DASH] = ACTIONS(901), @@ -34767,12 +34767,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(915), [anon_sym_LBRACE] = ACTIONS(915), [sym_number] = ACTIONS(915), + [anon_sym_AT] = ACTIONS(915), [aux_sym_character_token1] = ACTIONS(915), [aux_sym_character_token2] = ACTIONS(915), [sym_string] = ACTIONS(915), [sym_system_s] = ACTIONS(915), [anon_sym_20] = ACTIONS(915), - [anon_sym_AT] = ACTIONS(915), [sym_system_F] = ACTIONS(915), [anon_sym_PLUS] = ACTIONS(915), [anon_sym_DASH] = ACTIONS(915), @@ -34870,12 +34870,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(931), [anon_sym_LBRACE] = ACTIONS(931), [sym_number] = ACTIONS(931), + [anon_sym_AT] = ACTIONS(931), [aux_sym_character_token1] = ACTIONS(931), [aux_sym_character_token2] = ACTIONS(931), [sym_string] = ACTIONS(931), [sym_system_s] = ACTIONS(931), [anon_sym_20] = ACTIONS(931), - [anon_sym_AT] = ACTIONS(931), [sym_system_F] = ACTIONS(931), [anon_sym_PLUS] = ACTIONS(931), [anon_sym_DASH] = ACTIONS(931), @@ -34973,12 +34973,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(901), [anon_sym_LBRACE] = ACTIONS(901), [sym_number] = ACTIONS(901), + [anon_sym_AT] = ACTIONS(901), [aux_sym_character_token1] = ACTIONS(901), [aux_sym_character_token2] = ACTIONS(901), [sym_string] = ACTIONS(901), [sym_system_s] = ACTIONS(901), [anon_sym_20] = ACTIONS(901), - [anon_sym_AT] = ACTIONS(901), [sym_system_F] = ACTIONS(901), [anon_sym_PLUS] = ACTIONS(901), [anon_sym_DASH] = ACTIONS(901), @@ -35076,12 +35076,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(915), [anon_sym_LBRACE] = ACTIONS(915), [sym_number] = ACTIONS(915), + [anon_sym_AT] = ACTIONS(915), [aux_sym_character_token1] = ACTIONS(915), [aux_sym_character_token2] = ACTIONS(915), [sym_string] = ACTIONS(915), [sym_system_s] = ACTIONS(915), [anon_sym_20] = ACTIONS(915), - [anon_sym_AT] = ACTIONS(915), [sym_system_F] = ACTIONS(915), [anon_sym_PLUS] = ACTIONS(915), [anon_sym_DASH] = ACTIONS(915), @@ -35179,12 +35179,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(933), [anon_sym_LBRACE] = ACTIONS(933), [sym_number] = ACTIONS(933), + [anon_sym_AT] = ACTIONS(933), [aux_sym_character_token1] = ACTIONS(933), [aux_sym_character_token2] = ACTIONS(933), [sym_string] = ACTIONS(933), [sym_system_s] = ACTIONS(933), [anon_sym_20] = ACTIONS(933), - [anon_sym_AT] = ACTIONS(933), [sym_system_F] = ACTIONS(933), [anon_sym_PLUS] = ACTIONS(933), [anon_sym_DASH] = ACTIONS(933), @@ -35282,12 +35282,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(891), [anon_sym_LBRACE] = ACTIONS(891), [sym_number] = ACTIONS(891), + [anon_sym_AT] = ACTIONS(891), [aux_sym_character_token1] = ACTIONS(891), [aux_sym_character_token2] = ACTIONS(891), [sym_string] = ACTIONS(891), [sym_system_s] = ACTIONS(891), [anon_sym_20] = ACTIONS(891), - [anon_sym_AT] = ACTIONS(891), [sym_system_F] = ACTIONS(891), [anon_sym_PLUS] = ACTIONS(891), [anon_sym_DASH] = ACTIONS(891), @@ -35384,12 +35384,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(989), [anon_sym_LBRACE] = ACTIONS(989), [sym_number] = ACTIONS(989), + [anon_sym_AT] = ACTIONS(989), [aux_sym_character_token1] = ACTIONS(989), [aux_sym_character_token2] = ACTIONS(989), [sym_string] = ACTIONS(989), [sym_system_s] = ACTIONS(989), [anon_sym_20] = ACTIONS(989), - [anon_sym_AT] = ACTIONS(989), [sym_system_F] = ACTIONS(989), [anon_sym_PLUS] = ACTIONS(989), [anon_sym_DASH] = ACTIONS(989), @@ -35486,12 +35486,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(959), [anon_sym_LBRACE] = ACTIONS(959), [sym_number] = ACTIONS(959), + [anon_sym_AT] = ACTIONS(959), [aux_sym_character_token1] = ACTIONS(959), [aux_sym_character_token2] = ACTIONS(959), [sym_string] = ACTIONS(959), [sym_system_s] = ACTIONS(959), [anon_sym_20] = ACTIONS(959), - [anon_sym_AT] = ACTIONS(959), [sym_system_F] = ACTIONS(959), [anon_sym_PLUS] = ACTIONS(959), [anon_sym_DASH] = ACTIONS(959), @@ -35588,12 +35588,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1102), [anon_sym_LBRACE] = ACTIONS(1102), [sym_number] = ACTIONS(1102), + [anon_sym_AT] = ACTIONS(1102), [aux_sym_character_token1] = ACTIONS(1102), [aux_sym_character_token2] = ACTIONS(1102), [sym_string] = ACTIONS(1102), [sym_system_s] = ACTIONS(1102), [anon_sym_20] = ACTIONS(1102), - [anon_sym_AT] = ACTIONS(1102), [sym_system_F] = ACTIONS(1102), [anon_sym_PLUS] = ACTIONS(1102), [anon_sym_DASH] = ACTIONS(1102), @@ -35690,12 +35690,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(897), [anon_sym_LBRACE] = ACTIONS(897), [sym_number] = ACTIONS(897), + [anon_sym_AT] = ACTIONS(897), [aux_sym_character_token1] = ACTIONS(897), [aux_sym_character_token2] = ACTIONS(897), [sym_string] = ACTIONS(897), [sym_system_s] = ACTIONS(897), [anon_sym_20] = ACTIONS(897), - [anon_sym_AT] = ACTIONS(897), [sym_system_F] = ACTIONS(897), [anon_sym_PLUS] = ACTIONS(897), [anon_sym_DASH] = ACTIONS(897), @@ -35792,12 +35792,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(724), [anon_sym_LBRACE] = ACTIONS(931), [sym_number] = ACTIONS(931), + [anon_sym_AT] = ACTIONS(931), [aux_sym_character_token1] = ACTIONS(931), [aux_sym_character_token2] = ACTIONS(931), [sym_string] = ACTIONS(931), [sym_system_s] = ACTIONS(931), [anon_sym_20] = ACTIONS(931), - [anon_sym_AT] = ACTIONS(931), [sym_system_F] = ACTIONS(931), [anon_sym_PLUS] = ACTIONS(931), [anon_sym_DASH] = ACTIONS(931), @@ -35894,12 +35894,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(969), [anon_sym_LBRACE] = ACTIONS(969), [sym_number] = ACTIONS(969), + [anon_sym_AT] = ACTIONS(969), [aux_sym_character_token1] = ACTIONS(969), [aux_sym_character_token2] = ACTIONS(969), [sym_string] = ACTIONS(969), [sym_system_s] = ACTIONS(969), [anon_sym_20] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), [sym_system_F] = ACTIONS(969), [anon_sym_PLUS] = ACTIONS(969), [anon_sym_DASH] = ACTIONS(969), @@ -35996,12 +35996,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(953), [anon_sym_LBRACE] = ACTIONS(953), [sym_number] = ACTIONS(953), + [anon_sym_AT] = ACTIONS(953), [aux_sym_character_token1] = ACTIONS(953), [aux_sym_character_token2] = ACTIONS(953), [sym_string] = ACTIONS(953), [sym_system_s] = ACTIONS(953), [anon_sym_20] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(953), [sym_system_F] = ACTIONS(953), [anon_sym_PLUS] = ACTIONS(953), [anon_sym_DASH] = ACTIONS(953), @@ -36098,12 +36098,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1102), [anon_sym_LBRACE] = ACTIONS(1102), [sym_number] = ACTIONS(1102), + [anon_sym_AT] = ACTIONS(1102), [aux_sym_character_token1] = ACTIONS(1102), [aux_sym_character_token2] = ACTIONS(1102), [sym_string] = ACTIONS(1102), [sym_system_s] = ACTIONS(1102), [anon_sym_20] = ACTIONS(1102), - [anon_sym_AT] = ACTIONS(1102), [sym_system_F] = ACTIONS(1102), [anon_sym_PLUS] = ACTIONS(1102), [anon_sym_DASH] = ACTIONS(1102), @@ -36200,12 +36200,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(911), [anon_sym_LBRACE] = ACTIONS(911), [sym_number] = ACTIONS(911), + [anon_sym_AT] = ACTIONS(911), [aux_sym_character_token1] = ACTIONS(911), [aux_sym_character_token2] = ACTIONS(911), [sym_string] = ACTIONS(911), [sym_system_s] = ACTIONS(911), [anon_sym_20] = ACTIONS(911), - [anon_sym_AT] = ACTIONS(911), [sym_system_F] = ACTIONS(911), [anon_sym_PLUS] = ACTIONS(911), [anon_sym_DASH] = ACTIONS(911), @@ -36302,12 +36302,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(993), [anon_sym_LBRACE] = ACTIONS(993), [sym_number] = ACTIONS(993), + [anon_sym_AT] = ACTIONS(993), [aux_sym_character_token1] = ACTIONS(993), [aux_sym_character_token2] = ACTIONS(993), [sym_string] = ACTIONS(993), [sym_system_s] = ACTIONS(993), [anon_sym_20] = ACTIONS(993), - [anon_sym_AT] = ACTIONS(993), [sym_system_F] = ACTIONS(993), [anon_sym_PLUS] = ACTIONS(993), [anon_sym_DASH] = ACTIONS(993), @@ -36404,12 +36404,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(983), [anon_sym_LBRACE] = ACTIONS(983), [sym_number] = ACTIONS(983), + [anon_sym_AT] = ACTIONS(983), [aux_sym_character_token1] = ACTIONS(983), [aux_sym_character_token2] = ACTIONS(983), [sym_string] = ACTIONS(983), [sym_system_s] = ACTIONS(983), [anon_sym_20] = ACTIONS(983), - [anon_sym_AT] = ACTIONS(983), [sym_system_F] = ACTIONS(983), [anon_sym_PLUS] = ACTIONS(983), [anon_sym_DASH] = ACTIONS(983), @@ -36506,12 +36506,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1029), [anon_sym_LBRACE] = ACTIONS(1029), [sym_number] = ACTIONS(1029), + [anon_sym_AT] = ACTIONS(1029), [aux_sym_character_token1] = ACTIONS(1029), [aux_sym_character_token2] = ACTIONS(1029), [sym_string] = ACTIONS(1029), [sym_system_s] = ACTIONS(1029), [anon_sym_20] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(1029), [sym_system_F] = ACTIONS(1029), [anon_sym_PLUS] = ACTIONS(1029), [anon_sym_DASH] = ACTIONS(1029), @@ -36608,12 +36608,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(887), [anon_sym_LBRACE] = ACTIONS(887), [sym_number] = ACTIONS(887), + [anon_sym_AT] = ACTIONS(887), [aux_sym_character_token1] = ACTIONS(887), [aux_sym_character_token2] = ACTIONS(887), [sym_string] = ACTIONS(887), [sym_system_s] = ACTIONS(887), [anon_sym_20] = ACTIONS(887), - [anon_sym_AT] = ACTIONS(887), [sym_system_F] = ACTIONS(887), [anon_sym_PLUS] = ACTIONS(887), [anon_sym_DASH] = ACTIONS(887), @@ -36710,12 +36710,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(999), [sym_number] = ACTIONS(999), + [anon_sym_AT] = ACTIONS(999), [aux_sym_character_token1] = ACTIONS(999), [aux_sym_character_token2] = ACTIONS(999), [sym_string] = ACTIONS(999), [sym_system_s] = ACTIONS(999), [anon_sym_20] = ACTIONS(999), - [anon_sym_AT] = ACTIONS(999), [sym_system_F] = ACTIONS(999), [anon_sym_PLUS] = ACTIONS(999), [anon_sym_DASH] = ACTIONS(999), @@ -36812,12 +36812,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(972), [sym_number] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(972), [aux_sym_character_token1] = ACTIONS(972), [aux_sym_character_token2] = ACTIONS(972), [sym_string] = ACTIONS(972), [sym_system_s] = ACTIONS(972), [anon_sym_20] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(972), [sym_system_F] = ACTIONS(972), [anon_sym_PLUS] = ACTIONS(972), [anon_sym_DASH] = ACTIONS(972), @@ -36914,12 +36914,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(879), [anon_sym_LBRACE] = ACTIONS(879), [sym_number] = ACTIONS(879), + [anon_sym_AT] = ACTIONS(879), [aux_sym_character_token1] = ACTIONS(879), [aux_sym_character_token2] = ACTIONS(879), [sym_string] = ACTIONS(879), [sym_system_s] = ACTIONS(879), [anon_sym_20] = ACTIONS(879), - [anon_sym_AT] = ACTIONS(879), [sym_system_F] = ACTIONS(879), [anon_sym_PLUS] = ACTIONS(879), [anon_sym_DASH] = ACTIONS(879), @@ -37016,12 +37016,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1102), [anon_sym_LBRACE] = ACTIONS(1102), [sym_number] = ACTIONS(1102), + [anon_sym_AT] = ACTIONS(1102), [aux_sym_character_token1] = ACTIONS(1102), [aux_sym_character_token2] = ACTIONS(1102), [sym_string] = ACTIONS(1102), [sym_system_s] = ACTIONS(1102), [anon_sym_20] = ACTIONS(1102), - [anon_sym_AT] = ACTIONS(1102), [sym_system_F] = ACTIONS(1102), [anon_sym_PLUS] = ACTIONS(1102), [anon_sym_DASH] = ACTIONS(1102), @@ -37118,12 +37118,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1016), [anon_sym_LBRACE] = ACTIONS(1016), [sym_number] = ACTIONS(1016), + [anon_sym_AT] = ACTIONS(1016), [aux_sym_character_token1] = ACTIONS(1016), [aux_sym_character_token2] = ACTIONS(1016), [sym_string] = ACTIONS(1016), [sym_system_s] = ACTIONS(1016), [anon_sym_20] = ACTIONS(1016), - [anon_sym_AT] = ACTIONS(1016), [sym_system_F] = ACTIONS(1016), [anon_sym_PLUS] = ACTIONS(1016), [anon_sym_DASH] = ACTIONS(1016), @@ -37220,12 +37220,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1005), [anon_sym_LBRACE] = ACTIONS(1005), [sym_number] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(1005), [aux_sym_character_token1] = ACTIONS(1005), [aux_sym_character_token2] = ACTIONS(1005), [sym_string] = ACTIONS(1005), [sym_system_s] = ACTIONS(1005), [anon_sym_20] = ACTIONS(1005), - [anon_sym_AT] = ACTIONS(1005), [sym_system_F] = ACTIONS(1005), [anon_sym_PLUS] = ACTIONS(1005), [anon_sym_DASH] = ACTIONS(1005), @@ -37321,12 +37321,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1183), [anon_sym_LBRACE] = ACTIONS(1183), [sym_number] = ACTIONS(1183), + [anon_sym_AT] = ACTIONS(1183), [aux_sym_character_token1] = ACTIONS(1183), [aux_sym_character_token2] = ACTIONS(1183), [sym_string] = ACTIONS(1183), [sym_system_s] = ACTIONS(1183), [anon_sym_20] = ACTIONS(1183), - [anon_sym_AT] = ACTIONS(1183), [sym_system_F] = ACTIONS(1183), [anon_sym_PLUS] = ACTIONS(1183), [anon_sym_DASH] = ACTIONS(1183), @@ -37422,12 +37422,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1033), [anon_sym_LBRACE] = ACTIONS(1033), [sym_number] = ACTIONS(1033), + [anon_sym_AT] = ACTIONS(1033), [aux_sym_character_token1] = ACTIONS(1033), [aux_sym_character_token2] = ACTIONS(1033), [sym_string] = ACTIONS(1033), [sym_system_s] = ACTIONS(1033), [anon_sym_20] = ACTIONS(1033), - [anon_sym_AT] = ACTIONS(1033), [sym_system_F] = ACTIONS(1033), [anon_sym_PLUS] = ACTIONS(1033), [anon_sym_DASH] = ACTIONS(1033), @@ -37523,12 +37523,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_RBRACE] = ACTIONS(1189), [sym_number] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(1187), [aux_sym_character_token1] = ACTIONS(1187), [aux_sym_character_token2] = ACTIONS(1187), [sym_string] = ACTIONS(1187), [sym_system_s] = ACTIONS(1187), [anon_sym_20] = ACTIONS(1187), - [anon_sym_AT] = ACTIONS(1187), [sym_system_F] = ACTIONS(1187), [anon_sym_PLUS] = ACTIONS(1187), [anon_sym_DASH] = ACTIONS(1187), @@ -37624,12 +37624,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1037), [anon_sym_LBRACE] = ACTIONS(1037), [sym_number] = ACTIONS(1037), + [anon_sym_AT] = ACTIONS(1037), [aux_sym_character_token1] = ACTIONS(1037), [aux_sym_character_token2] = ACTIONS(1037), [sym_string] = ACTIONS(1037), [sym_system_s] = ACTIONS(1037), [anon_sym_20] = ACTIONS(1037), - [anon_sym_AT] = ACTIONS(1037), [sym_system_F] = ACTIONS(1037), [anon_sym_PLUS] = ACTIONS(1037), [anon_sym_DASH] = ACTIONS(1037), @@ -37725,12 +37725,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_RBRACE] = ACTIONS(1193), [sym_number] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(1187), [aux_sym_character_token1] = ACTIONS(1187), [aux_sym_character_token2] = ACTIONS(1187), [sym_string] = ACTIONS(1187), [sym_system_s] = ACTIONS(1187), [anon_sym_20] = ACTIONS(1187), - [anon_sym_AT] = ACTIONS(1187), [sym_system_F] = ACTIONS(1187), [anon_sym_PLUS] = ACTIONS(1187), [anon_sym_DASH] = ACTIONS(1187), @@ -37826,12 +37826,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1022), [anon_sym_LBRACE] = ACTIONS(1022), [sym_number] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1022), [aux_sym_character_token1] = ACTIONS(1022), [aux_sym_character_token2] = ACTIONS(1022), [sym_string] = ACTIONS(1022), [sym_system_s] = ACTIONS(1022), [anon_sym_20] = ACTIONS(1022), - [anon_sym_AT] = ACTIONS(1022), [sym_system_F] = ACTIONS(1022), [anon_sym_PLUS] = ACTIONS(1022), [anon_sym_DASH] = ACTIONS(1022), @@ -37927,12 +37927,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1102), [anon_sym_LBRACE] = ACTIONS(1102), [sym_number] = ACTIONS(1102), + [anon_sym_AT] = ACTIONS(1102), [aux_sym_character_token1] = ACTIONS(1102), [aux_sym_character_token2] = ACTIONS(1102), [sym_string] = ACTIONS(1102), [sym_system_s] = ACTIONS(1102), [anon_sym_20] = ACTIONS(1102), - [anon_sym_AT] = ACTIONS(1102), [sym_system_F] = ACTIONS(1102), [anon_sym_PLUS] = ACTIONS(1102), [anon_sym_DASH] = ACTIONS(1102), @@ -38028,12 +38028,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1022), [anon_sym_LBRACE] = ACTIONS(1022), [sym_number] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1022), [aux_sym_character_token1] = ACTIONS(1022), [aux_sym_character_token2] = ACTIONS(1022), [sym_string] = ACTIONS(1022), [sym_system_s] = ACTIONS(1022), [anon_sym_20] = ACTIONS(1022), - [anon_sym_AT] = ACTIONS(1022), [sym_system_F] = ACTIONS(1022), [anon_sym_PLUS] = ACTIONS(1022), [anon_sym_DASH] = ACTIONS(1022), @@ -38129,12 +38129,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(969), [anon_sym_LBRACE] = ACTIONS(969), [sym_number] = ACTIONS(969), + [anon_sym_AT] = ACTIONS(969), [aux_sym_character_token1] = ACTIONS(969), [aux_sym_character_token2] = ACTIONS(969), [sym_string] = ACTIONS(969), [sym_system_s] = ACTIONS(969), [anon_sym_20] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), [sym_system_F] = ACTIONS(969), [anon_sym_PLUS] = ACTIONS(969), [anon_sym_DASH] = ACTIONS(969), @@ -38230,12 +38230,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(879), [anon_sym_LBRACE] = ACTIONS(879), [sym_number] = ACTIONS(879), + [anon_sym_AT] = ACTIONS(879), [aux_sym_character_token1] = ACTIONS(879), [aux_sym_character_token2] = ACTIONS(879), [sym_string] = ACTIONS(879), [sym_system_s] = ACTIONS(879), [anon_sym_20] = ACTIONS(879), - [anon_sym_AT] = ACTIONS(879), [sym_system_F] = ACTIONS(879), [anon_sym_PLUS] = ACTIONS(879), [anon_sym_DASH] = ACTIONS(879), @@ -38331,12 +38331,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1202), [anon_sym_LBRACE] = ACTIONS(1202), [sym_number] = ACTIONS(1202), + [anon_sym_AT] = ACTIONS(1202), [aux_sym_character_token1] = ACTIONS(1202), [aux_sym_character_token2] = ACTIONS(1202), [sym_string] = ACTIONS(1202), [sym_system_s] = ACTIONS(1202), [anon_sym_20] = ACTIONS(1202), - [anon_sym_AT] = ACTIONS(1202), [sym_system_F] = ACTIONS(1202), [anon_sym_PLUS] = ACTIONS(1202), [anon_sym_DASH] = ACTIONS(1202), @@ -38432,12 +38432,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1003), [anon_sym_LBRACE] = ACTIONS(1003), [sym_number] = ACTIONS(1003), + [anon_sym_AT] = ACTIONS(1003), [aux_sym_character_token1] = ACTIONS(1003), [aux_sym_character_token2] = ACTIONS(1003), [sym_string] = ACTIONS(1003), [sym_system_s] = ACTIONS(1003), [anon_sym_20] = ACTIONS(1003), - [anon_sym_AT] = ACTIONS(1003), [sym_system_F] = ACTIONS(1003), [anon_sym_PLUS] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1003), @@ -38533,12 +38533,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1065), [anon_sym_LBRACE] = ACTIONS(1065), [sym_number] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), [aux_sym_character_token1] = ACTIONS(1065), [aux_sym_character_token2] = ACTIONS(1065), [sym_string] = ACTIONS(1065), [sym_system_s] = ACTIONS(1065), [anon_sym_20] = ACTIONS(1065), - [anon_sym_AT] = ACTIONS(1065), [sym_system_F] = ACTIONS(1065), [anon_sym_PLUS] = ACTIONS(1065), [anon_sym_DASH] = ACTIONS(1065), @@ -38634,12 +38634,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1051), [anon_sym_LBRACE] = ACTIONS(1051), [sym_number] = ACTIONS(1051), + [anon_sym_AT] = ACTIONS(1051), [aux_sym_character_token1] = ACTIONS(1051), [aux_sym_character_token2] = ACTIONS(1051), [sym_string] = ACTIONS(1051), [sym_system_s] = ACTIONS(1051), [anon_sym_20] = ACTIONS(1051), - [anon_sym_AT] = ACTIONS(1051), [sym_system_F] = ACTIONS(1051), [anon_sym_PLUS] = ACTIONS(1051), [anon_sym_DASH] = ACTIONS(1051), @@ -38735,12 +38735,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1045), [anon_sym_LBRACE] = ACTIONS(1045), [sym_number] = ACTIONS(1045), + [anon_sym_AT] = ACTIONS(1045), [aux_sym_character_token1] = ACTIONS(1045), [aux_sym_character_token2] = ACTIONS(1045), [sym_string] = ACTIONS(1045), [sym_system_s] = ACTIONS(1045), [anon_sym_20] = ACTIONS(1045), - [anon_sym_AT] = ACTIONS(1045), [sym_system_F] = ACTIONS(1045), [anon_sym_PLUS] = ACTIONS(1045), [anon_sym_DASH] = ACTIONS(1045), @@ -38836,12 +38836,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(969), [sym_number] = ACTIONS(969), + [anon_sym_AT] = ACTIONS(969), [aux_sym_character_token1] = ACTIONS(969), [aux_sym_character_token2] = ACTIONS(969), [sym_string] = ACTIONS(969), [sym_system_s] = ACTIONS(969), [anon_sym_20] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), [sym_system_F] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(680), [anon_sym_DASH] = ACTIONS(680), @@ -38937,12 +38937,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_RBRACE] = ACTIONS(1206), [sym_number] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(1187), [aux_sym_character_token1] = ACTIONS(1187), [aux_sym_character_token2] = ACTIONS(1187), [sym_string] = ACTIONS(1187), [sym_system_s] = ACTIONS(1187), [anon_sym_20] = ACTIONS(1187), - [anon_sym_AT] = ACTIONS(1187), [sym_system_F] = ACTIONS(1187), [anon_sym_PLUS] = ACTIONS(1187), [anon_sym_DASH] = ACTIONS(1187), @@ -39038,12 +39038,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1059), [anon_sym_LBRACE] = ACTIONS(1059), [sym_number] = ACTIONS(1059), + [anon_sym_AT] = ACTIONS(1059), [aux_sym_character_token1] = ACTIONS(1059), [aux_sym_character_token2] = ACTIONS(1059), [sym_string] = ACTIONS(1059), [sym_system_s] = ACTIONS(1059), [anon_sym_20] = ACTIONS(1059), - [anon_sym_AT] = ACTIONS(1059), [sym_system_F] = ACTIONS(1059), [anon_sym_PLUS] = ACTIONS(1059), [anon_sym_DASH] = ACTIONS(1059), @@ -39139,12 +39139,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(969), [anon_sym_LBRACE] = ACTIONS(969), [sym_number] = ACTIONS(969), + [anon_sym_AT] = ACTIONS(969), [aux_sym_character_token1] = ACTIONS(969), [aux_sym_character_token2] = ACTIONS(969), [sym_string] = ACTIONS(969), [sym_system_s] = ACTIONS(969), [anon_sym_20] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), [sym_system_F] = ACTIONS(969), [anon_sym_PLUS] = ACTIONS(969), [anon_sym_DASH] = ACTIONS(969), @@ -39240,12 +39240,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_RBRACE] = ACTIONS(1209), [sym_number] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(1187), [aux_sym_character_token1] = ACTIONS(1187), [aux_sym_character_token2] = ACTIONS(1187), [sym_string] = ACTIONS(1187), [sym_system_s] = ACTIONS(1187), [anon_sym_20] = ACTIONS(1187), - [anon_sym_AT] = ACTIONS(1187), [sym_system_F] = ACTIONS(1187), [anon_sym_PLUS] = ACTIONS(1187), [anon_sym_DASH] = ACTIONS(1187), @@ -39341,12 +39341,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(972), [sym_number] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(972), [aux_sym_character_token1] = ACTIONS(972), [aux_sym_character_token2] = ACTIONS(972), [sym_string] = ACTIONS(972), [sym_system_s] = ACTIONS(972), [anon_sym_20] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(972), [sym_system_F] = ACTIONS(972), [anon_sym_PLUS] = ACTIONS(972), [anon_sym_DASH] = ACTIONS(972), @@ -39442,12 +39442,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(969), [anon_sym_LBRACE] = ACTIONS(969), [sym_number] = ACTIONS(969), + [anon_sym_AT] = ACTIONS(969), [aux_sym_character_token1] = ACTIONS(969), [aux_sym_character_token2] = ACTIONS(969), [sym_string] = ACTIONS(969), [sym_system_s] = ACTIONS(969), [anon_sym_20] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), [sym_system_F] = ACTIONS(969), [anon_sym_PLUS] = ACTIONS(969), [anon_sym_DASH] = ACTIONS(969), @@ -39543,12 +39543,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(969), [anon_sym_LBRACE] = ACTIONS(969), [sym_number] = ACTIONS(969), + [anon_sym_AT] = ACTIONS(969), [aux_sym_character_token1] = ACTIONS(969), [aux_sym_character_token2] = ACTIONS(969), [sym_string] = ACTIONS(969), [sym_system_s] = ACTIONS(969), [anon_sym_20] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), [sym_system_F] = ACTIONS(969), [anon_sym_PLUS] = ACTIONS(969), [anon_sym_DASH] = ACTIONS(969), @@ -39644,12 +39644,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(969), [anon_sym_LBRACE] = ACTIONS(969), [sym_number] = ACTIONS(969), + [anon_sym_AT] = ACTIONS(969), [aux_sym_character_token1] = ACTIONS(969), [aux_sym_character_token2] = ACTIONS(969), [sym_string] = ACTIONS(969), [sym_system_s] = ACTIONS(969), [anon_sym_20] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), [sym_system_F] = ACTIONS(969), [anon_sym_PLUS] = ACTIONS(969), [anon_sym_DASH] = ACTIONS(969), @@ -39745,12 +39745,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(807), [anon_sym_LBRACE] = ACTIONS(807), [sym_number] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(807), [aux_sym_character_token1] = ACTIONS(807), [aux_sym_character_token2] = ACTIONS(807), [sym_string] = ACTIONS(807), [sym_system_s] = ACTIONS(807), [anon_sym_20] = ACTIONS(807), - [anon_sym_AT] = ACTIONS(807), [sym_system_F] = ACTIONS(807), [anon_sym_PLUS] = ACTIONS(807), [anon_sym_DASH] = ACTIONS(807), @@ -39846,12 +39846,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1055), [anon_sym_LBRACE] = ACTIONS(1055), [sym_number] = ACTIONS(1055), + [anon_sym_AT] = ACTIONS(1055), [aux_sym_character_token1] = ACTIONS(1055), [aux_sym_character_token2] = ACTIONS(1055), [sym_string] = ACTIONS(1055), [sym_system_s] = ACTIONS(1055), [anon_sym_20] = ACTIONS(1055), - [anon_sym_AT] = ACTIONS(1055), [sym_system_F] = ACTIONS(1055), [anon_sym_PLUS] = ACTIONS(1055), [anon_sym_DASH] = ACTIONS(1055), @@ -39947,12 +39947,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(963), [anon_sym_LBRACE] = ACTIONS(963), [sym_number] = ACTIONS(963), + [anon_sym_AT] = ACTIONS(963), [aux_sym_character_token1] = ACTIONS(963), [aux_sym_character_token2] = ACTIONS(963), [sym_string] = ACTIONS(963), [sym_system_s] = ACTIONS(963), [anon_sym_20] = ACTIONS(963), - [anon_sym_AT] = ACTIONS(963), [sym_system_F] = ACTIONS(963), [anon_sym_PLUS] = ACTIONS(963), [anon_sym_DASH] = ACTIONS(963), @@ -40048,12 +40048,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1073), [anon_sym_LBRACE] = ACTIONS(1073), [sym_number] = ACTIONS(1073), + [anon_sym_AT] = ACTIONS(1073), [aux_sym_character_token1] = ACTIONS(1073), [aux_sym_character_token2] = ACTIONS(1073), [sym_string] = ACTIONS(1073), [sym_system_s] = ACTIONS(1073), [anon_sym_20] = ACTIONS(1073), - [anon_sym_AT] = ACTIONS(1073), [sym_system_F] = ACTIONS(1073), [anon_sym_PLUS] = ACTIONS(1073), [anon_sym_DASH] = ACTIONS(1073), @@ -40149,12 +40149,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(969), [anon_sym_LBRACE] = ACTIONS(969), [sym_number] = ACTIONS(969), + [anon_sym_AT] = ACTIONS(969), [aux_sym_character_token1] = ACTIONS(969), [aux_sym_character_token2] = ACTIONS(969), [sym_string] = ACTIONS(969), [sym_system_s] = ACTIONS(969), [anon_sym_20] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), [sym_system_F] = ACTIONS(969), [anon_sym_PLUS] = ACTIONS(969), [anon_sym_DASH] = ACTIONS(969), @@ -40250,12 +40250,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(680), [sym_number] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), [aux_sym_character_token1] = ACTIONS(680), [aux_sym_character_token2] = ACTIONS(680), [sym_string] = ACTIONS(680), [sym_system_s] = ACTIONS(680), [anon_sym_20] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), [sym_system_F] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(680), [anon_sym_DASH] = ACTIONS(680), @@ -40351,12 +40351,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(1041), [sym_number] = ACTIONS(1041), + [anon_sym_AT] = ACTIONS(1041), [aux_sym_character_token1] = ACTIONS(1041), [aux_sym_character_token2] = ACTIONS(1041), [sym_string] = ACTIONS(1041), [sym_system_s] = ACTIONS(1041), [anon_sym_20] = ACTIONS(1041), - [anon_sym_AT] = ACTIONS(1041), [sym_system_F] = ACTIONS(1041), [anon_sym_PLUS] = ACTIONS(1041), [anon_sym_DASH] = ACTIONS(1041), @@ -40452,12 +40452,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_RBRACE] = ACTIONS(1214), [sym_number] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(1187), [aux_sym_character_token1] = ACTIONS(1187), [aux_sym_character_token2] = ACTIONS(1187), [sym_string] = ACTIONS(1187), [sym_system_s] = ACTIONS(1187), [anon_sym_20] = ACTIONS(1187), - [anon_sym_AT] = ACTIONS(1187), [sym_system_F] = ACTIONS(1187), [anon_sym_PLUS] = ACTIONS(1187), [anon_sym_DASH] = ACTIONS(1187), @@ -40552,12 +40552,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1037), [anon_sym_LBRACE] = ACTIONS(1037), [sym_number] = ACTIONS(1037), + [anon_sym_AT] = ACTIONS(1037), [aux_sym_character_token1] = ACTIONS(1037), [aux_sym_character_token2] = ACTIONS(1037), [sym_string] = ACTIONS(1037), [sym_system_s] = ACTIONS(1037), [anon_sym_20] = ACTIONS(1037), - [anon_sym_AT] = ACTIONS(1037), [sym_system_F] = ACTIONS(1037), [anon_sym_PLUS] = ACTIONS(1037), [anon_sym_DASH] = ACTIONS(1037), @@ -40652,12 +40652,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1069), [anon_sym_LBRACE] = ACTIONS(1069), [sym_number] = ACTIONS(1069), + [anon_sym_AT] = ACTIONS(1069), [aux_sym_character_token1] = ACTIONS(1069), [aux_sym_character_token2] = ACTIONS(1069), [sym_string] = ACTIONS(1069), [sym_system_s] = ACTIONS(1069), [anon_sym_20] = ACTIONS(1069), - [anon_sym_AT] = ACTIONS(1069), [sym_system_F] = ACTIONS(1069), [anon_sym_PLUS] = ACTIONS(1069), [anon_sym_DASH] = ACTIONS(1069), @@ -40752,12 +40752,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1218), [anon_sym_LBRACE] = ACTIONS(1218), [sym_number] = ACTIONS(1218), + [anon_sym_AT] = ACTIONS(1218), [aux_sym_character_token1] = ACTIONS(1218), [aux_sym_character_token2] = ACTIONS(1218), [sym_string] = ACTIONS(1218), [sym_system_s] = ACTIONS(1218), [anon_sym_20] = ACTIONS(1218), - [anon_sym_AT] = ACTIONS(1218), [sym_system_F] = ACTIONS(1218), [anon_sym_PLUS] = ACTIONS(1218), [anon_sym_DASH] = ACTIONS(1218), @@ -40852,12 +40852,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1218), [anon_sym_LBRACE] = ACTIONS(1218), [sym_number] = ACTIONS(1218), + [anon_sym_AT] = ACTIONS(1218), [aux_sym_character_token1] = ACTIONS(1218), [aux_sym_character_token2] = ACTIONS(1218), [sym_string] = ACTIONS(1218), [sym_system_s] = ACTIONS(1218), [anon_sym_20] = ACTIONS(1218), - [anon_sym_AT] = ACTIONS(1218), [sym_system_F] = ACTIONS(1218), [anon_sym_PLUS] = ACTIONS(1218), [anon_sym_DASH] = ACTIONS(1218), @@ -40952,12 +40952,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(963), [anon_sym_LBRACE] = ACTIONS(963), [sym_number] = ACTIONS(963), + [anon_sym_AT] = ACTIONS(963), [aux_sym_character_token1] = ACTIONS(963), [aux_sym_character_token2] = ACTIONS(963), [sym_string] = ACTIONS(963), [sym_system_s] = ACTIONS(963), [anon_sym_20] = ACTIONS(963), - [anon_sym_AT] = ACTIONS(963), [sym_system_F] = ACTIONS(963), [anon_sym_PLUS] = ACTIONS(963), [anon_sym_DASH] = ACTIONS(963), @@ -41052,12 +41052,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1022), [anon_sym_LBRACE] = ACTIONS(1022), [sym_number] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1022), [aux_sym_character_token1] = ACTIONS(1022), [aux_sym_character_token2] = ACTIONS(1022), [sym_string] = ACTIONS(1022), [sym_system_s] = ACTIONS(1022), [anon_sym_20] = ACTIONS(1022), - [anon_sym_AT] = ACTIONS(1022), [sym_system_F] = ACTIONS(1022), [anon_sym_PLUS] = ACTIONS(1022), [anon_sym_DASH] = ACTIONS(1022), @@ -41152,12 +41152,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(680), [sym_number] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), [aux_sym_character_token1] = ACTIONS(680), [aux_sym_character_token2] = ACTIONS(680), [sym_string] = ACTIONS(680), [sym_system_s] = ACTIONS(680), [anon_sym_20] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), [sym_system_F] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(680), [anon_sym_DASH] = ACTIONS(680), @@ -41252,12 +41252,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1218), [anon_sym_LBRACE] = ACTIONS(1218), [sym_number] = ACTIONS(1218), + [anon_sym_AT] = ACTIONS(1218), [aux_sym_character_token1] = ACTIONS(1218), [aux_sym_character_token2] = ACTIONS(1218), [sym_string] = ACTIONS(1218), [sym_system_s] = ACTIONS(1218), [anon_sym_20] = ACTIONS(1218), - [anon_sym_AT] = ACTIONS(1218), [sym_system_F] = ACTIONS(1218), [anon_sym_PLUS] = ACTIONS(1218), [anon_sym_DASH] = ACTIONS(1218), @@ -41351,12 +41351,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1231), [anon_sym_LBRACE] = ACTIONS(1231), [sym_number] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1231), [aux_sym_character_token1] = ACTIONS(1231), [aux_sym_character_token2] = ACTIONS(1231), [sym_string] = ACTIONS(1231), [sym_system_s] = ACTIONS(1231), [anon_sym_20] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(1231), [sym_system_F] = ACTIONS(1231), [anon_sym_PLUS] = ACTIONS(1231), [anon_sym_DASH] = ACTIONS(1231), @@ -41450,12 +41450,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1166), [anon_sym_LBRACE] = ACTIONS(1166), [sym_number] = ACTIONS(1166), + [anon_sym_AT] = ACTIONS(1166), [aux_sym_character_token1] = ACTIONS(1166), [aux_sym_character_token2] = ACTIONS(1166), [sym_string] = ACTIONS(1166), [sym_system_s] = ACTIONS(1166), [anon_sym_20] = ACTIONS(1166), - [anon_sym_AT] = ACTIONS(1166), [sym_system_F] = ACTIONS(1166), [anon_sym_PLUS] = ACTIONS(1166), [anon_sym_DASH] = ACTIONS(1166), @@ -41549,12 +41549,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1231), [anon_sym_LBRACE] = ACTIONS(1231), [sym_number] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1231), [aux_sym_character_token1] = ACTIONS(1231), [aux_sym_character_token2] = ACTIONS(1231), [sym_string] = ACTIONS(1231), [sym_system_s] = ACTIONS(1231), [anon_sym_20] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(1231), [sym_system_F] = ACTIONS(1231), [anon_sym_PLUS] = ACTIONS(1231), [anon_sym_DASH] = ACTIONS(1231), @@ -41648,12 +41648,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(972), [sym_number] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(972), [aux_sym_character_token1] = ACTIONS(972), [aux_sym_character_token2] = ACTIONS(972), [sym_string] = ACTIONS(972), [sym_system_s] = ACTIONS(972), [anon_sym_20] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(972), [sym_system_F] = ACTIONS(972), [anon_sym_PLUS] = ACTIONS(972), [anon_sym_DASH] = ACTIONS(972), @@ -41747,12 +41747,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1231), [anon_sym_LBRACE] = ACTIONS(1231), [sym_number] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1231), [aux_sym_character_token1] = ACTIONS(1231), [aux_sym_character_token2] = ACTIONS(1231), [sym_string] = ACTIONS(1231), [sym_system_s] = ACTIONS(1231), [anon_sym_20] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(1231), [sym_system_F] = ACTIONS(1231), [anon_sym_PLUS] = ACTIONS(1231), [anon_sym_DASH] = ACTIONS(1231), @@ -41846,12 +41846,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1231), [anon_sym_LBRACE] = ACTIONS(1231), [sym_number] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1231), [aux_sym_character_token1] = ACTIONS(1231), [aux_sym_character_token2] = ACTIONS(1231), [sym_string] = ACTIONS(1231), [sym_system_s] = ACTIONS(1231), [anon_sym_20] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(1231), [sym_system_F] = ACTIONS(1231), [anon_sym_PLUS] = ACTIONS(1231), [anon_sym_DASH] = ACTIONS(1231), @@ -41945,12 +41945,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1069), [anon_sym_LBRACE] = ACTIONS(1069), [sym_number] = ACTIONS(1069), + [anon_sym_AT] = ACTIONS(1069), [aux_sym_character_token1] = ACTIONS(1069), [aux_sym_character_token2] = ACTIONS(1069), [sym_string] = ACTIONS(1069), [sym_system_s] = ACTIONS(1069), [anon_sym_20] = ACTIONS(1069), - [anon_sym_AT] = ACTIONS(1069), [sym_system_F] = ACTIONS(1069), [anon_sym_PLUS] = ACTIONS(1069), [anon_sym_DASH] = ACTIONS(1069), @@ -42044,12 +42044,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1231), [anon_sym_LBRACE] = ACTIONS(1231), [sym_number] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1231), [aux_sym_character_token1] = ACTIONS(1231), [aux_sym_character_token2] = ACTIONS(1231), [sym_string] = ACTIONS(1231), [sym_system_s] = ACTIONS(1231), [anon_sym_20] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(1231), [sym_system_F] = ACTIONS(1231), [anon_sym_PLUS] = ACTIONS(1231), [anon_sym_DASH] = ACTIONS(1231), @@ -42143,12 +42143,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1231), [anon_sym_LBRACE] = ACTIONS(1231), [sym_number] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1231), [aux_sym_character_token1] = ACTIONS(1231), [aux_sym_character_token2] = ACTIONS(1231), [sym_string] = ACTIONS(1231), [sym_system_s] = ACTIONS(1231), [anon_sym_20] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(1231), [sym_system_F] = ACTIONS(1231), [anon_sym_PLUS] = ACTIONS(1231), [anon_sym_DASH] = ACTIONS(1231), @@ -42242,12 +42242,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1231), [anon_sym_LBRACE] = ACTIONS(1231), [sym_number] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1231), [aux_sym_character_token1] = ACTIONS(1231), [aux_sym_character_token2] = ACTIONS(1231), [sym_string] = ACTIONS(1231), [sym_system_s] = ACTIONS(1231), [anon_sym_20] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(1231), [sym_system_F] = ACTIONS(1231), [anon_sym_PLUS] = ACTIONS(1231), [anon_sym_DASH] = ACTIONS(1231), @@ -42341,12 +42341,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1245), [anon_sym_LBRACE] = ACTIONS(1245), [sym_number] = ACTIONS(1245), + [anon_sym_AT] = ACTIONS(1245), [aux_sym_character_token1] = ACTIONS(1245), [aux_sym_character_token2] = ACTIONS(1245), [sym_string] = ACTIONS(1245), [sym_system_s] = ACTIONS(1245), [anon_sym_20] = ACTIONS(1245), - [anon_sym_AT] = ACTIONS(1245), [sym_system_F] = ACTIONS(1245), [anon_sym_PLUS] = ACTIONS(1245), [anon_sym_DASH] = ACTIONS(1245), @@ -42440,12 +42440,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1231), [anon_sym_LBRACE] = ACTIONS(1231), [sym_number] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1231), [aux_sym_character_token1] = ACTIONS(1231), [aux_sym_character_token2] = ACTIONS(1231), [sym_string] = ACTIONS(1231), [sym_system_s] = ACTIONS(1231), [anon_sym_20] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(1231), [sym_system_F] = ACTIONS(1231), [anon_sym_PLUS] = ACTIONS(1231), [anon_sym_DASH] = ACTIONS(1231), @@ -42539,12 +42539,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1251), [anon_sym_LBRACE] = ACTIONS(1251), [sym_number] = ACTIONS(1251), + [anon_sym_AT] = ACTIONS(1251), [aux_sym_character_token1] = ACTIONS(1251), [aux_sym_character_token2] = ACTIONS(1251), [sym_string] = ACTIONS(1251), [sym_system_s] = ACTIONS(1251), [anon_sym_20] = ACTIONS(1251), - [anon_sym_AT] = ACTIONS(1251), [sym_system_F] = ACTIONS(1251), [anon_sym_PLUS] = ACTIONS(1251), [anon_sym_DASH] = ACTIONS(1251), @@ -42638,12 +42638,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1187), [anon_sym_LBRACE] = ACTIONS(1187), [sym_number] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(1187), [aux_sym_character_token1] = ACTIONS(1187), [aux_sym_character_token2] = ACTIONS(1187), [sym_string] = ACTIONS(1187), [sym_system_s] = ACTIONS(1187), [anon_sym_20] = ACTIONS(1187), - [anon_sym_AT] = ACTIONS(1187), [sym_system_F] = ACTIONS(1187), [anon_sym_PLUS] = ACTIONS(1187), [anon_sym_DASH] = ACTIONS(1187), @@ -42737,12 +42737,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(983), [anon_sym_LBRACE] = ACTIONS(983), [sym_number] = ACTIONS(983), + [anon_sym_AT] = ACTIONS(983), [aux_sym_character_token1] = ACTIONS(983), [aux_sym_character_token2] = ACTIONS(983), [sym_string] = ACTIONS(983), [sym_system_s] = ACTIONS(983), [anon_sym_20] = ACTIONS(983), - [anon_sym_AT] = ACTIONS(983), [sym_system_F] = ACTIONS(983), [anon_sym_PLUS] = ACTIONS(983), [anon_sym_DASH] = ACTIONS(983), @@ -42836,12 +42836,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1231), [anon_sym_LBRACE] = ACTIONS(1231), [sym_number] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1231), [aux_sym_character_token1] = ACTIONS(1231), [aux_sym_character_token2] = ACTIONS(1231), [sym_string] = ACTIONS(1231), [sym_system_s] = ACTIONS(1231), [anon_sym_20] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(1231), [sym_system_F] = ACTIONS(1231), [anon_sym_PLUS] = ACTIONS(1231), [anon_sym_DASH] = ACTIONS(1231), @@ -42935,12 +42935,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1231), [anon_sym_LBRACE] = ACTIONS(1231), [sym_number] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1231), [aux_sym_character_token1] = ACTIONS(1231), [aux_sym_character_token2] = ACTIONS(1231), [sym_string] = ACTIONS(1231), [sym_system_s] = ACTIONS(1231), [anon_sym_20] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(1231), [sym_system_F] = ACTIONS(1231), [anon_sym_PLUS] = ACTIONS(1231), [anon_sym_DASH] = ACTIONS(1231), @@ -43034,12 +43034,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1231), [anon_sym_LBRACE] = ACTIONS(1231), [sym_number] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1231), [aux_sym_character_token1] = ACTIONS(1231), [aux_sym_character_token2] = ACTIONS(1231), [sym_string] = ACTIONS(1231), [sym_system_s] = ACTIONS(1231), [anon_sym_20] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(1231), [sym_system_F] = ACTIONS(1231), [anon_sym_PLUS] = ACTIONS(1231), [anon_sym_DASH] = ACTIONS(1231), @@ -43133,12 +43133,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1033), [anon_sym_LBRACE] = ACTIONS(972), [sym_number] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(972), [aux_sym_character_token1] = ACTIONS(972), [aux_sym_character_token2] = ACTIONS(972), [sym_string] = ACTIONS(972), [sym_system_s] = ACTIONS(972), [anon_sym_20] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(972), [sym_system_F] = ACTIONS(1033), [anon_sym_PLUS] = ACTIONS(1033), [anon_sym_DASH] = ACTIONS(1033), @@ -43232,12 +43232,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1231), [anon_sym_LBRACE] = ACTIONS(1231), [sym_number] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1231), [aux_sym_character_token1] = ACTIONS(1231), [aux_sym_character_token2] = ACTIONS(1231), [sym_string] = ACTIONS(1231), [sym_system_s] = ACTIONS(1231), [anon_sym_20] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(1231), [sym_system_F] = ACTIONS(1231), [anon_sym_PLUS] = ACTIONS(1231), [anon_sym_DASH] = ACTIONS(1231), @@ -43331,12 +43331,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1218), [anon_sym_LBRACE] = ACTIONS(1218), [sym_number] = ACTIONS(1218), + [anon_sym_AT] = ACTIONS(1218), [aux_sym_character_token1] = ACTIONS(1218), [aux_sym_character_token2] = ACTIONS(1218), [sym_string] = ACTIONS(1218), [sym_system_s] = ACTIONS(1218), [anon_sym_20] = ACTIONS(1218), - [anon_sym_AT] = ACTIONS(1218), [sym_system_F] = ACTIONS(1218), [anon_sym_PLUS] = ACTIONS(1218), [anon_sym_DASH] = ACTIONS(1218), @@ -43429,12 +43429,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1259), [anon_sym_LBRACE] = ACTIONS(1259), [sym_number] = ACTIONS(1259), + [anon_sym_AT] = ACTIONS(1259), [aux_sym_character_token1] = ACTIONS(1259), [aux_sym_character_token2] = ACTIONS(1259), [sym_string] = ACTIONS(1259), [sym_system_s] = ACTIONS(1259), [anon_sym_20] = ACTIONS(1259), - [anon_sym_AT] = ACTIONS(1259), [sym_system_F] = ACTIONS(1259), [anon_sym_PLUS] = ACTIONS(1259), [anon_sym_DASH] = ACTIONS(1259), @@ -43527,12 +43527,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1245), [anon_sym_LBRACE] = ACTIONS(1245), [sym_number] = ACTIONS(1245), + [anon_sym_AT] = ACTIONS(1245), [aux_sym_character_token1] = ACTIONS(1245), [aux_sym_character_token2] = ACTIONS(1245), [sym_string] = ACTIONS(1245), [sym_system_s] = ACTIONS(1245), [anon_sym_20] = ACTIONS(1245), - [anon_sym_AT] = ACTIONS(1245), [sym_system_F] = ACTIONS(1245), [anon_sym_PLUS] = ACTIONS(1245), [anon_sym_DASH] = ACTIONS(1245), @@ -43625,12 +43625,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(1231), [anon_sym_LBRACE] = ACTIONS(1231), [sym_number] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1231), [aux_sym_character_token1] = ACTIONS(1231), [aux_sym_character_token2] = ACTIONS(1231), [sym_string] = ACTIONS(1231), [sym_system_s] = ACTIONS(1231), [anon_sym_20] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(1231), [sym_system_F] = ACTIONS(1231), [anon_sym_PLUS] = ACTIONS(1231), [anon_sym_DASH] = ACTIONS(1231), @@ -43722,12 +43722,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_19] = ACTIONS(951), [anon_sym_LBRACE] = ACTIONS(951), [sym_number] = ACTIONS(951), + [anon_sym_AT] = ACTIONS(951), [aux_sym_character_token1] = ACTIONS(951), [aux_sym_character_token2] = ACTIONS(951), [sym_string] = ACTIONS(951), [sym_system_s] = ACTIONS(951), [anon_sym_20] = ACTIONS(951), - [anon_sym_AT] = ACTIONS(951), [sym_system_F] = ACTIONS(951), [anon_sym_PLUS] = ACTIONS(951), [anon_sym_DASH] = ACTIONS(951), @@ -43859,9 +43859,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(729), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(726), 2, + sym_number, + sym_string, ACTIONS(1293), 2, sym_symbol__m, sym_symbol__c_, @@ -43869,10 +43869,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(726), 3, - sym_number, - sym_string, + ACTIONS(729), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(250), 4, sym_lhsList, sym_lhsArray, @@ -43950,9 +43950,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(845), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(842), 2, + sym_number, + sym_string, ACTIONS(856), 2, sym_symbol__m, sym_symbol__c_, @@ -43960,10 +43960,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(842), 3, - sym_number, - sym_string, + ACTIONS(845), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(250), 4, sym_lhsList, sym_lhsArray, @@ -44026,9 +44026,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(360), 2, sym_system__m, sym_symbol__m, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(580), 2, sym_system_s, sym_symbol_s, @@ -44036,10 +44036,10 @@ static const uint16_t ts_small_parse_table[] = { sym_system__c_, sym_specialname__c_, sym_symbol__c_, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(275), 3, sym_array, sym_specialname_s, @@ -44103,9 +44103,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(360), 2, sym_system__m, sym_symbol__m, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(580), 2, sym_system_s, sym_symbol_s, @@ -44113,10 +44113,10 @@ static const uint16_t ts_small_parse_table[] = { sym_system__c_, sym_specialname__c_, sym_symbol__c_, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(275), 3, sym_array, sym_specialname_s, @@ -44176,12 +44176,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_18, anon_sym_LBRACE, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, sym_system_s, anon_sym_20, - anon_sym_AT, sym_system__m, anon_sym_57, anon_sym_58, @@ -44230,12 +44230,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_18, anon_sym_LBRACE, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, sym_system_s, anon_sym_20, - anon_sym_AT, sym_system__m, anon_sym_57, anon_sym_58, @@ -44284,12 +44284,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_18, anon_sym_LBRACE, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, sym_system_s, anon_sym_20, - anon_sym_AT, sym_system__m, anon_sym_57, anon_sym_58, @@ -44339,12 +44339,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_18, anon_sym_LBRACE, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, sym_system_s, anon_sym_20, - anon_sym_AT, sym_system__m, anon_sym_57, anon_sym_58, @@ -44417,9 +44417,9 @@ static const uint16_t ts_small_parse_table[] = { sym_symbol_export, STATE(546), 1, sym_LHS_ATOM, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(1321), 2, anon_sym_6, anon_sym_7, @@ -44430,10 +44430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(250), 4, sym_lhsList, sym_lhsArray, @@ -44498,9 +44498,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lhs, STATE(546), 1, sym_LHS_ATOM, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(642), 2, anon_sym_6, anon_sym_7, @@ -44511,10 +44511,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(250), 4, sym_lhsList, sym_lhsArray, @@ -44555,12 +44555,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_18, anon_sym_LBRACE, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, sym_system_s, anon_sym_20, - anon_sym_AT, sym_system__m, anon_sym_57, anon_sym_58, @@ -44608,12 +44608,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_18, anon_sym_LBRACE, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, sym_system_s, anon_sym_20, - anon_sym_AT, sym_system__m, anon_sym_57, anon_sym_58, @@ -44657,12 +44657,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_18, anon_sym_LBRACE, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, sym_system_s, anon_sym_20, - anon_sym_AT, sym_system__m, anon_sym_57, anon_sym_58, @@ -44707,12 +44707,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_18, anon_sym_LBRACE, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, sym_system_s, anon_sym_20, - anon_sym_AT, sym_system__m, anon_sym_57, anon_sym_58, @@ -44757,12 +44757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_18, anon_sym_LBRACE, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, sym_system_s, anon_sym_20, - anon_sym_AT, sym_system__m, anon_sym_57, anon_sym_58, @@ -44805,12 +44805,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_18, anon_sym_LBRACE, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, sym_system_s, anon_sym_20, - anon_sym_AT, sym_system__m, anon_sym_57, anon_sym_58, @@ -44880,9 +44880,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lhs, STATE(546), 1, sym_LHS_ATOM, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(1339), 2, sym_symbol__m, sym_symbol__c_, @@ -44890,10 +44890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(250), 4, sym_lhsList, sym_lhsArray, @@ -44952,9 +44952,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lhs, STATE(546), 1, sym_LHS_ATOM, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(1339), 2, sym_symbol__m, sym_symbol__c_, @@ -44962,10 +44962,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(250), 4, sym_lhsList, sym_lhsArray, @@ -45027,9 +45027,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(1265), 2, anon_sym_13, sym_specialname__c_, @@ -45037,10 +45037,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1291), 3, sym_symbol_F, sym_symbol__m, @@ -45079,16 +45079,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(39), 2, sym_system__c_, sym_specialname__c_, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(580), 2, sym_system_s, sym_symbol_s, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(275), 3, sym_array, sym_specialname_s, @@ -45140,16 +45140,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(364), 2, sym_system__c_, sym_specialname__c_, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(580), 2, sym_system_s, sym_symbol_s, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(275), 3, sym_array, sym_specialname_s, @@ -45213,17 +45213,17 @@ static const uint16_t ts_small_parse_table[] = { sym_LHS_ATOM, STATE(558), 1, sym_lhs, - ACTIONS(27), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(25), 2, + sym_number, + sym_string, ACTIONS(5), 3, anon_sym_, anon_sym_COMMA, sym__end_of_line, - ACTIONS(25), 3, - sym_number, - sym_string, + ACTIONS(27), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1249), 3, sym_symbol_F, sym_symbol__m, @@ -45280,17 +45280,17 @@ static const uint16_t ts_small_parse_table[] = { sym_LHS_ATOM, STATE(558), 1, sym_lhs, - ACTIONS(27), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(25), 2, + sym_number, + sym_string, ACTIONS(5), 3, anon_sym_, anon_sym_COMMA, sym__end_of_line, - ACTIONS(25), 3, - sym_number, - sym_string, + ACTIONS(27), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1249), 3, sym_symbol_F, sym_symbol__m, @@ -45335,16 +45335,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(360), 2, sym_system__m, sym_specialname__m, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(580), 2, sym_system_s, sym_symbol_s, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(275), 3, sym_array, sym_specialname_s, @@ -45394,16 +45394,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, sym_system__m, sym_specialname__m, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(580), 2, sym_system_s, sym_symbol_s, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(275), 3, sym_array, sym_specialname_s, @@ -45472,9 +45472,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(1339), 2, sym_symbol__m, sym_symbol__c_, @@ -45482,10 +45482,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(250), 4, sym_lhsList, sym_lhsArray, @@ -45539,9 +45539,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(1339), 2, sym_symbol__m, sym_symbol__c_, @@ -45549,10 +45549,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(250), 4, sym_lhsList, sym_lhsArray, @@ -45606,9 +45606,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(1339), 2, sym_symbol__m, sym_symbol__c_, @@ -45616,10 +45616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(250), 4, sym_lhsList, sym_lhsArray, @@ -45673,9 +45673,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(1339), 2, sym_symbol__m, sym_symbol__c_, @@ -45683,10 +45683,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(250), 4, sym_lhsList, sym_lhsArray, @@ -45740,9 +45740,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(1339), 2, sym_symbol__m, sym_symbol__c_, @@ -45750,10 +45750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(250), 4, sym_lhsList, sym_lhsArray, @@ -45807,9 +45807,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(1339), 2, sym_symbol__m, sym_symbol__c_, @@ -45817,10 +45817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(250), 4, sym_lhsList, sym_lhsArray, @@ -45872,9 +45872,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(1339), 2, sym_symbol__m, sym_symbol__c_, @@ -45882,10 +45882,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(250), 4, sym_lhsList, sym_lhsArray, @@ -45920,9 +45920,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lhsStr, STATE(547), 1, sym_LHS_ATOM, - ACTIONS(27), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(25), 2, + sym_number, + sym_string, STATE(225), 2, sym_NAME, sym_LHS_SUB, @@ -45930,10 +45930,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_, anon_sym_COMMA, sym__end_of_line, - ACTIONS(25), 3, - sym_number, - sym_string, + ACTIONS(27), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1249), 4, sym_symbol_s, sym_symbol_F, @@ -45996,9 +45996,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(1339), 2, sym_symbol__m, sym_symbol__c_, @@ -46006,10 +46006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(250), 4, sym_lhsList, sym_lhsArray, @@ -46044,9 +46044,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lhsStr, STATE(547), 1, sym_LHS_ATOM, - ACTIONS(27), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(25), 2, + sym_number, + sym_string, STATE(225), 2, sym_NAME, sym_LHS_SUB, @@ -46054,10 +46054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_, anon_sym_COMMA, sym__end_of_line, - ACTIONS(25), 3, - sym_number, - sym_string, + ACTIONS(27), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1249), 4, sym_symbol_s, sym_symbol_F, @@ -46112,13 +46112,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(27), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(25), 3, + ACTIONS(25), 2, sym_number, sym_string, + ACTIONS(27), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1249), 3, sym_symbol_F, sym_symbol__m, @@ -46178,9 +46178,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(1339), 2, sym_symbol__m, sym_symbol__c_, @@ -46188,10 +46188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(250), 4, sym_lhsList, sym_lhsArray, @@ -46241,9 +46241,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(1339), 2, sym_symbol__m, sym_symbol__c_, @@ -46251,10 +46251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(250), 4, sym_lhsList, sym_lhsArray, @@ -46298,13 +46298,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(27), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(25), 3, + ACTIONS(25), 2, sym_number, sym_string, + ACTIONS(27), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1249), 3, sym_symbol_F, sym_symbol__m, @@ -46364,9 +46364,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(1339), 2, sym_symbol__m, sym_symbol__c_, @@ -46374,10 +46374,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(250), 4, sym_lhsList, sym_lhsArray, @@ -46421,13 +46421,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(772), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(769), 3, + ACTIONS(769), 2, sym_number, sym_string, + ACTIONS(772), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1448), 3, sym_symbol_F, sym_symbol__m, @@ -46480,13 +46480,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(576), 3, + ACTIONS(576), 2, sym_number, sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1339), 3, sym_symbol_F, sym_symbol__m, @@ -46537,13 +46537,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(1475), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(1472), 3, + ACTIONS(1472), 2, sym_number, sym_string, + ACTIONS(1475), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1481), 3, sym_symbol_F, sym_symbol__m, @@ -46601,9 +46601,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(1339), 2, sym_symbol__m, sym_symbol__c_, @@ -46611,10 +46611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(250), 4, sym_lhsList, sym_lhsArray, @@ -46658,13 +46658,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(772), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(769), 3, + ACTIONS(769), 2, sym_number, sym_string, + ACTIONS(772), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1448), 3, sym_symbol_F, sym_symbol__m, @@ -46717,13 +46717,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(576), 3, + ACTIONS(576), 2, sym_number, sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1339), 3, sym_symbol_F, sym_symbol__m, @@ -46776,13 +46776,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(772), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(769), 3, + ACTIONS(769), 2, sym_number, sym_string, + ACTIONS(772), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1448), 3, sym_symbol_F, sym_symbol__m, @@ -46835,13 +46835,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(576), 3, + ACTIONS(576), 2, sym_number, sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1339), 3, sym_symbol_F, sym_symbol__m, @@ -46892,13 +46892,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(27), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(25), 3, + ACTIONS(25), 2, sym_number, sym_string, + ACTIONS(27), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1249), 3, sym_symbol_F, sym_symbol__m, @@ -46956,9 +46956,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(1339), 2, sym_symbol__m, sym_symbol__c_, @@ -46966,10 +46966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(250), 4, sym_lhsList, sym_lhsArray, @@ -47011,13 +47011,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(27), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(25), 3, + ACTIONS(25), 2, sym_number, sym_string, + ACTIONS(27), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1249), 3, sym_symbol_F, sym_symbol__m, @@ -47069,13 +47069,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(27), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(25), 3, + ACTIONS(25), 2, sym_number, sym_string, + ACTIONS(27), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1249), 3, sym_symbol_F, sym_symbol__m, @@ -47129,13 +47129,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(576), 3, + ACTIONS(576), 2, sym_number, sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1339), 3, sym_symbol_F, sym_symbol__m, @@ -47186,13 +47186,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(27), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(25), 3, + ACTIONS(25), 2, sym_number, sym_string, + ACTIONS(27), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1249), 3, sym_symbol_F, sym_symbol__m, @@ -47250,9 +47250,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(1339), 2, sym_symbol__m, sym_symbol__c_, @@ -47260,10 +47260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(250), 4, sym_lhsList, sym_lhsArray, @@ -47307,13 +47307,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(772), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(769), 3, + ACTIONS(769), 2, sym_number, sym_string, + ACTIONS(772), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1448), 3, sym_symbol_F, sym_symbol__m, @@ -47366,13 +47366,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(576), 3, + ACTIONS(576), 2, sym_number, sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1339), 3, sym_symbol_F, sym_symbol__m, @@ -47425,13 +47425,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(772), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(769), 3, + ACTIONS(769), 2, sym_number, sym_string, + ACTIONS(772), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1448), 3, sym_symbol_F, sym_symbol__m, @@ -47488,9 +47488,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, ACTIONS(1339), 2, sym_symbol__m, sym_symbol__c_, @@ -47498,10 +47498,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_9, anon_sym_11, anon_sym_20, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, STATE(250), 4, sym_lhsList, sym_lhsArray, @@ -47543,13 +47543,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(576), 3, + ACTIONS(576), 2, sym_number, sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1339), 3, sym_symbol_F, sym_symbol__m, @@ -47600,13 +47600,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(576), 3, + ACTIONS(576), 2, sym_number, sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1339), 3, sym_symbol_F, sym_symbol__m, @@ -47657,13 +47657,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(576), 3, + ACTIONS(576), 2, sym_number, sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1339), 3, sym_symbol_F, sym_symbol__m, @@ -47714,13 +47714,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(576), 3, + ACTIONS(576), 2, sym_number, sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1339), 3, sym_symbol_F, sym_symbol__m, @@ -47771,13 +47771,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(576), 3, + ACTIONS(576), 2, sym_number, sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1339), 3, sym_symbol_F, sym_symbol__m, @@ -47824,13 +47824,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(576), 3, + ACTIONS(576), 2, sym_number, sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1339), 3, sym_symbol_F, sym_symbol__m, @@ -47872,16 +47872,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(27), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(25), 2, + sym_number, + sym_string, STATE(225), 2, sym_NAME, sym_LHS_SUB, - ACTIONS(25), 3, - sym_number, - sym_string, + ACTIONS(27), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1249), 4, sym_symbol_s, sym_symbol_F, @@ -47924,16 +47924,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(27), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(25), 2, + sym_number, + sym_string, STATE(225), 2, sym_NAME, sym_LHS_SUB, - ACTIONS(25), 3, - sym_number, - sym_string, + ACTIONS(27), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1249), 4, sym_symbol_s, sym_symbol_F, @@ -47982,13 +47982,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, - ACTIONS(576), 3, + ACTIONS(576), 2, sym_number, sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1339), 3, sym_symbol_F, sym_symbol__m, @@ -48028,16 +48028,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(27), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(25), 2, + sym_number, + sym_string, STATE(225), 2, sym_NAME, sym_LHS_SUB, - ACTIONS(25), 3, - sym_number, - sym_string, + ACTIONS(27), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1249), 4, sym_symbol_s, sym_symbol_F, @@ -48078,16 +48078,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(27), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(25), 2, + sym_number, + sym_string, STATE(225), 2, sym_NAME, sym_LHS_SUB, - ACTIONS(25), 3, - sym_number, - sym_string, + ACTIONS(27), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1249), 4, sym_symbol_s, sym_symbol_F, @@ -48128,16 +48128,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(1550), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(1547), 2, + sym_number, + sym_string, STATE(225), 2, sym_NAME, sym_LHS_SUB, - ACTIONS(1547), 3, - sym_number, - sym_string, + ACTIONS(1550), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1553), 4, sym_symbol_s, sym_symbol_F, @@ -48178,16 +48178,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(27), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(25), 2, + sym_number, + sym_string, STATE(225), 2, sym_NAME, sym_LHS_SUB, - ACTIONS(25), 3, - sym_number, - sym_string, + ACTIONS(27), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1249), 4, sym_symbol_s, sym_symbol_F, @@ -48228,16 +48228,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(27), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(25), 2, + sym_number, + sym_string, STATE(225), 2, sym_NAME, sym_LHS_SUB, - ACTIONS(25), 3, - sym_number, - sym_string, + ACTIONS(27), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1249), 4, sym_symbol_s, sym_symbol_F, @@ -48276,16 +48276,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, STATE(240), 2, sym_NAME, sym_LHS_SUB, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1339), 4, sym_symbol_s, sym_symbol_F, @@ -48324,16 +48324,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, STATE(240), 2, sym_NAME, sym_LHS_SUB, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1339), 4, sym_symbol_s, sym_symbol_F, @@ -48372,16 +48372,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, STATE(240), 2, sym_NAME, sym_LHS_SUB, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1339), 4, sym_symbol_s, sym_symbol_F, @@ -48414,12 +48414,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_18, anon_sym_LBRACE, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, sym_system_s, anon_sym_20, - anon_sym_AT, sym_system__m, sym_specialname__m, anon_sym_57, @@ -48447,12 +48447,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_18, anon_sym_LBRACE, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, sym_system_s, anon_sym_20, - anon_sym_AT, sym_system__m, sym_specialname__m, anon_sym_57, @@ -48482,16 +48482,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(578), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(576), 2, + sym_number, + sym_string, STATE(240), 2, sym_NAME, sym_LHS_SUB, - ACTIONS(576), 3, - sym_number, - sym_string, + ACTIONS(578), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1339), 4, sym_symbol_s, sym_symbol_F, @@ -48526,16 +48526,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__end_of_line, - ACTIONS(27), 2, - aux_sym_character_token1, - aux_sym_character_token2, + ACTIONS(25), 2, + sym_number, + sym_string, STATE(225), 2, sym_NAME, sym_LHS_SUB, - ACTIONS(25), 3, - sym_number, - sym_string, + ACTIONS(27), 3, anon_sym_AT, + aux_sym_character_token1, + aux_sym_character_token2, ACTIONS(1249), 4, sym_symbol_s, sym_symbol_F, @@ -48575,11 +48575,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_19, anon_sym_COLON, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, anon_sym_20, - anon_sym_AT, sym_specialname__c_, sym_symbol_s, sym_symbol_F, @@ -48603,11 +48603,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_18, anon_sym_19, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, anon_sym_20, - anon_sym_AT, sym_symbol_s, sym_symbol_F, sym_symbol__m, @@ -48630,11 +48630,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_18, anon_sym_19, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, anon_sym_20, - anon_sym_AT, sym_symbol_s, sym_symbol_F, sym_symbol__m, @@ -48657,11 +48657,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_18, anon_sym_19, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, anon_sym_20, - anon_sym_AT, sym_symbol_s, sym_symbol_F, sym_symbol__m, @@ -48684,11 +48684,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_18, anon_sym_19, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, anon_sym_20, - anon_sym_AT, sym_symbol_s, sym_symbol_F, sym_symbol__m, @@ -48711,11 +48711,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_18, anon_sym_19, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, anon_sym_20, - anon_sym_AT, sym_symbol_s, sym_symbol_F, sym_symbol__m, @@ -48736,11 +48736,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_16, anon_sym_18, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, anon_sym_20, - anon_sym_AT, sym_symbol_s, sym_symbol_F, sym_symbol__m, @@ -48761,11 +48761,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_16, anon_sym_18, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, anon_sym_20, - anon_sym_AT, sym_symbol_s, sym_symbol_F, sym_symbol__m, @@ -48786,11 +48786,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_16, anon_sym_18, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, anon_sym_20, - anon_sym_AT, sym_symbol_s, sym_symbol_F, sym_symbol__m, @@ -48811,11 +48811,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_16, anon_sym_18, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, anon_sym_20, - anon_sym_AT, sym_symbol_s, sym_symbol_F, sym_symbol__m, @@ -48836,11 +48836,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_16, anon_sym_18, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, anon_sym_20, - anon_sym_AT, sym_symbol_s, sym_symbol_F, sym_symbol__m, @@ -48861,11 +48861,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_16, anon_sym_18, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, anon_sym_20, - anon_sym_AT, sym_symbol_s, sym_symbol_F, sym_symbol__m, @@ -48886,11 +48886,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_16, anon_sym_18, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, anon_sym_20, - anon_sym_AT, sym_symbol_s, sym_symbol_F, sym_symbol__m, @@ -48911,11 +48911,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_16, anon_sym_18, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, anon_sym_20, - anon_sym_AT, sym_symbol_s, sym_symbol_F, sym_symbol__m, @@ -48936,11 +48936,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_16, anon_sym_18, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, anon_sym_20, - anon_sym_AT, sym_symbol_s, sym_symbol_F, sym_symbol__m, @@ -48961,11 +48961,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_16, anon_sym_18, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, anon_sym_20, - anon_sym_AT, sym_symbol_s, sym_symbol_F, sym_symbol__m, @@ -48986,11 +48986,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_16, anon_sym_18, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, anon_sym_20, - anon_sym_AT, sym_symbol_s, sym_symbol_F, sym_symbol__m, @@ -49011,11 +49011,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_16, anon_sym_18, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, anon_sym_20, - anon_sym_AT, sym_symbol_s, sym_symbol_F, sym_symbol__m, @@ -49034,11 +49034,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_16, anon_sym_18, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, anon_sym_20, - anon_sym_AT, sym_symbol_s, sym_symbol_F, sym_symbol__m, @@ -49057,11 +49057,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_16, anon_sym_18, sym_number, + anon_sym_AT, aux_sym_character_token1, aux_sym_character_token2, sym_string, anon_sym_20, - anon_sym_AT, sym_symbol_s, sym_symbol_F, sym_symbol__m,